﻿:root {
    --navy: #123248;
    --navy-dark: #0b2434;
    --ink: #243b4a;
    --muted: #667987;
    --teal: #00afd7;
    --teal-dark: #0089ad;
    --green: #66c77b;
    --green-dark: #3fa85b;
    --gold: #ffc247;
    --soft-blue: #f1fbfd;
    --soft-green: #f3fbf5;
    --line: #dceef2;
    --shadow: 0 24px 58px rgba(18, 50, 72, .12);
    --shadow-soft: 0 12px 30px rgba(18, 50, 72, .07);
    --radius: 26px;
    --blue: #00b4dc;
    --header-height: 96px;
}

@font-face {
    font-family: "bootstrap-icons";
    src: url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.10.5/font/fonts/bootstrap-icons.woff2") format("woff2"), url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.10.5/font/fonts/bootstrap-icons.woff") format("woff");
    font-display: swap;
}

* {
    box-sizing: border-box;
}

section {
    scroll-margin-top: var(--header-height);
}


html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Poppins, Arial, sans-serif;
    color: var(--ink);
    background: #fff;
    overflow-x: hidden;
}

a {
    color: var(--teal-dark);
    text-decoration: none;
}

    a:hover {
        color: var(--green-dark);
    }

img {
    max-width: 100%;
    height: auto;
}

.section-pad {
    padding: 76px 0;
}

.section-title {
    color: var(--navy);
    font-weight: 600;
    letter-spacing: -.035em;
    line-height: 1.08;
    margin-bottom: 16px;
}

.section-sub {
    color: var(--muted);
    line-height: 1.75;
    font-size: 1.04rem;
    max-width: 760px;
}

.max-w-760 {
    max-width: 760px;
}

.text-navy {
    color: var(--navy);
}

.fw-600 {
    font-weight: 600;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 15px;
    border-radius: 999px;
    background: rgba(0, 175, 215, .1);
    border: 1px solid rgba(0, 175, 215, .16);
    color: var(--teal-dark);
    text-transform: uppercase;
    letter-spacing: .09em;
    font-size: .78rem;
    font-weight: 600;
    margin-bottom: 14px;
}

.btn-fresh,
.btn-fresh-dark,
.btn-fresh-outline {
    min-height: 54px;
    border-radius: 999px;
    padding: 14px 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border: 2px solid transparent;
    font-weight: 600;
    line-height: 1.1;
    transition: all .18s ease;
    white-space: nowrap;
}

.btn-fresh {
    background: linear-gradient(135deg, var(--teal), var(--green));
    color: #fff;
    box-shadow: 0 16px 34px rgba(0, 175, 215, .25);
}

    .btn-fresh:hover {
        color: #fff;
        transform: translateY(-2px);
        box-shadow: 0 20px 42px rgba(0, 175, 215, .32);
    }

.btn-fresh-dark {
    background: var(--navy);
    color: #fff;
    box-shadow: 0 14px 30px rgba(18, 50, 72, .16);
}

    .btn-fresh-dark:hover {
        background: var(--navy-dark);
        color: #fff;
        transform: translateY(-2px);
    }

.btn-fresh-outline {
    background: #fff;
    color: var(--navy);
    border-color: rgba(0, 175, 215, .28);
}

    .btn-fresh-outline:hover {
        color: var(--teal-dark);
        border-color: var(--teal);
        box-shadow: var(--shadow-soft);
        transform: translateY(-2px);
    }

/* Header */
.top-bar {
    background: linear-gradient(135deg, var(--navy), var(--navy-dark));
    color: rgba(255,255,255,.82);
    font-size: .9rem;
    border-bottom: 1px solid rgba(255,255,255,.08);
}

    .top-bar .container {
        min-height: 40px;
    }

    .top-bar a, .top-bar strong {
        color: #fff;
    }

.main-header {
    position: sticky;
    top: 0;
    z-index: 1020;
    background: rgba(255,255,255,.99);
    border-bottom: 1px solid rgba(18,50,72,.08);
    box-shadow: 0 8px 24px rgba(18,50,72,.06);
}

.header-grid {
    min-height: 96px;
    display: grid;
    grid-template-columns: 250px 1fr auto;
    gap: 20px;
    align-items: center;
}

.brand-logo img {
    width: 225px;
    display: block;
}

.doctor-header {
    text-align: right;
    justify-self: end;
}

    .doctor-header h2 {
        margin: 0;
        color: var(--navy);
        font-size: clamp(1.35rem, 2vw, 2rem);
        line-height: 1.05;
        font-weight: 600;
        letter-spacing: -.025em;
        text-transform: uppercase;
    }

        .doctor-header h2 span {
            color: var(--muted);
            font-size: .72em;
        }

    .doctor-header p {
        margin: 8px 0 0;
        color: var(--muted);
        line-height: 1.35;
        font-size: .9rem;
        font-weight: 500;
    }

.header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.header-divider {
    width: 3px;
    height: 72px;
    border-radius: 999px;
    background: linear-gradient(180deg, var(--teal), var(--green));
    margin-right: 6px;
}

.header-call-scroll {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: var(--green-dark);
    border: 2px solid rgba(0,175,215,.28);
    flex: 0 0 52px;
}

.main-header.is-scrolled .header-call-scroll {
    display: inline-flex;
}

.header-call-block {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: var(--green-dark);
    border: 2px solid rgba(0,175,215,.28);
    flex: 0 0 52px;
}

.main-header.is-scrolled .header-call-block {
    display: inline-flex;
}

.header-cta {
    min-width: 190px;
}

/* Hero */
.hero-conversion {
    position: relative;
    overflow: hidden;
    min-height: calc(100vh - 136px);
    display: flex;
    align-items: center;
    padding: 46px 0 48px;
    background: radial-gradient(circle at 12% 18%, rgba(102,199,123,.2), transparent 28%), radial-gradient(circle at 86% 14%, rgba(0,175,215,.18), transparent 32%), linear-gradient(135deg, #f7fdff 0%, #fff 44%, #f1fbf4 100%);
}

    .hero-conversion::after {
        content: "";
        position: absolute;
        width: 520px;
        height: 520px;
        border-radius: 50%;
        background: rgba(0,175,215,.09);
        right: -180px;
        bottom: -180px;
        pointer-events: none;
    }

.hero-copy {
    position: relative;
    z-index: 3;
}

.hero-heading {
    color: var(--navy);
    font-size: clamp(2.25rem, 5vw, 4.55rem);
    line-height: 1;
    font-weight: 600;
    letter-spacing: -.052em;
    margin-bottom: 20px;
}

.hero-subtitle {
    color: var(--muted);
    font-size: clamp(1.02rem, 1.5vw, 1.18rem);
    line-height: 1.72;
    max-width: 650px;
    margin-bottom: 18px;
}

.hero-review-row {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 18px 0 24px;
    color: var(--navy);
    font-weight: 600;
}

.stars {
    color: var(--gold);
    letter-spacing: 1px;
    white-space: nowrap;
}

.hero-note {
    margin-top: 24px;
    color: var(--muted);
    font-size: .86rem;
    font-weight: 600;
}

    .hero-note i {
        color: var(--green-dark);
    }

.hero-visual {
    position: relative;
    min-height: 520px;
    z-index: 2;
}

.model-photo-placeholder {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    margin-top: -50px;
    min-height: 500px;
    border-radius: 34px;
    overflow: hidden;
    border: 1px solid rgba(0,175,215,.14);
    box-shadow: var(--shadow);
    background: radial-gradient(circle at 18% 14%, rgba(102,199,123,.18), transparent 30%), radial-gradient(circle at 82% 12%, rgba(0,175,215,.16), transparent 32%), linear-gradient(135deg, #f7fdff, #effbf4);
}

.hero-photo-slider,
.hero-photo-slider .carousel-inner,
.hero-photo-slider .carousel-item,
.hero-photo-slide {
    min-height: 500px;
    height: 100%;
}

.hero-photo-slide {
    display: flex;
    align-items: flex-end;
    justify-content: center;
/*    padding: 26px 26px 0;*/
}

.hero-family-photo {
    width: min(100%, 560px);
    max-height: 500px;
    object-fit: contain;
    object-position: bottom center;
    display: block;
    filter: drop-shadow(0 24px 38px rgba(18,50,72,.18));
}

.hero-photo-indicators {
    bottom: 18px;
    gap: 8px;
    margin-bottom: 0;
}

    .hero-photo-indicators [data-bs-target] {
        width: 9px;
        height: 9px;
        border-radius: 999px;
        border: 0;
        opacity: 1;
        background: rgba(18,50,72,.2);
    }

    .hero-photo-indicators .active {
        width: 28px;
        background: linear-gradient(135deg, var(--teal), var(--green));
    }

/*.hero-photo-slider.doctor-slide-active .hero-photo-indicators {
    display: none;
}*/
#generalDentistHeroCarousel .hero-photo-indicators:has(button.active[data-bs-slide-to="0"]) {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
.hero-doctor-badge {
    position: absolute;
    left: 22px;
    right: 22px;
    bottom: 22px;
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 20px;
    background: rgba(255,255,255,.94);
    border: 1px solid rgba(0,175,215,.16);
    box-shadow: 0 18px 40px rgba(18,50,72,.14);
    backdrop-filter: blur(10px);
    text-align: left;
}

    .hero-doctor-badge i {
        width: 40px;
        height: 40px;
        border-radius: 14px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background: linear-gradient(135deg, rgba(0,175,215,.14), rgba(102,199,123,.16));
        color: var(--green-dark);
        flex: 0 0 auto;
    }

    .hero-doctor-badge strong {
        display: block;
        color: var(--navy);
        font-size: .88rem;
        line-height: 1.3;
    }

    .hero-doctor-badge span {
        display: block;
        color: var(--muted);
        font-size: .72rem;
        font-weight: 600;
        margin-top: 2px;
    }

/* Forms */
.form-card {
    background: #fff;
    border: 1px solid rgba(0,175,215,.16);
    border-radius: 28px;
    box-shadow: 0 28px 76px rgba(18,50,72,.13);
    overflow: hidden;
}

.form-head {
    background: linear-gradient(135deg, var(--navy), var(--navy-dark));
    color: #fff;
    padding: 20px 24px;
}

    .form-head h3 {
        margin: 0;
        font-weight: 600;
        letter-spacing: -.02em;
    }

    .form-head p {
        margin: 4px 0 0;
        opacity: .88;
    }

.form-body {
    padding: 22px;
}

.form-label {
    color: var(--navy);
    font-weight: 600;
    font-size: .84rem;
    margin-bottom: 7px;
}

.form-text {
    font-size: .68rem;
    color: rgba(102,121,135,.82);
    line-height: 1.35;
}

.form-control {
    min-height: 50px;
    border-radius: 14px;
    border: 1.5px solid #d7e9ee;
    font-weight: 600;
    color: var(--ink);
    box-shadow: none !important;
}

    .form-control:focus {
        border-color: var(--teal);
        box-shadow: 0 0 0 .18rem rgba(0,175,215,.12) !important;
    }

textarea.form-control {
    min-height: 92px;
    padding-top: 14px;
}

.secure-note {
    color: var(--muted);
    font-size: .78rem;
    line-height: 1.45;
}

.form-qualifier-blockquote {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 0 0 18px;
    padding: 14px 16px;
    border-radius: 14px;
    background: #fff7e8;
    border: 1.5px solid #f2b13f;
    border-left: 5px solid #f2b13f;
    color: var(--navy);
    font-size: .78rem;
    font-weight: 600;
    line-height: 1.45;
}

    .form-qualifier-blockquote i {
        color: #c98600;
        margin-top: 2px;
        flex: 0 0 auto;
    }

.form-proof-clean {
    border-top: 1px solid var(--line);
    background: radial-gradient(circle at 12% 0%, rgba(102,199,123,.11), transparent 30%), linear-gradient(180deg, #fff, #fbfeff);
    padding: 16px 18px 18px;
}

.form-proof-review {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 16px;
    background: rgba(255,194,71,.12);
    border: 1px solid rgba(255,194,71,.28);
    color: var(--navy);
    font-size: .78rem;
    font-weight: 600;
    line-height: 1.35;
    text-align: center;
    margin-bottom: 10px;
}

.form-proof-stars {
    color: var(--gold);
    letter-spacing: 1px;
    white-space: nowrap;
    font-size: .86rem;
}

.form-proof-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
}

.form-proof-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 10px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid rgba(0,175,215,.13);
    color: var(--navy);
    font-size: .7rem;
    font-weight: 600;
    line-height: 1.2;
    box-shadow: 0 6px 14px rgba(18,50,72,.04);
}

    .form-proof-tag i {
        color: var(--green-dark);
        font-size: .78rem;
    }

/* Cards and Sections */
#concerns {
    background: #dff6fe;
}

.concerns-form-column {
    position: relative;
    min-height: 760px;
}

.concerns-form-wrap {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 8;
    margin-top: -190px;
}

.concerns-section-title {
    text-align: left;
    margin-bottom: 30px;
}

.concern-card,
.benefit-card,
.service-card,
.process-card,
.review-card {
    background: #fff;
    border: 1px solid rgba(0,175,215,.14);
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
    height: 100%;
    transition: all .18s ease;
}

    .concern-card:hover,
    .benefit-card:hover,
    .service-card:hover,
    .process-card:hover,
    .review-card:hover {
        transform: translateY(-3px);
        box-shadow: var(--shadow);
        border-color: rgba(0,175,215,.28);
    }

.concern-card,
.benefit-card,
.service-card,
.review-card {
    padding: 24px;
}

    .card-icon,
    .concern-card i {
        width: 52px;
        height: 52px;
        border-radius: 18px;
        background: linear-gradient(135deg, rgba(0,175,215,.14), rgba(102,199,123,.16));
        color: var(--teal-dark);
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 1.35rem;
        margin-bottom: 16px;
    }

    .concern-card h3,
    .benefit-card h3,
    .service-card h3,
    .process-card h3 {
        color: var(--navy);
        font-weight: 600;
        margin-bottom: 10px;
        letter-spacing: -.015em;
    }

    .concern-card p,
    .benefit-card p,
    .service-card p,
    .process-card p {
        color: var(--muted);
        line-height: 1.65;
        font-weight: 500;
        margin: 0;
    }

.benefits-section {
    background: radial-gradient(circle at 12% 20%, rgba(102,199,123,.14), transparent 26%), radial-gradient(circle at 88% 12%, rgba(0,175,215,.13), transparent 30%), linear-gradient(180deg, #fff 0%, #f8fdff 100%);
}

.benefits-cta {
    background: linear-gradient(135deg, var(--navy), #0f5269);
    color: #fff;
    border-radius: 26px;
    padding: clamp(24px, 4vw, 34px);
    margin-top: 34px;
}

    .benefits-cta h3 {
        color: #fff;
        font-weight: 600;
        margin-bottom: 8px;
    }

    .benefits-cta p {
        color: rgba(255,255,255,.78);
        line-height: 1.65;
        margin: 0;
    }

.services-section {
    background: radial-gradient(circle at 12% 18%, rgba(0,175,215,.1), transparent 28%), radial-gradient(circle at 88% 14%, rgba(102,199,123,.1), transparent 30%), linear-gradient(180deg, #fff 0%, var(--soft-blue) 100%);
}

.services-showcase {
    overflow: hidden;
    border-radius: 34px;
    background: #fff;
    border: 1px solid rgba(0,175,215,.14);
    box-shadow: var(--shadow);
}

.services-intro {
    height: 100%;
    padding: clamp(30px, 5vw, 48px);
    background: radial-gradient(circle at 16% 16%, rgba(102,199,123,.24), transparent 30%), radial-gradient(circle at 88% 12%, rgba(0,175,215,.22), transparent 34%), linear-gradient(135deg, var(--navy), #164b61 68%, var(--navy-dark));
    color: #fff;
}

    .services-intro .eyebrow {
        color: #82e2c3;
        background: rgba(255,255,255,.09);
        border-color: rgba(255,255,255,.14);
    }

    .services-intro h2 {
        color: #fff;
    }

    .services-intro p {
        color: rgba(255,255,255,.72);
        line-height: 1.7;
        font-weight: 500;
        margin-bottom: 24px;
    }

.services-intro-panel {
    margin-top: 28px;
    padding: 22px;
    border-radius: 24px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.14);
    box-shadow: 0 18px 44px rgba(5,20,31,.16);
}

    .services-intro-panel h3 {
        color: #fff;
        font-size: 1.05rem;
        font-weight: 600;
        margin-bottom: 14px;
        letter-spacing: -.01em;
    }

.services-intro-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 12px;
}

    .services-intro-list li {
        display: flex;
        align-items: flex-start;
        gap: 10px;
        color: rgba(255,255,255,.78);
        font-size: .9rem;
        line-height: 1.5;
        font-weight: 500;
    }

    .services-intro-list i {
        color: #82e2c3;
        margin-top: 2px;
        flex: 0 0 auto;
    }

.services-intro-callout {
    margin-top: 20px;
    padding: 16px;
    border-radius: 18px;
    background: rgba(255,255,255,.92);
    color: var(--navy);
    font-weight: 600;
    line-height: 1.45;
}

    .services-intro-callout span {
        display: block;
        color: var(--muted);
        font-size: .8rem;
        font-weight: 600;
        margin-top: 4px;
    }

.services-grid {
    padding: clamp(24px, 4vw, 38px);
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.service-card {
    position: relative;
    overflow: hidden;
    min-height: 210px;
}

    .service-card::after {
        content: "";
        position: absolute;
        right: -34px;
        top: -40px;
        width: 104px;
        height: 104px;
        border-radius: 50%;
        background: rgba(0,175,215,.07);
        pointer-events: none;
    }

.service-badge {
    display: inline-flex;
    margin-top: 16px;
    padding: 7px 10px;
    border-radius: 999px;
    background: var(--soft-blue);
    color: var(--teal-dark);
    font-size: .7rem;
    font-weight: 600;
}

.service-cta {
    margin: 0 clamp(24px, 4vw, 38px) clamp(24px, 4vw, 38px);
    padding: 22px;
    border-radius: 24px;
    background: linear-gradient(135deg, #f7fdff, #f3fbf5);
    border: 1px solid rgba(0,175,215,.14);
    text-align: center;
}

.inline-cta-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.process-section {
    background: radial-gradient(circle at 14% 18%, rgba(102,199,123,.1), transparent 28%), radial-gradient(circle at 86% 18%, rgba(0,175,215,.08), transparent 30%), linear-gradient(180deg, #fff 0%, #f7fdf9 100%);
}

.process-intro {
    position: sticky;
    top: 140px;
}

.process-card {
    padding: 30px;
    min-height: 250px;
}

.process-number {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(0,175,215,.14), rgba(102,199,123,.16));
    color: var(--teal-dark);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    font-weight: 600;
    margin-bottom: 22px;
}

.doctor-section {
    background: radial-gradient(circle at 12% 16%, rgba(0,175,215,.1), transparent 28%), radial-gradient(circle at 88% 18%, rgba(102,199,123,.11), transparent 30%), linear-gradient(180deg, #fff 0%, #f6fcfe 100%);
}

.doctor-card {
    position: relative;
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(0,175,215,.14);
    border-radius: 36px;
    box-shadow: var(--shadow);
}

.doctor-photo-wrap {
    position: relative;
    height: 100%;
    min-height: 460px;
    background: linear-gradient(135deg, var(--soft-blue), var(--soft-green));
    overflow: hidden;
}

.doctor-photo {
    width: 100%;
    min-height: 460px !important;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.doctor-photo-overlay {
    position: absolute;
    left: 22px;
    right: 22px;
    bottom: 22px;
    display: grid;
    gap: 10px;
}

.doctor-highlight-card {
    background: rgba(255,255,255,.94);
    border: 1px solid rgba(0,175,215,.16);
    border-radius: 22px;
    padding: 16px;
    box-shadow: 0 16px 36px rgba(18,50,72,.14);
    backdrop-filter: blur(10px);
}

    .doctor-highlight-card strong {
        display: block;
        color: var(--navy);
        font-size: .86rem;
        font-weight: 600;
        line-height: 1.55;
        font-style: italic;
        margin-bottom: 6px;
    }

    .doctor-highlight-card span {
        display: block;
        color: var(--teal-dark);
        font-size: .74rem;
        font-weight: 600;
    }

.doctor-name-main {
    font-weight: 600;
}

.doctor-name-degree {
    color: var(--muted);
    font-size: .72em;
    font-weight: 500;
}

.doctor-content {
    position: relative;
    z-index: 2;
    padding: clamp(28px, 4vw, 42px);
}

.cred-list {
    list-style: none;
    padding: 0;
    margin: 20px 0 0;
}

    .cred-list li {
        display: flex;
        align-items: flex-start;
        gap: 12px;
        padding: 11px 0;
        border-bottom: 1px solid var(--line);
        color: var(--ink);
        font-weight: 600;
        line-height: 1.55;
    }

        .cred-list li:last-child {
            border-bottom: 0;
        }

    .cred-list i {
        color: var(--green-dark);
        margin-top: 3px;
    }

.reviews-section {
    background: radial-gradient(circle at 12% 14%, rgba(0,175,215,.09), transparent 28%), radial-gradient(circle at 88% 16%, rgba(102,199,123,.1), transparent 30%), linear-gradient(180deg, #fff 0%, var(--soft-blue) 100%);
}

.review-card p {
    color: var(--ink);
    line-height: 1.65;
    font-style: italic;
    font-weight: 500;
    margin: 10px 0 14px;
}

.review-name {
    color: var(--navy);
    font-weight: 600;
}

.faq-section {
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at 14% 18%, rgba(102,199,123,.12), transparent 28%), radial-gradient(circle at 86% 14%, rgba(0,175,215,.08), transparent 30%), linear-gradient(180deg, #fff 0%, var(--soft-green) 100%);
    border-top: 1px solid rgba(18,50,72,.06);
}

.accordion-item {
    border: 1px solid rgba(0,175,215,.14) !important;
    border-radius: 18px !important;
    overflow: hidden;
    margin-bottom: 14px;
    box-shadow: 0 10px 24px rgba(18,50,72,.05);
}

.accordion-button {
    color: var(--navy);
    font-weight: 600;
    padding: 20px 22px;
    box-shadow: none !important;
}

    .accordion-button:not(.collapsed) {
        background: var(--soft-blue);
        color: var(--teal-dark);
    }

.accordion-body {
    color: var(--muted);
    line-height: 1.72;
    font-weight: 500;
}

.final-contact-section {
    background: radial-gradient(circle at 16% 16%, rgba(102,199,123,.16), transparent 26%), radial-gradient(circle at 82% 18%, rgba(0,175,215,.16), transparent 28%), linear-gradient(135deg, var(--navy), #164b61 68%, #1e6375);
    color: #fff;
    padding: clamp(58px, 7vw, 92px) 0px 0px;
}

.final-contact-eyebrow {
    color: #82e2c3;
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
    margin-bottom: 18px;
    display: block;
}

.final-contact-title {
    color: #fff;
    font-weight: 600;
    line-height: 1.08;
    letter-spacing: -.025em;
    margin-bottom: 18px;
}

.final-contact-copy {
    color: rgba(255,255,255,.74);
    font-size: 1.05rem;
    line-height: 1.7;
    max-width: 560px;
    margin-bottom: 32px;
}

.contact-detail {
    display: grid;
    grid-template-columns: 50px 1fr;
    gap: 16px;
    align-items: flex-start;
    margin-bottom: 22px;
}

.contact-detail-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(255,255,255,.92);
    color: var(--green-dark);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.18rem;
}

.contact-detail-label {
    display: block;
    color: rgba(255,255,255,.52);
    font-size: .76rem;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.contact-detail a,
.contact-detail strong {
    color: #fff;
    font-weight: 600;
    font-size: 1.03rem;
    line-height: 1.55;
}

.hours-list {
    list-style: none;
    padding: 0;
    margin: 0;
    max-width: 330px;
}

    .hours-list li {
        display: grid;
        grid-template-columns: 88px 1fr;
        gap: 12px;
        color: rgba(255,255,255,.7);
        line-height: 1.85;
        font-size: .93rem;
    }

    .hours-list strong {
        color: #fff;
        font-size: .93rem;
    }

    .hours-list .closed,
    .hours-list .closed strong,
    .hours-list .closed span {
        color: rgba(255,255,255,.38);
    }

.final-form-panel {
    background: #fff;
    border-radius: 22px;
    padding: clamp(24px, 4vw, 34px);
    box-shadow: 0 28px 80px rgba(5,20,31,.28);
    color: var(--ink);
}

    .final-form-panel h2 {
        color: var(--navy);
        font-weight: 600;
        letter-spacing: -.02em;
        margin-bottom: 6px;
    }

.footer-smile-tagline {
    margin-top: 42px;
    text-align: center;
    padding: 34px 20px 76px;
}

    .footer-smile-tagline strong {
        display: block;
        color: rgba(255,255,255,.18);
        font-size: clamp(1.75rem, 4.4vw, 3.7rem);
        font-weight: 600;
        line-height: 1.05;
        letter-spacing: .08em;
        text-transform: uppercase;
    }

footer {
    background: linear-gradient(135deg, var(--navy), var(--navy-dark));
    color: rgba(255,255,255,.58);
    padding: 22px 0 22px;
    font-size: .82rem;
    line-height: 1.55;
}

    footer p {
        opacity: .25;
    }

.consultation-modal .modal-content {
    border: 0;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 34px 90px rgba(5,20,31,.28);
}

.consultation-modal .modal-header {
    background: linear-gradient(135deg, var(--teal), var(--green));
    color: #fff;
    border: 0;
    padding: 22px 24px;
}

.consultation-modal .modal-title {
    font-weight: 600;
    letter-spacing: -.015em;
}

.consultation-modal .btn-close {
    filter: brightness(0) invert(1);
    opacity: .9;
}
.association-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 22px 0 0;
/*    justify-content: center;*/
}

    .association-badges span {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        padding: 8px 12px;
        border-radius: 999px;
        background: var(--soft-blue);
        border: 1px solid rgba(0, 175, 215, 0.16);
        color: var(--navy);
        font-size: 0.76rem;
        font-weight: 600;
    }

    .association-badges i {
        color: var(--green-dark);
    }
.consultation-modal .modal-body {
    padding: 24px;
}

.back-to-top {
    position: fixed;
    right: 22px;
    bottom: 24px;
    z-index: 1045;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 0;
    background: linear-gradient(135deg, var(--teal), var(--green));
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 16px 34px rgba(0,175,215,.28);
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: all .2s ease;
}

    .back-to-top.is-visible {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

.mobile-sticky-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1050;
    background: rgba(255,255,255,.98);
    backdrop-filter: blur(12px);
    border-top: 1px solid rgba(0,175,215,.17);
    box-shadow: 0 -16px 40px rgba(18,50,72,.12);
    padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
}

    .mobile-sticky-cta .mobile-cta-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        align-items: stretch;
    }

    .mobile-sticky-cta .btn {
        min-height: 52px;
        width: 100%;
        padding: 12px 10px;
        border-radius: 14px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        font-weight: 600;
        line-height: 1.1;
        text-align: center;
        white-space: nowrap;
    }

    .mobile-sticky-cta .btn-call {
        background: var(--navy);
        color: #fff;
    }

    .mobile-sticky-cta .btn-book {
        background: linear-gradient(135deg, var(--teal), var(--green));
        color: #fff;
    }

@media (max-width: 991.98px) {
/*    .container {
        max-width: 720px;
    }
*/
    .section-pad {
        padding: 54px 0;
    }

    .header-grid {
        grid-template-columns: 180px auto;
        min-height: 74px;
        gap: 12px;
    }

    .brand-logo img {
        width: 168px;
        max-width: 42vw;
    }

    .doctor-header,
    .header-divider,
    .header-call-scroll {
        display: none !important;
    }

    .header-actions {
        justify-content: flex-end;
    }

    .header-cta {
        min-width: auto;
        min-height: 42px;
        padding: 9px 14px;
        font-size: .82rem;
    }

    .hero-conversion {
        min-height: auto;
        display: block;
        padding: 26px 0 40px;
    }

        .hero-conversion .row {
            --bs-gutter-y: 1.4rem;
        }

    .hero-visual-col {
        order: -1;
    }

    .hero-visual {
        min-height: auto;
        margin: 0 0 26px;
    }

    .model-photo-placeholder {
        position: relative;
        width: 100%;
        min-height: 340px;
        margin-top: 0;
        border-radius: 28px;
    }

    .hero-photo-slider,
    .hero-photo-slider .carousel-inner,
    .hero-photo-slider .carousel-item,
    .hero-photo-slide {
        min-height: 340px;
    }

    .hero-family-photo {
        max-height: 320px;
    }

    .hero-copy,
    .concerns-section-title,
    .process-intro {
        text-align: center;
    }

        .hero-subtitle,
        .concerns-section-title .section-sub,
        .process-intro .section-sub {
            margin-left: auto;
            margin-right: auto;
        }

    .hero-review-row {
        justify-content: center;
    }

    .concerns-form-column {
        min-height: auto;
    }

    .concerns-form-wrap {
        position: static;
        margin-top: 28px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .process-intro {
        position: static;
    }

    .doctor-photo-wrap,
    .doctor-photo {
        min-height: 340px;
    }

    .doctor-content {
        padding: 28px 24px;
    }

    .final-contact-section {
/*        padding-bottom: 104px;*/
    }
    #accessibility-button {
        right: 14px;
        bottom: 30px !important;
        width: 42px;
        height: 42px;
    }
}

@media (max-width: 767.98px) {
    body {
        padding-bottom: calc(78px + env(safe-area-inset-bottom));
    }

    .top-bar {
        display: none;
    }

    .header-grid {
        min-height: 64px;
        grid-template-columns: minmax(0, 1fr) auto;
        gap: 8px;
    }

    .brand-logo img {
        width: 150px;
        max-width: 50vw;
    }

    .header-cta {
        min-height: 38px;
        padding: 8px 10px;
        font-size: .74rem;
    }

    .hero-conversion {
        padding: 14px 0 30px;
    }

    .hero-visual {
        margin: 0 0 20px;
    }

    .model-photo-placeholder,
    .hero-photo-slider,
    .hero-photo-slider .carousel-inner,
    .hero-photo-slider .carousel-item,
    .hero-photo-slide {
        min-height: 238px;
        border-radius: 20px;
    }

    .hero-photo-slide {
        padding: 14px 14px 0;
    }

    .hero-family-photo {
        max-height: 228px;
    }

    .hero-doctor-badge {
        left: 12px;
        right: 12px;
        bottom: 12px;
        padding: 10px 11px;
        border-radius: 15px;
        gap: 9px;
    }

        .hero-doctor-badge i {
            width: 34px;
            height: 34px;
            border-radius: 12px;
            font-size: .92rem;
        }

        .hero-doctor-badge strong {
            font-size: .72rem;
        }

        .hero-doctor-badge span {
            font-size: .6rem;
        }

    .hero-copy .eyebrow {
        padding: 7px 10px;
        font-size: .62rem;
        letter-spacing: .055em;
        margin-bottom: 12px;
    }

    .hero-heading {
        letter-spacing: -.04em;
        font-size: clamp(1.82rem, 9vw, 2.38rem);
        line-height: 1.03;
        margin-bottom: 12px;
    }

    .hero-subtitle {
        font-size: .92rem;
        line-height: 1.56;
        margin-bottom: 12px;
    }

    .hero-review-row {
        gap: 7px;
        margin: 10px 0 16px;
        font-size: .78rem;
        line-height: 1.35;
    }

    .section-pad {
        padding: 42px 0;
    }

    .section-sub {
        font-size: .92rem;
        line-height: 1.6;
    }

    .btn-fresh,
    .btn-fresh-outline,
    .btn-fresh-dark {
        min-height: 46px;
        padding: 11px 16px;
        font-size: .85rem;
    }

    .hero-copy .btn-fresh,
    .hero-copy .btn-fresh-outline,
    .inline-cta-actions .btn {
        width: 100%;
    }

    .form-card {
        border-radius: 20px;
        box-shadow: 0 18px 42px rgba(18,50,72,.1);
    }

    .form-head {
        padding: 15px 16px;
    }

    .form-body {
        padding: 15px;
    }

    .form-control {
        min-height: 44px;
        border-radius: 12px;
        font-size: .88rem;
    }

    textarea.form-control {
        min-height: 68px;
        padding-top: 11px;
    }

    .form-proof-clean {
        padding: 12px 12px 14px;
    }

    .concern-card,
    .benefit-card,
    .service-card,
    .process-card,
    .review-card {
        padding: 18px;
        border-radius: 20px;
    }

    .services-showcase {
        border-radius: 24px;
    }

    .services-intro {
        padding: 24px 18px;
        text-align: center;
    }

    .services-grid {
        padding: 16px;
        gap: 12px;
    }

    .service-cta {
        margin: 0 16px 16px;
        padding: 18px;
        border-radius: 18px;
    }

    .process-number {
        width: 44px;
        height: 44px;
        border-radius: 14px;
        margin-bottom: 14px;
        font-size: 1.1rem;
    }

    .doctor-card {
        border-radius: 24px;
    }

    .doctor-photo-wrap,
    .doctor-photo {
        min-height: 280px;
    }

    .doctor-photo-overlay {
        left: 10px;
        right: 10px;
        bottom: 10px;
    }

    .doctor-content {
        padding: 22px 18px;
    }

    .review-card p {
        font-size: .88rem;
        line-height: 1.55;
    }

    .accordion-button {
        padding: 15px 16px;
        font-size: .88rem;
        line-height: 1.35;
    }

    .accordion-body {
        font-size: .86rem;
        line-height: 1.6;
        padding: 14px 16px 16px;
    }

    .final-contact-section {
        padding: 44px 0 44px;
    }

    .contact-detail {
        grid-template-columns: 40px 1fr;
        gap: 11px;
        margin-bottom: 16px;
    }

    .contact-detail-icon {
        width: 38px;
        height: 38px;
        font-size: 1rem;
    }

    .hours-list li {
        grid-template-columns: 78px 1fr;
        gap: 10px;
        font-size: .8rem;
        line-height: 1.7;
    }

    .final-form-panel {
        padding: 18px;
        border-radius: 18px;
    }

    .footer-smile-tagline {
        margin-top: 24px;
        padding: 20px 8px 6px;
    }

        .footer-smile-tagline strong {
            font-size: clamp(1.22rem, 7vw, 2.1rem);
            letter-spacing: .055em;
        }

    .association-badges span {
        font-size: 0.62rem;
        padding: 7px 9px;
    }

    .back-to-top {
        right: 12px;
        bottom: 88px;
        width: 40px;    
        height: 40px;
    }
}

@media (max-width: 380px) {
    .brand-logo img {
        width: 136px;
    }

    .header-cta {
/*        font-size: .68rem;*/
        padding: 8px;
    }

    .hero-heading {
        font-size: 1.72rem;
    }

    .mobile-sticky-cta .btn {
        min-height: 50px;
        font-size: .78rem;
        gap: 5px;
        padding-left: 8px;
        padding-right: 8px;
    }
}

/* Mobile conversion optimization */
@media (max-width: 991.98px) {
    .hero-visual-col {
        order: -1;
    }

    .hero-copy {
        order: 0;
    }

    .hero-conversion .row {
        --bs-gutter-y: 1rem;
    }

    .hero-review-row {
        flex-wrap: wrap;
    }

    .concerns-form-wrap {
        margin-top: 24px;
    }

    body {
        padding-bottom: 70px;
    }
}

@media (max-width: 767.98px) {
    .main-header {
        position: sticky;
    }

    .hero-conversion {
        padding: 18px 0 28px;
    }

    .hero-copy {
        text-align: left;
    }

        .hero-copy .eyebrow {
            max-width: 100%;
            justify-content: center;
            display: flex;
            width: 100%;
            white-space: normal;
            line-height: 1.35;
        }

    .hero-heading {
        text-align: center;
        max-width: 340px;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-subtitle {
        text-align: center;
        max-width: 360px;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-review-row {
        width: 100%;
        justify-content: center;
        padding: 9px 10px;
        border-radius: 16px;
        background: rgba(255, 255, 255, 0.82);
        border: 1px solid rgba(0, 175, 215, 0.12);
    }

    .hero-note {
        text-align: center;
        margin: 14px auto 0;
        max-width: 340px;
        line-height: 1.45;
    }

    .hero-visual {
        margin: 0 0 18px;
    }

    .model-photo-placeholder,
    .hero-photo-slider,
    .hero-photo-slider .carousel-inner,
    .hero-photo-slider .carousel-item,
    .hero-photo-slide {
        min-height: 225px;
    }

    .hero-family-photo {
        max-height: 216px;
    }

    .hero-doctor-badge {
        left: 10px;
        right: 10px;
        bottom: 10px;
        padding: 9px 10px;
    }

    .hero-photo-indicators {
        bottom: 10px;
    }

    .form-qualifier-blockquote {
        padding: 11px 12px;
        font-size: 0.72rem;
        line-height: 1.38;
        margin-bottom: 14px;
    }

    .concerns-section-title {
        margin-bottom: 18px;
    }

    .concern-card,
    .benefit-card,
    .service-card,
    .process-card,
    .review-card {
        min-height: auto;
    }

    .services-intro-panel {
        padding: 16px;
        border-radius: 18px;
        margin-top: 18px;
    }

    .services-intro-list {
        gap: 10px;
    }

        .services-intro-list li {
            font-size: 0.82rem;
            text-align: left;
        }

    .service-card {
        min-height: auto;
    }

    .service-badge {
        margin-top: 12px;
    }

    .process-card {
        min-height: auto;
    }

    .doctor-photo-wrap,
    .doctor-photo {
        min-height: 250px;
    }

    .doctor-highlight-card {
        padding: 12px;
        border-radius: 16px;
    }

        .doctor-highlight-card strong {
            font-size: 0.76rem;
            line-height: 1.42;
        }

    .final-contact-copy {
        font-size: 0.92rem;
        line-height: 1.58;
    }

    .mobile-sticky-cta .btn {
        box-shadow: none;
    }

    .consultation-modal .modal-title {
        font-size: 1.12rem;
    }

    .consultation-modal .modal-subtitle {
        font-size: 0.82rem;
    }
}

@media (max-width: 420px) {
    .hero-heading {
        max-width: 320px;
    }

    .hero-subtitle {
        font-size: 0.88rem;
    }

    .hero-review-row {
        font-size: 0.72rem;
    }

    .model-photo-placeholder,
    .hero-photo-slider,
    .hero-photo-slider .carousel-inner,
    .hero-photo-slider .carousel-item,
    .hero-photo-slide {
        min-height: 210px;
    }

    .hero-family-photo {
        max-height: 200px;
    }

    .hero-doctor-badge strong {
        font-size: 0.68rem;
    }

    .hero-doctor-badge span {
        font-size: 0.56rem;
    }

    .contact-form .g-recaptcha > div {
        -webkit-transform: scale(0.75);
        -moz-transform: scale(0.75);
        -ms-transform: scale(0.75);
        -o-transform: scale(0.75);
        transform: scale(0.75);
        -webkit-transform-origin: 0 0;
        -moz-transform-origin: 0 0;
        -ms-transform-origin: 0 0;
        -o-transform-origin: 0 0;
        transform-origin: 0 0;
    }
}

.intl-tel-input {
    display: block !important;
}

strong {
    font-weight: 700 !important;
}

