/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.7;
    color: #343A40;
    background-color: #fdedd8;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header Styles */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 24px;
    font-weight: 700;
    color: #f8a740;
}

.nav-brand i {
    font-size: 28px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-menu a {
    text-decoration: none;
    color: #707070;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: #f8a740;
}

.btn-appointment {
    background: #f8a740;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 24px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(222, 117, 63, 0.3);
}

.btn-appointment:hover {
    background: #de9334;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(222, 117, 63, 0.4);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #f8a740;
    border-radius: 2px;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #fdedd8 0%, #ecdfce 100%);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.hero-text h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 24px;
    color: #343A40;
}

.hero-text p {
    font-size: 18px;
    color: #707070;
    margin-bottom: 32px;
    line-height: 1.7;
}

.hero-features {
    display: flex;
    gap: 24px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    background: white;
    padding: 12px 20px;
    border-radius: 24px;
    box-shadow: 0 4px 16px rgba(222, 117, 63, 0.1);
}

.hero-feature i {
    color: #f8a740;
    font-size: 16px;
}

.hero-feature span {
    font-size: 14px;
    font-weight: 600;
    color: #343A40;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-primary {
    background: #f8a740;
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 24px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(222, 117, 63, 0.3);
}

.btn-primary:hover {
    background: #de9334;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(222, 117, 63, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #f8a740;
    border: 2px solid #f8a740;
    padding: 14px 32px;
    border-radius: 24px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #f8a740;
    color: white;
    transform: translateY(-2px);
}

.hero-image {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(222, 117, 63, 0.2);
}

.hero-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.hero-badge {
    position: absolute;
    top: 24px;
    right: 24px;
    background: white;
    padding: 16px 24px;
    border-radius: 24px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: #343A40;
}

.hero-badge i {
    color: #FFC107;
    font-size: 18px;
}

/* Section Styles */
.section-title {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.3;
    text-align: center;
    margin-bottom: 16px;
    color: #343A40;
}

.section-subtitle {
    font-size: 18px;
    color: #707070;
    text-align: center;
    margin-bottom: 64px;
}

/* About Section */
.about {
    padding: 96px 0;
    background: white;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.about-image img {
    width: 100%;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(222, 117, 63, 0.15);
}

.about-text h2 {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 16px;
    color: #343A40;
}

.about-text .subtitle {
    color: #f8a740;
    font-weight: 600;
    margin-bottom: 24px;
    font-size: 18px;
}

.about-text p {
    font-size: 17px;
    color: #707070;
    margin-bottom: 32px;
    line-height: 1.7;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.stat {
    text-align: center;
    background: #ecdfce;
    padding: 24px;
    border-radius: 16px;
}

.stat h3 {
    font-size: 32px;
    font-weight: 700;
    color: #f8a740;
    margin-bottom: 8px;
}

.stat p {
    color: #707070;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Services Section */
.services {
    padding: 96px 0;
    background: #fdedd8;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
}

.service-card {
    background: white;
    padding: 32px;
    border-radius: 24px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 64px;
    height: 64px;
    background: #ecdfce;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.service-icon i {
    font-size: 28px;
    color: #f8a740;
}

.service-card h3 {
    font-size: 22px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 16px;
    color: #343A40;
}

.service-card p {
    color: #707070;
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.service-features span {
    background: #ecdfce;
    color: #f8a740;
    padding: 6px 12px;
    border-radius: 16px;
    font-size: 12px;
    font-weight: 600;
}

/* Why Choose Us Section */
.why-choose {
    padding: 96px 0;
    background: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 32px;
}

.feature-card {
    text-align: center;
    padding: 40px 32px;
    background: #fdedd8;
    border-radius: 24px;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: #ecdfce;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.feature-icon i {
    font-size: 32px;
    color: #f8a740;
}

.feature-card h3 {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 16px;
    color: #343A40;
}

.feature-card p {
    color: #707070;
    line-height: 1.6;
}

/* Insurance Section */
.insurance {
    padding: 96px 0;
    background: #fdedd8;
}

.insurance-comparison {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.comparison-header,
.comparison-row,
.comparison-actions {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    align-items: center;
}

.comparison-header {
    background: #ecdfce;
    font-weight: 700;
    color: #343A40;
}

.comparison-row {
    border-bottom: 1px solid #F0F0F0;
    transition: background 0.3s ease;
}

.comparison-row:hover {
    background: #F9F9F9;
}

.comparison-header > div,
.comparison-row > div,
.comparison-actions > div {
    padding: 20px 24px;
}

.plan-option {
    text-align: center;
    font-weight: 600;
    color: #343A40;
}

.plan-option.featured {
    background: #ecdfce;
    color: #f8a740;
}

.plan-feature {
    font-weight: 600;
    color: #343A40;
}

.comparison-actions {
    background: #F9F9F9;
}

.plan-option i {
    color: #28A745;
    font-size: 16px;
}

.btn-plan {
    background: #f8a740;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 20px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.btn-plan:hover {
    background: #de9334;
    transform: translateY(-2px);
}

/* Contact Section */
.contact {
    padding: 96px 0;
    background: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
}

.contact-info h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #343A40;
}

.contact-subtitle {
    color: #707070;
    margin-bottom: 40px;
    line-height: 1.7;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 32px;
}

.contact-item i {
    font-size: 20px;
    color: #f8a740;
    margin-top: 4px;
    min-width: 20px;
}

.contact-item h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #343A40;
}

.contact-item p {
    color: #707070;
    line-height: 1.6;
}

.appointment-form h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 32px;
    color: #343A40;
}

.family-members {
    margin-bottom: 32px;
}

.family-members h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #343A40;
}

.member-form {
    background: #fdedd8;
    padding: 24px;
    border-radius: 16px;
    margin-bottom: 20px;
}

.member-form h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #f8a740;
}

.form-group {
    margin-bottom: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px;
    border: 2px solid #E9ECEF;
    border-radius: 20px;
    font-size: 16px;
    transition: border-color 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #f8a740;
}

.btn-submit {
    background: #f8a740;
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 24px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    box-shadow: 0 4px 16px rgba(222, 117, 63, 0.3);
}

.btn-submit:hover {
    background: #de9334;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(222, 117, 63, 0.4);
}

/* Testimonials Section */
.testimonials {
    padding: 96px 0;
    background: #fdedd8;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
}

.testimonial-card {
    background: white;
    padding: 32px;
    border-radius: 24px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.testimonial-content {
    margin-bottom: 24px;
}

.testimonial-content p {
    font-style: italic;
    color: #707070;
    line-height: 1.6;
    font-size: 16px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
    color: #343A40;
}

.author-info span {
    color: #707070;
    font-size: 14px;
}

.rating {
    margin-top: 8px;
}

.rating i {
    color: #FFC107;
    font-size: 14px;
}

/* Footer */
.footer {
    background: #343A40;
    color: white;
    padding: 64px 0 32px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 64px;
    margin-bottom: 32px;
}

.footer-brand p {
    margin: 16px 0 24px;
    color: #ADB5BD;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-links a {
    width: 48px;
    height: 48px;
    background: #495057;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #f8a740;
    transform: translateY(-2px);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.link-group h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
    color: white;
}

.link-group a {
    display: block;
    color: #ADB5BD;
    text-decoration: none;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.link-group a:hover {
    color: #f8a740;
}

.footer-bottom {
    border-top: 1px solid #495057;
    padding-top: 32px;
    text-align: center;
    color: #ADB5BD;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(52, 58, 64, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    background: white;
    margin: 5% auto;
    padding: 32px;
    border-radius: 24px;
    width: 90%;
    max-width: 600px;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.close {
    position: absolute;
    right: 24px;
    top: 24px;
    font-size: 28px;
    font-weight: bold;
    color: #707070;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close:hover {
    color: #343A40;
}

.modal-content h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #343A40;
}

.modal-body h3 {
    font-size: 18px;
    font-weight: 600;
    margin: 24px 0 12px;
    color: #343A40;
}

.modal-body p {
    color: #707070;
    line-height: 1.6;
    margin-bottom: 16px;
}

.newsletter-intro {
    color: #707070;
    margin-bottom: 24px;
    line-height: 1.6;
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 20px 0;
}

.checkbox-group input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin: 0;
}

.checkbox-group label {
    color: #707070;
    font-size: 14px;
    cursor: pointer;
    line-height: 1.5;
}

/* Confirmation Message */
.confirmation-message {
    display: none;
    position: fixed;
    z-index: 3000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(52, 58, 64, 0.8);
    backdrop-filter: blur(5px);
}

.confirmation-content {
    background: white;
    margin: 15% auto;
    padding: 48px;
    border-radius: 24px;
    text-align: center;
    max-width: 400px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.confirmation-content i {
    font-size: 48px;
    color: #f8a740;
    margin-bottom: 24px;
}

.confirmation-content h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #343A40;
}

.confirmation-content p {
    color: #707070;
    margin-bottom: 32px;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 20px;
    }
    
    .hero-content,
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .hero-text {
        order: -1;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .comparison-header,
    .comparison-row,
    .comparison-actions {
        grid-template-columns: 1fr;
        gap: 16px;
        text-align: center;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero h1 {
        font-size: 36px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .about h2,
    .contact-info h2,
    .appointment-form h2 {
        font-size: 28px;
    }
    
    .hero-features {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .services-grid,
    .features-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .modal-content {
        margin: 10% auto;
        padding: 24px;
    }
    
    .confirmation-content {
        margin: 20% auto;
        padding: 32px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero-content {
        gap: 32px;
    }
    
    .hero h1 {
        font-size: 28px;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .service-card,
    .feature-card,
    .testimonial-card {
        padding: 24px;
    }
    
    .modal-content {
        padding: 20px;
    }
}