* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-orange: #FF5200;
    --light-orange: rgba(255,82,0,0.08);
    --pale-orange: rgba(255,82,0,0.18);
    --primary-blue: #0638A1;
    --light-blue: rgba(6,56,161,0.08);
    --dark-gray: #2C3E50;
    --text-gray: #5A6C7D;
    --light-gray: #F8F9FA;
}

body {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    line-height: 1.5;
    color: var(--dark-gray);
    overflow-x: hidden;
}

/* Header */
header {
    background: #FFFFFF;
    padding: 0.75rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.header-content {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.logo-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    /* gap: 0.3rem; */
}

.logo {
    height: 80px;
    width: auto;
}

.brand-text {
    color: var(--primary-blue);
    font-size: 0.8rem;
    font-weight: 700;
    text-align: center;
    padding-top: 1.5rem;
    padding-left: 0.5rem;
}

.cta-header {
    background: var(--primary-orange);
    color: white;
    padding: 0.7rem 1.6rem;
    border: none;
    border-radius: 40px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.cta-header:hover {
    background: rgba(255,82,0,0.9);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255,82,0,0.3);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--light-orange) 0%, #FFF 100%);
    padding: 4.5rem 1.5rem;
    min-height: 78vh;
    display: flex;
    align-items: center;
}

.hero-content {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3.5rem;
    align-items: center;
}

.hero-text h1 {
    font-size: 2.3rem;
    color: var(--primary-blue);
    margin-bottom: 1.2rem;
    font-weight: 800;
    line-height: 1.2;
}

.hero-text h1 .highlight {
    color: var(--primary-orange);
}

.hero-text p {
    font-size: 1.05rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-cta {
    background: linear-gradient(135deg, var(--primary-orange) 0%, rgba(255,82,0,0.85) 100%);
    color: white;
    padding: 0.95rem 2.4rem;
    border: none;
    border-radius: 45px;
    font-weight: 700;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 18px rgba(255,82,0,0.28);
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

.hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255,82,0,0.4);
}

.cta-arrow {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.hero-cta:hover .cta-arrow {
    transform: translateX(5px);
}

.hero-image img {
    width: 100%;
    border-radius: 18px;
    box-shadow: 0 10px 35px rgba(0,0,0,0.12);
}

/* Stats Section */
.stats {
    background: var(--primary-blue);
    padding: 2rem 1.25rem;
    color: white;
}

.stats-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.8rem;
    text-align: center;
}

.stat-item h3 {
    font-size: 2.1rem;
    font-weight: 800;
    margin-bottom: 0.4rem;
}

.stat-item p {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Why Choose Us Section */
.why-choose {
    padding: 4rem 1.5rem;
    background: white;
}

.why-container {
    max-width: 900px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    margin-bottom: 2.5rem;
}

.section-title h2 {
    font-size: 2rem;
    color: var(--primary-blue);
    margin-bottom: 0.8rem;
    font-weight: 800;
}

.section-title p {
    font-size: 1rem;
    color: var(--text-gray);
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.6;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.why-card {
    background: var(--light-orange);
    padding: 1rem 2rem;
    border-radius: 18px;
    border-left: 4px solid var(--primary-orange);
    transition: all 0.3s ease;
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255,82,0,0.15);
}

.why-card-content {
    width: 100%;
}

.why-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.8rem;
}

.why-card-image {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
}

.why-card h3 {
    color: var(--primary-blue);
    font-size: 1rem;
    margin: 0;
    font-weight: 700;
    flex: 1;
}

.why-card p {
    color: var(--text-gray);
    line-height: 1.6;
    font-size: 0.85rem;
}

.why-footer {
    background: linear-gradient(135deg, var(--primary-blue) 0%, rgba(6,56,161,0.85) 100%);
    color: white;
    padding: 1rem 2rem;
    border-radius: 18px;
    text-align: center;
    font-size: 1.15rem;
    line-height: 1.7;
    font-weight: 500;
}

/* Comparison Section */
.comparison {
    padding: 1.5rem 1rem;
    background: var(--light-gray);
}

.comparison-container {
    max-width: 900px;
    margin: 0 auto;
}

/* Desktop Table View */
.comparison-table.desktop-view {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.comparison-table.desktop-view table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.comparison-table.desktop-view thead th {
    background: #F6F7F9;
    padding: 1rem 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--dark-gray);
}

.comparison-table.desktop-view thead th.traditional-heading {
    background: #ECEFF3;
}

.comparison-table.desktop-view thead th.morepen-heading {
    background: var(--primary-orange);
    color: white;
}

.comparison-table.desktop-view tbody th,
.comparison-table.desktop-view tfoot th {
    text-align: left;
    font-weight: 600;
    color: var(--dark-gray);
    padding: 0.9rem 1rem;
    width: 34%;
}

.comparison-table.desktop-view tbody td,
.comparison-table.desktop-view tfoot td {
    padding: 0.9rem 0.75rem;
    text-align: center;
    border-bottom: 1px solid #E4E7EB;
}

.comparison-table.desktop-view tbody tr {
    transition: background 0.2s ease;
}

.traditional-value {
    background: #F3F4F6;
    color: #4A5568;
}

.traditional-value .detail {
    display: block;
    margin-top: 0.25rem;
    font-size: 0.78rem;
    color: #6B7280;
    font-weight: 500;
}

.morepen-value {
    background: rgba(255,82,0,0.08);
    color: var(--primary-orange);
    font-weight: 600;
}

.morepen-value .detail {
    display: block;
    margin-top: 0.25rem;
    font-size: 0.78rem;
    color: rgba(255,82,0,0.75);
    font-weight: 500;
}

.comparison-table.desktop-view tfoot th,
.comparison-table.desktop-view tfoot td {
    border-bottom: none;
    font-weight: 700;
    font-size: 1rem;
}

.comparison-table.desktop-view tfoot .traditional-value {
    background: #E0E2E7;
}

.comparison-table.desktop-view tfoot .morepen-value {
    background: var(--primary-orange);
    color: white;
}

.comparison-table.desktop-view tfoot .morepen-value .detail {
    color: rgba(255,255,255,0.85);
}

/* Mobile Card View */
.comparison-cards.mobile-view {
    display: none;
}

.comparison-cards {
    display: flex;
    flex-direction: column;
    gap: 0;
    background: white;
    border-radius: 12px;
    overflow: hidden;
}

.comparison-card {
    padding: 0.9rem;
    border-bottom: 1px solid #E4E7EB;
}

.comparison-card:last-child {
    border-bottom: none;
}

.comparison-card.total-card {
    border-top: 2px solid var(--primary-orange);
    background: rgba(255,82,0,0.03);
}

.comparison-feature {
    color: var(--primary-blue);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.7rem;
    text-align: center;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--light-gray);
}

.comparison-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem;
}

.option {
    padding: 0.7rem;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
}

.option.traditional {
    background: #F3F4F6;
    border: 2px solid #E5E7EB;
}

.option.morepen {
    background: rgba(255,82,0,0.08);
    border: 2px solid rgba(255,82,0,0.2);
}

.option.morepen.highlight {
    background: var(--primary-orange);
    border: 2px solid var(--primary-orange);
    color: white;
}

.option-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.3rem;
    color: var(--text-gray);
}

.option.morepen.highlight .option-label {
    color: rgba(255,255,255,0.9);
}

.option-value {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
    color: var(--dark-gray);
}

.option.traditional .option-value {
    color: #4A5568;
}

.option.morepen .option-value {
    color: var(--primary-orange);
}

.option.morepen.highlight .option-value {
    color: white;
    font-size: 1.3rem;
}

.option-detail {
    font-size: 0.8rem;
    color: #6B7280;
    line-height: 1.4;
}

.option.morepen .option-detail {
    color: rgba(255,82,0,0.8);
}

.option.morepen.highlight .option-detail {
    color: rgba(255,255,255,0.9);
}

.option-detail.savings {
    font-weight: 700;
    font-size: 0.9rem;
    margin-top: 0.3rem;
    padding-top: 0.5rem;
    border-top: 1px solid rgba(255,255,255,0.3);
}

/* Responsive: Show/Hide Views */
@media (max-width: 768px) {
    .comparison {
        padding: 1.2rem 1rem;
    }

    .comparison .section-title {
        margin-bottom: 1rem;
    }

    .comparison-table.desktop-view {
        display: none;
    }

    .comparison-cards.mobile-view {
        display: flex;
    }

    .comparison-cards {
        gap: 0;
    }

    .comparison-card {
        padding: 0.7rem;
    }

    .comparison-feature {
        font-size: 0.95rem;
        margin-bottom: 0.4rem;
        padding-bottom: 0.3rem;
    }

    .comparison-options {
        gap: 0.5rem;
    }

    .option {
        padding: 0.6rem 0.4rem;
    }

    .option-value {
        font-size: 1rem;
    }

    .option.morepen.highlight .option-value {
        font-size: 1.2rem;
    }

    .option-detail {
        font-size: 0.75rem;
    }
}

@media (min-width: 769px) {
    .comparison-cards.mobile-view {
        display: none;
    }

    .comparison-table.desktop-view {
        display: block;
    }
}

/* Package Section */
.packages {
    padding: 2.75rem 1.25rem;
    background: white;
}

.packages-container {
    max-width: 900px;
    margin: 0 auto;
}

.packages .section-title {
    margin-bottom: 2rem;
}

.packages .section-title h2 {
    font-size: 1.7rem;
}

.packages .section-title p {
    font-size: 0.95rem;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
    /* width: 80%; */
}

.package-card {
    background: white;
    border: 2px solid var(--light-blue);
    border-radius: 22px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,61,165,0.2);
}

.package-card.featured {
    border-color: var(--primary-orange);
    box-shadow: 0 10px 28px rgba(255,82,0,0.18);
}

.package-badge {
    background: linear-gradient(90deg, var(--primary-orange) 0%, rgba(255,82,0,0.85) 100%);
    color: white;
    padding: 0.55rem 1.8rem;
    font-weight: 700;
    font-size: 0.85rem;
    text-align: center;
    letter-spacing: 0.4px;
}

.package-badge-nf {
    background: linear-gradient(90deg, var(--primary-blue) 0%, rgba(6,56,161,0.85) 100%);
    color: white;
    padding: 0.55rem 1.8rem;
    font-weight: 700;
    font-size: 0.85rem;
    text-align: center;
    letter-spacing: 0.4px;
}

.package-header {
    background: linear-gradient(90deg, var(--primary-blue) 0%, rgba(6,56,161,0.85) 100%);
    color: white;
    padding: 1rem 1.5rem;
    text-align: center;
}

.package-card.featured .package-header {
    background: linear-gradient(90deg, var(--primary-orange) 0%, rgba(255,82,0,0.85) 100%);
}

.package-title {
    font-size: 1.45rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.package-price {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: 0.4rem;
}

.package-price .currency {
    font-size: 1.55rem;
    /* margin-top: 0.45rem; */
}

.package-price .amount {
    font-size: 2.2rem;
    font-weight: 900;
    line-height: 1;
}

.package-original {
    text-decoration: line-through;
    opacity: 0.7;
    font-size: 1.1rem;
    margin-bottom: 0.4rem;
}

.package-monthly {
    font-size: 0.92rem;
    opacity: 0.9;
}

.package-body {
    padding: 1.8rem 1.5rem;
}

.package-features {
    list-style: none;
    margin-bottom: 1.8rem;
}

.package-features li {
    padding: 0.3rem 0;
    border-bottom: 1px solid #F0F0F0;
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
}

.package-features li:last-child {
    border-bottom: none;
}

.feature-icon {
    color: var(--primary-orange);
    font-weight: 800;
    font-size: 1.05rem;
    flex-shrink: 0;
}

.feature-text {
    flex: 1;
    color: var(--dark-gray);
    line-height: 1.5;
    font-size: 0.9rem;
}

.package-cta {
    width: 100%;
    padding: 1rem;
    background: var(--primary-blue);
    color: white;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.package-card.featured .package-cta {
    background: var(--primary-orange);
}

.package-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Trust Building Section */
.trust-building {
    padding: 4rem 1.5rem;
    background: linear-gradient(135deg, var(--light-blue) 0%, #FFF 100%);
}

.trust-container {
    max-width: 900px;
    margin: 0 auto;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2.5rem;
}

.trust-card {
    background: white;
    padding: 0.8rem 2rem;
    border-radius: 18px;
    text-align: center;
    box-shadow: 0 5px 18px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.trust-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0,61,165,0.15);
    border-color: var(--primary-blue);
}

.trust-icon {
    font-size: 2.6rem;
    margin-bottom: 1.1rem;
}

.trust-card h3 {
    color: var(--primary-blue);
    font-size: 1rem;
    margin-bottom: 0.7rem;
    font-weight: 700;
}

.trust-card p {
    color: var(--text-gray);
    line-height: 1.6;
    font-size: 0.85rem;
}

/* Meet Your Doctor Section */
.meet-doctor {
    padding: 4rem 1.5rem;
    background: linear-gradient(135deg, var(--light-orange) 0%, #FFF 100%);
}

.doctor-container {
    max-width: 1000px;
    margin: 0 auto;
}

.doctor-name-content {
    display: flex;
    flex-direction: row;
    gap: 2rem;
    align-items: center;
    /* justify-content: center; */
}

.doctor-card {
    background: white;
    border-radius: 22px;
    padding: 2.5rem;
    /* display: grid; */
    /* grid-template-columns: 180px 1fr; */
    /* gap: 2.5rem; */
    align-items: center;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    margin-top: 2.5rem;
    border: 3px solid var(--primary-orange);
}

.doctor-image {
    text-align: center;
}

.doctor-image img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--primary-orange);
    box-shadow: 0 8px 22px rgba(255,82,0,0.28);
}

.doctor-placeholder {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-orange) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4.6rem;
    color: white;
    border: 4px solid var(--primary-orange);
    box-shadow: 0 8px 22px rgba(255,82,0,0.28);
    margin: 0 auto;
}

.doctor-info {
    display: grid;
    gap: 1.5rem;
}

.doctor-info h3 {
    color: var(--primary-blue);
    font-size: 2rem;
    margin-bottom: 0.9rem;
    font-weight: 800;
}

.doctor-specialty {
    color: var(--primary-orange);
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
}

.doctor-experience {
    color: var(--text-gray);
    font-size: 1rem;
    margin-bottom: 1.6rem;
    font-weight: 500;
}

.doctor-description {
    color: var(--text-gray);
    line-height: 1.65;
    font-size: 0.98rem;
    /* margin-bottom: 1.3rem; */
}

.doctor-credentials {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    /* margin-top: 1.6rem; */
}

.credential-badge {
    background: var(--light-blue);
    color: var(--primary-blue);
    padding: 0.55rem 1.1rem;
    border-radius: 18px;
    font-weight: 600;
    font-size: 0.9rem;
    border: 2px solid var(--primary-blue);
}

/* Diabetes Education Section */
.diabetes-education {
    padding: 4rem 1.5rem;
    background: white;
}

.education-container {
    max-width: 1000px;
    margin: 0 auto;
}

.education-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    margin-top: 2.5rem;
}

.education-card-header {
    display: flex;
    flex-direction: row;
    gap: 1rem;
}

.education-card {
    background: linear-gradient(135deg, var(--light-orange) 0%, #FFF 100%);
    padding: 1.4rem;
    border-radius: 18px;
    border-left: 4px solid var(--primary-orange);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.education-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: var(--primary-orange);
    opacity: 0.05;
    border-radius: 50%;
    transform: translate(30%, -30%);
}

.education-card:hover {
    transform: translateX(5px);
    box-shadow: 0 10px 26px rgba(255,82,0,0.14);
}

.education-number {
    display: inline-block;
    background: var(--primary-orange);
    color: white;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    text-align: center;
    line-height: 36px;
    font-weight: 800;
    font-size: 0.95rem;
    margin-bottom: 1.2rem;
}

.education-card h3 {
    color: var(--primary-blue);
    font-size: 1.2rem;
    margin-bottom: 0.6rem;
    font-weight: 700;
}

.education-content {
    color: var(--text-gray);
    line-height: 1.4;
    font-size: 0.92rem;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    flex: 1;
}

.education-content ul {
    list-style: none;
    margin-top: 0.4rem;
    padding-left: 0;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.education-content ul li {
    padding: 0;
    padding-left: 1.4rem;
    position: relative;
}

.education-content ul li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary-orange);
    font-weight: 700;
}

.education-highlight {
    background: white;
    padding: 1rem;
    border-radius: 10px;
    margin-top: auto;
    border-left: 3px solid var(--primary-blue);
}

.education-highlight strong {
    color: var(--primary-blue);
}

/* CTA Section */
.cta-section {
    padding: 3.75rem 1.5rem;
    background: linear-gradient(135deg, var(--primary-blue) 0%, rgba(6,56,161,0.85) 100%);
    color: white;
    text-align: center;
}

.cta-content {
    max-width: 760px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.2rem;
    margin-bottom: 0.9rem;
    font-weight: 800;
}

.cta-content p {
    font-size: 1.05rem;
    margin-bottom: 1.6rem;
    opacity: 0.9;
}

.cta-button {
    background: var(--primary-orange);
    color: white;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 45px;
    font-weight: 700;
    cursor: pointer;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 18px rgba(255,82,0,0.28);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255,82,0,0.35);
}

/* Footer */
footer {
    background: #FFFFFF;
    color: var(--dark-gray);
    padding: 2.5rem 1.5rem 1rem;
}

.footer-content {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 1.8rem;
}

.footer-section h3 {
    color: var(--primary-blue);
    margin-bottom: 0.8rem;
    font-weight: 700;
    font-size: 1rem;
}

.footer-section p,
.footer-section a {
    color: rgba(44,62,80,0.75);
    text-decoration: none;
    display: block;
    margin-bottom: 0.45rem;
    font-size: 0.9rem;
}

.footer-section a:hover {
    color: var(--primary-orange);
}

.footer-bottom {
    text-align: center;
    padding-top: 1.6rem;
    border-top: 1px solid rgba(6,56,161,0.08);
    color: rgba(44,62,80,0.6);
    font-size: 0.85rem;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.75);
    z-index: 2000;
    justify-content: center;
    align-items: center;
    padding: 1rem;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: white;
    padding: 2.4rem;
    border-radius: 18px;
    max-width: 560px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-close {
    position: absolute;
    top: 0.8rem;
    right: 0.8rem;
    font-size: 1.6rem;
    cursor: pointer;
    color: var(--text-gray);
    background: none;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: var(--light-gray);
    color: var(--primary-blue);
}

.quiz-header {
    text-align: center;
    margin-bottom: 1.6rem;
}

.quiz-header h2 {
    color: var(--primary-blue);
    font-size: 1.75rem;
    margin-bottom: 0.4rem;
    font-weight: 800;
}

.quiz-header p {
    color: var(--text-gray);
}

.quiz-question {
    display: none;
    margin-bottom: 1.6rem;
}

.quiz-question.active {
    display: block;
}

.question-label {
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.8rem;
    display: block;
}

.question-number {
    color: var(--primary-orange);
    font-weight: 700;
}

.quiz-input {
    width: 100%;
    padding: 0.85rem;
    border: 2px solid #E0E0E0;
    border-radius: 10px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.quiz-input:focus {
    outline: none;
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 3px rgba(255,82,0,0.1);
}

.quiz-options {
    display: grid;
    gap: 0.85rem;
}

.quiz-option {
    padding: 0.85rem 1.3rem;
    border: 2px solid #E0E0E0;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: white;
    font-size: 0.95rem;
    text-align: left;
    font-weight: 500;
}

.quiz-option:hover {
    border-color: var(--primary-orange);
    background: var(--light-orange);
}

.quiz-option.selected {
    border-color: var(--primary-orange);
    background: var(--light-orange);
    font-weight: 600;
}

.quiz-navigation {
    display: flex;
    gap: 0.85rem;
    margin-top: 1.6rem;
}

.quiz-btn {
    padding: 0.9rem;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.quiz-btn-back {
    flex: 0 0 25%;
    background: var(--light-gray);
    color: var(--dark-gray);
}

.quiz-btn-next {
    flex: 0 0 75%;
    background: var(--primary-orange);
    color: white;
    margin-left: auto;
}

.quiz-btn-next:hover {
    background: rgba(255,82,0,0.9);
    transform: translateY(-2px);
}


.quiz-btn-back:hover {
    background: #E0E0E0;
}

.quiz-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.progress-bar {
    width: 100%;
    height: 5px;
    background: var(--light-gray);
    border-radius: 10px;
    margin-bottom: 1.6rem;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-orange) 0%, var(--primary-blue) 100%);
    transition: width 0.3s ease;
}

.result-message {
    display: none;
    text-align: center;
    padding: 1.6rem;
    border-radius: 13px;
    margin-bottom: 1.6rem;
}

.result-message.active {
    display: block;
}

.result-message.success {
    background: var(--light-blue);
    color: var(--primary-blue);
}

.result-message.error {
    background: #FFEBEE;
    color: #C62828;
}

.result-message h3 {
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
}

.lead-form {
    display: none;
}

.lead-form.active {
    display: block;
}

.form-group {
    margin-bottom: 1.3rem;
}

.form-group label {
    display: block;
    color: var(--primary-blue);
    font-weight: 600;
    margin-bottom: 0.45rem;
    font-size: 0.95rem;
}

.form-group input {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid #E0E0E0;
    border-radius: 10px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 3px rgba(255,82,0,0.1);
}

.submit-btn {
    width: 100%;
    padding: 1rem;
    background: var(--primary-orange);
    color: white;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: rgba(255,82,0,0.9);
    transform: translateY(-2px);
}

/* Mobile Responsive */
@media (max-width: 968px) {
    .hero {
        min-height: auto;
        padding: 4rem 2rem;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .stats-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .comparison-header,
    .comparison-row,
    .comparison-footer {
        grid-template-columns: 1fr;
    }

    .header-item.empty,
    .footer-item.empty {
        display: none;
    }

    .packages-grid {
        grid-template-columns: 1fr;
    }

    .trust-grid {
        grid-template-columns: 1fr;
    }

    .education-grid {
        grid-template-columns: 1fr;
    }

    .doctor-card {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem;
    }

    .doctor-placeholder,
    .doctor-image img {
        width: 200px;
        height: 200px;
    }

    .doctor-info h3 {
        font-size: 1.8rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .modal-content {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 1.6rem;
    }

    .stats {
        padding: 1.5rem 0;
    }

    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        padding: 0 1.2rem;
    }

    .stat-item {
        background: rgba(6,56,161,0.08);
        border-radius: 14px;
        padding: 0.2rem 1rem;
    }

    .stat-item h3 {
        font-size: 1.5rem;
    }

    .stat-item p {
        font-size: 0.75rem;
    }
}

/* MOBILE RESPONSIVE STYLES */
@media (max-width: 768px) {
    /* Header Mobile */
    .header-content {
        padding: 0 1rem;
    }

    .logo {
        height: 55px;
    }

    .brand-text {
        font-size: 1rem;
    }

    .cta-header {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }

    /* Hero Mobile */
    .hero {
        padding: 3rem 1rem;
        min-height: auto;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-text h1 {
        font-size: 1.8rem;
    }

    .hero-text p {
        font-size: 1rem;
    }

    .hero-cta {
        padding: 1rem 2rem;
        font-size: 1rem;
        width: 100%;
        justify-content: center;
    }

    .hero-image {
        order: -1;
    }

    /* Stats Mobile */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .stat-box h3 {
        font-size: 2rem;
    }

    /* Why Choose Mobile */
    .why-choose {
        padding: 3rem 1rem;
    }

    .why-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .why-card {
        padding: 1.5rem;
    }

    .why-card-header {
        gap: 0.8rem;
    }

    .why-card-image {
        width: 45px;
        height: 45px;
    }

    .why-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .why-card h3 {
        font-size: 1.2rem;
    }

    .why-footer {
        font-size: 1.1rem;
        padding: 2rem 1.5rem;
    }

    /* Packages Mobile */
    .packages {
        padding: 3rem 1rem;
    }

    .packages-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .package-card {
        margin-bottom: 1rem;
    }

    .package-header {
        padding: 2rem 1.5rem;
    }

    .package-title {
        font-size: 1.5rem;
    }

    .package-price .amount {
        font-size: 2.8rem;
    }

    .package-body {
        padding: 2rem 1.5rem;
    }

    /* Trust Building Mobile */
    .trust-building {
        padding: 3rem 1rem;
    }

    .trust-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .trust-card {
        padding: 2rem 1.5rem;
    }

    .trust-icon {
        font-size: 2.5rem;
    }

    /* Meet Doctor Mobile */
    .meet-doctor {
        padding: 3rem 1rem;
    }

    .doctor-card {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem 1.5rem;
    }

    .doctor-image img,
    .doctor-placeholder {
        width: 100px;
        height: 100px;
    }

    .doctor-placeholder {
        font-size: 4rem;
    }

    .doctor-info h2 {
        font-size: 1.8rem;
    }

    .doctor-info h3 {
        font-size: 1.2rem;
    }

    .credentials {
        font-size: 0.95rem;
    }

    .doctor-bio {
        font-size: 1rem;
    }

    /* How It Works Mobile */
    .how-it-works {
        padding: 3rem 1rem;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .step h3 {
        font-size: 1.2rem;
    }

    .step p {
        font-size: 0.95rem;
    }

    /* Testimonials Mobile */
    .testimonials {
        padding: 3rem 1rem;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .testimonial-card {
        padding: 1.5rem;
    }

    /* FAQ Mobile */
    .faq {
        padding: 3rem 1rem;
    }

    .faq-item {
        padding: 1.5rem;
    }

    .faq-question {
        font-size: 1rem;
    }

    /* Final CTA Mobile */
    .final-cta {
        padding: 3rem 1rem;
    }

    .final-cta h2 {
        font-size: 1.8rem;
    }

    .final-cta p {
        font-size: 1rem;
    }

    .final-cta-btn {
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    /* Footer Mobile */
    footer {
        padding: 2rem 1rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-column h4 {
        font-size: 1.1rem;
    }

    /* Quiz Modal Mobile */
    .quiz-container {
        padding: 2rem 1.5rem;
        max-height: 95vh;
        margin: 1rem;
    }

    .quiz-header h2 {
        font-size: 1.5rem;
    }

    .quiz-options {
        grid-template-columns: 1fr;
    }

    .quiz-navigation {
        flex-direction: row;
    }

    .quiz-btn {
        width: auto;
    }

    /* Section Titles Mobile */
    .section-title h2 {
        font-size: 1.6rem;
    }

    .section-title p {
        font-size: 1rem;
    }
}

/* Extra Small Mobile (max-width: 480px) */
@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 1.5rem;
    }

    .section-title h2 {
        font-size: 1.4rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    /* Comparison Cards - Extra Small */
    .comparison {
        padding: 1rem 0.8rem;
    }

    .comparison-card {
        padding: 0.6rem;
    }

    .comparison-cards {
        gap: 0;
    }

    .comparison-feature {
        font-size: 0.9rem;
        margin-bottom: 0.3rem;
        padding-bottom: 0.2rem;
    }

    .comparison-options {
        gap: 0.4rem;
    }

    .option {
        padding: 0.3rem 0.3rem;
    }

    .option-label {
        font-size: 0.7rem;
    }

    .option-value {
        font-size: 0.95rem;
    }

    .option.morepen.highlight .option-value {
        font-size: 1.1rem;
    }

    .option-detail {
        font-size: 0.7rem;
    }

    .option-detail.savings {
        font-size: 0.8rem;
    }

    .package-price .amount {
        font-size: 2.5rem;
    }

    .final-cta h2 {
        font-size: 1.5rem;
    }
}

