/* ==========================================================================
   Phuketo Dental — styles.css (base stylesheet)
   Cleaned: duplicate selectors merged (last-wins per property),
   same-breakpoint @media blocks consolidated, identical @keyframes deduped.
   No rules removed; rendered output is unchanged. Backup: styles.original.css
   ========================================================================== */

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

:root {
    --cream: #F8FAFC;
    --white: #FFFFFF;
    --off-white: #F1F5F9;
    --blue: #0C4A6E;
    --blue-mid: #0369A1;
    --blue-light: #0EA5E9;
    --blue-pale: #E0F2FE;
    --blue-vivid: #38BDF8;
    --accent-teal: var(--teal, #0d9488);
    --teal: #069494;
    --teal-mid: #14B8A6;
    --teal-light: #5EEAD4;
    --teal-pale: #CCFBF1;
    --teal-vivid: #2DD4BF;
    --accent-amber: #FCD34D;
    --amber: #FBBF24;
    --amber-mid: #F59E0B;
    --amber-light: #FDE68A;
    --amber-pale: #FEF3C7;
    --amber-vivid: #FACC15;
    --accent-navy: #1E40AF;
    --navy: #1E40AF;
    --navy-mid: #1E3A8A;
    --navy-light: #3B82F6;
    --navy-pale: #DBEAFE;
    --navy-vivid: #2563EB;
    --green: #10B981;
    --green-mid: #059669;
    --green-light: #6EE7B7;
    --green-pale: #D1FAE5;
    --green-vivid: #34D399;
    --accent: #F59E0B;
    --accent-light: #FCD34D;
    --accent-pale: #FEF3C7;
    --dark: #1E293B;
    --gray: #64748B;
    --gray-light: #94A3B8;
    --gray-pale: #CBD5E1;
    --radius: 14px;
    --radius-sm: 10px;
    --radius-lg: 22px;
    --shadow-sm: 0 1px 3px rgba(15,23,42,.06);
    --shadow-md: 0 8px 30px rgba(15,23,42,.08);
    --shadow-lg: 0 20px 60px rgba(15,23,42,.1);
    --space-2xl: 7rem 5vw;
    --color-blue: var(--blue);
    --color-teal: var(--teal);
    --color-amber: var(--amber);
    --color-navy: var(--navy);
    --color-green: var(--green);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background: var(--cream);
    color: var(--charcoal);
    font-family: "Outfit",sans-serif;
    overflow-x: hidden;
}

::selection {
    background: var(--blue);
    color: var(--white);
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    margin: 20px;
}

li.list {
    list-style: disc;
    margin-left: 2rem !important;
    color: var(--dark);
}

.topbar {
    background: var(--blue);
    color: rgba(255,255,255,.85);
    padding: .55rem 5vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: .76rem;
    letter-spacing: .02em;
}

    .topbar a {
        color: var(--accent-light);
        transition: color .3s;
    }

        .topbar a:hover {
            color: #fff;
        }

.topbar-left, .topbar-right {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

    .topbar-left i, .topbar-right i {
        margin-right: .4rem;
        font-size: .7rem;
        opacity: .6;
    }

    .topbar-right .divider {
        width: 1px;
        height: 14px;
        background: rgba(255,255,255,.15);
    }

header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255,255,255,.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0,0,0,.04);
    padding: 0 5vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 72px;
    transition: box-shadow .3s;
}

    header.scrolled {
        box-shadow: 0 4px 30px rgba(12,74,110,.06);
    }

.logo {
    font-family: "DM Serif Display",serif;
    font-size: 1.65rem;
    color: var(--blue);
}

    .logo span {
        color: var(--accent);
    }

.nav-links {
    display: flex;
    gap: 2.2rem;
    list-style: none;
    align-items: center;
}

    .nav-links a {
        font-size: .8rem;
        font-weight: 500;
        letter-spacing: .04em;
        text-transform: uppercase;
        color: var(--dark);
        transition: color .3s;
        position: relative;
    }

        .nav-links a:hover {
            color: var(--blue);
        }

        .nav-links a::after {
            content: "";
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--blue-light);
            border-radius: 2px;
            transition: width .3s;
        }

        .nav-links a.active {
            color: var(--blue);
        }

        .nav-links a:hover::after {
            width: 100%;
        }

.nav-right {
    display: flex;
    gap: .75rem;
    align-items: center;
}

    .nav-right a.auth {
        font-size: .78rem;
        font-weight: 500;
        color: var(--gray);
    }

        .nav-right a.auth:hover {
            color: var(--blue);
        }

.btn-book {
    background: var(--blue);
    color: #fff;
    border: none;
    padding: .6rem 1.4rem;
    border-radius: 50px;
    font-family: "Outfit",sans-serif;
    font-size: .76rem;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all .3s;
    margin-left: .5rem;
}

    .btn-book:hover {
        background: var(--blue-mid);
        transform: translateY(-1px);
        box-shadow: 0 6px 20px rgba(12,74,110,.2);
    }

.nav-links li {
    position: relative;
}

.dropdown-trigger {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--dark);
    cursor: pointer;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

    .dropdown-trigger:hover,
    .nav-links li:hover .dropdown-trigger {
        color: var(--blue);
    }

.nav-dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(15px);
    background: var(--white);
    min-width: 180px;
    box-shadow: 0 10px 40px rgba(12, 74, 110, 0.08);
    border-radius: var(--radius-sm);
    padding: 0.8rem 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid rgba(0,0,0,0.04);
    z-index: 1000;
    display: flex;
    flex-direction: column;
}

    .nav-dropdown::before {
        content: "";
        position: absolute;
        top: -15px;
        left: 0;
        right: 0;
        height: 15px;
    }

.nav-links li:hover .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(5px);
}

.nav-dropdown a {
    padding: 0.6rem 1.5rem;
    color: var(--gray);
    text-transform: capitalize;
    font-size: 0.95rem;
    letter-spacing: 0;
}

    .nav-dropdown a::after {
        display: none;
    }

    .nav-dropdown a:hover {
        color: var(--blue);
        background: var(--off-white);
    }

.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 88vh;
    padding: 0 5vw;
    align-items: center;
    gap: 4rem;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #F8FAFC 0%, #E0F2FE 50%, #F0F9FF 100%);
}

    .hero::before {
        content: "";
        position: absolute;
        top: -100px;
        right: -100px;
        width: 500px;
        height: 500px;
        background: radial-gradient(circle,rgba(14,165,233,.1) 0%,transparent 70%);
        border-radius: 50%;
    }

    .hero::after {
        content: "";
        position: absolute;
        bottom: -80px;
        left: 20%;
        width: 350px;
        height: 350px;
        background: radial-gradient(circle,rgba(245,158,11,.06) 0%,transparent 70%);
        border-radius: 50%;
    }

.hero-text {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: var(--blue-pale);
    color: var(--blue);
    padding: .45rem 1.1rem;
    border-radius: 50px;
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeUp .8s .2s forwards;
}

    .hero-badge .dot {
        width: 7px;
        height: 7px;
        border-radius: 50%;
        background: var(--accent);
    }

.hero h1 {
    font-family: "DM Serif Display",serif;
    font-size: clamp(2.6rem,5vw,4.2rem);
    line-height: 1.08;
    color: var(--charcoal);
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeUp .8s .4s forwards;
}

    .hero h1 em {
        font-family: "Fraunces",serif;
        font-style: italic;
        color: var(--blue-mid);
        font-weight: 300;
    }

.hero-sub {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--gray);
    max-width: 480px;
    margin-bottom: 2.5rem;
    opacity: 0;
    animation: fadeUp .8s .6s forwards;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp .8s .8s forwards;
}

.btn-primary {
    background: var(--blue);
    color: #fff;
    border: none;
    padding: .9rem 2rem;
    border-radius: 50px;
    font-family: "Outfit",sans-serif;
    font-size: .82rem;
    font-weight: 600;
    letter-spacing: .05em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all .35s;
    display: inline-flex;
    align-items: center;
    gap: .5rem;
}

    .btn-primary:hover {
        background: var(--blue-mid);
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(12,74,110,.25);
    }

.btn-outline {
    background: transparent;
    color: var(--blue);
    border: 2px solid var(--blue);
    padding: .85rem 2rem;
    border-radius: 50px;
    font-family: "Outfit",sans-serif;
    font-size: .82rem;
    font-weight: 600;
    letter-spacing: .05em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all .35s;
}

    .btn-outline:hover {
        background: var(--blue);
        color: #fff;
    }

.hero-visual {
    position: relative;
    z-index: 2;
    opacity: 0;
    animation: fadeUp .8s .5s forwards;
}

.hero-img-wrap {
    position: relative;
    border-radius: var(--radius-lg) var(--radius-lg) var(--radius-lg) 60px;
    overflow: hidden;
    aspect-ratio: 4/5;
    box-shadow: var(--shadow-lg);
    border: 6px solid var(--white);
}

    .hero-img-wrap img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.hero-hours {
    position: absolute;
    bottom: -30px;
    left: -40px;
    background: var(--white);
    border-radius: var(--radius);
    padding: 1.8rem;
    box-shadow: var(--shadow-lg);
    z-index: 3;
    min-width: 280px;
}

    .hero-hours h4 {
        font-family: "DM Serif Display",serif;
        font-size: 1rem;
        color: var(--blue);
        margin-bottom: .7rem;
        display: flex;
        align-items: center;
        gap: .5rem;
    }

        .hero-hours h4 i {
            color: var(--accent);
            font-size: .85rem;
        }

.hours-row {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: .3rem;
    font-size: .8rem;
}

    .hours-row .day {
        color: var(--gray);
    }

    .hours-row .time {
        font-weight: 600;
        color: var(--charcoal);
    }

.hero-rating {
    position: absolute;
    top: 30px;
    right: -30px;
    background: var(--blue);
    color: var(--white);
    padding: 1.2rem 1.8rem;
    border-radius: 16px;
    text-align: center;
    z-index: 3;
    box-shadow: var(--shadow-lg);
}

    .hero-rating .stars {
        color: var(--accent-light);
        font-size: 0.85rem;
        letter-spacing: 2px;
    }

    .hero-rating .num {
        font-family: "Outfit", sans-serif;
        font-size: 2.2rem;
        line-height: 1.2;
        font-weight: 700;
        margin: 0.2rem 0;
    }

    .hero-rating .label {
        font-size: 0.65rem;
        letter-spacing: 0.15em;
        text-transform: uppercase;
        opacity: .6;
        color: rgba(255,255,255,0.7);
    }

.cta-banner {
    background: var(--blue);
    margin: 0 5vw;
    border-radius: var(--radius-lg);
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow: hidden;
    position: relative;
}

    .cta-banner .phone {
        font-family: "DM Serif Display",serif;
        font-weight: 700;
        font-size: 2rem;
        color: var(--accent-light);
        margin-bottom: .75rem;
        letter-spacing: 0.02em;
    }

    .cta-banner .btn-cta {
        background: var(--white);
        color: var(--charcoal);
        box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    }

        .cta-banner .btn-cta:hover {
            background: var(--off-white);
            transform: translateY(-2px);
        }

.trust-strip {
    background: var(--white);
    padding: 2.2rem 5vw;
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
    border-bottom: 1px solid rgba(0,0,0,.04);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: .75rem;
}

.trust-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--blue-pale);
    color: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.about-offer {
    position: absolute;
    top: 20px;
    left: -16px;
    background: var(--accent);
    color: #fff;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 30px rgba(245,158,11,.3);
    z-index: 2;
}

    .about-offer .pct {
        font-family: "DM Serif Display",serif;
        font-size: 2rem;
        line-height: 1;
    }

.cta-banner-text {
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.cta-banner-img {
    position: relative;
    min-height: 320px;
}

    .cta-banner-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.stats {
    background: var(--blue);
    padding: 5rem 5vw;
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 2rem;
    position: relative;
    overflow: hidden;
}

.stat-item {
    text-align: center;
    position: relative;
    z-index: 1;
}

.stat-num {
    font-family: "DM Serif Display",serif;
    font-size: 3rem;
    color: #fff;
    line-height: 1.1;
}

.stat-label {
    font-size: .7rem;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: rgba(255,255,255,.45);
    margin-top: .4rem;
}

.testimonials {
    padding: 7rem 5vw;
    background: linear-gradient(135deg,var(--off-white) 0%,var(--blue-pale) 100%);
    position: relative;
    overflow: hidden;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 1.5rem;
    position: relative;
    z-index: 1;
}

.testimonial-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 2.5rem 2rem;
    border: 1px solid rgba(0,0,0,.04);
    transition: all .4s;
    position: relative;
}

.trust-text .num {
    font-family: "DM Serif Display",serif;
    font-size: 1.4rem;
    color: var(--charcoal);
}

.trust-text .desc {
    font-size: .7rem;
    color: var(--gray);
    letter-spacing: .05em;
    text-transform: uppercase;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    color: var(--blue-mid);
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    margin-bottom: .75rem;
}

    .section-tag::before {
        content: "";
        width: 28px;
        height: 2px;
        background: var(--blue-light);
        border-radius: 2px;
    }

.section-title {
    font-family: "DM Serif Display",serif;
    font-size: clamp(2rem,3.5vw,2.8rem);
    line-height: 1.15;
    color: var(--charcoal);
    margin-bottom: 1.5rem;
}

    .section-title em {
        font-family: "Fraunces",serif;
        font-style: italic;
        color: var(--blue-mid);
        font-weight: 300;
    }

.about-banner {
    position: relative;
    padding: 10rem 5vw 8rem;
    background: var(--blue);
    overflow: hidden;
    color: white;
}

    .about-banner::before {
        content: "";
        position: absolute;
        inset: 0;
        background: url("https://images.unsplash.com/photo-1629909613654-28e377c37b09?w=1600&fit=crop") center/cover;
        opacity: 0.15;
        mix-blend-mode: overlay;
    }

.page-header {
    background: linear-gradient(135deg, var(--blue) 0%, var(--blue-mid) 100%);
    padding: 6rem 5vw;
    text-align: center;
    color: white;
}

    .page-header h1 {
        font-family: "DM Serif Display", serif;
        font-size: clamp(2.5rem, 5vw, 3.5rem);
        margin-bottom: 1rem;
    }

.page-header-about {
    background: linear-gradient(135deg, #074a74 0%, #0369a1 100%);
    padding: 2rem 5vw 6rem;
    text-align: center;
    color: white;
}

    .page-header-about .section-tag {
        color: var(--accent-light);
        border: none;
        font-size: 0.65rem;
        margin-bottom: 1.5rem;
    }

    .page-header-about h1 {
        font-family: "DM Serif Display", serif;
        font-size: 3.8rem;
        margin-bottom: 1rem;
        letter-spacing: -0.02em;
    }

    .page-header-about p {
        opacity: 0.8;
        max-width: 500px;
        margin: 0 auto;
        font-size: 0.95rem;
        line-height: 1.6;
    }

.uppercase {
    text-transform: uppercase;
}

.stats-bar {
    background: var(--white);
    padding: 3.5rem 5vw;
    display: flex;
    justify-content: center;
    gap: 6rem;
    border-bottom: 1px solid #f0f4f8;
}

.stat-unit {
    text-align: center;
}

    .stat-unit .val {
        display: block;
        font-family: "Outfit", sans-serif;
        font-size: 2.2rem;
        font-weight: 600;
        color: var(--blue);
        margin-bottom: 0.2rem;
    }

    .stat-unit .lbl {
        font-size: 0.65rem;
        text-transform: uppercase;
        letter-spacing: 0.15em;
        color: var(--gray-light);
        font-weight: 600;
    }

.compassion-section {
    padding: 8rem 5vw;
    background: white;
    text-align: center;
}

.compassion-content {
    max-width: 900px;
    margin: 0 auto;
}

.compassion-img {
    margin-top: 4rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.values-section {
    padding: 8rem 5vw;
    background: #f9fbff;
    text-align: center;
}

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

.value-card {
    background: white;
    padding: 4rem 2.5rem;
    border-radius: 20px;
    text-align: left;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
    transition: all 0.4s ease;
}

    .value-card:hover {
        transform: translateY(-10px);
        box-shadow: var(--shadow-lg);
    }

    .value-card i {
        color: var(--blue);
        font-size: 1.8rem;
        margin-bottom: 2rem;
        display: block;
    }

    .value-card h3 {
        font-size: 1.25rem;
        font-weight: 700;
        color: var(--charcoal);
        margin-bottom: 1rem;
    }

    .value-card p {
        font-size: 0.95rem;
        color: var(--gray);
        line-height: 1.8;
    }

.philosophy-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    padding: 2rem 5vw;
    background: linear-gradient(180deg, #F8FAFC 0%, #E0F2FE 100%);
    position: relative;
    overflow: hidden;
}

    .philosophy-row.reverse {
        direction: rtl;
    }

        .philosophy-row.reverse > * {
            direction: ltr;
        }

.foundation-box {
    padding: 8rem 5vw;
    background: linear-gradient(180deg, #E0F2FE 0%, #F8FAFC 100%);
    position: relative;
    overflow: hidden;
}

.about-text p {
    font-size: 1rem;
    line-height: 1.85;
    color: var(--gray);
    margin-bottom: 1.25rem;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 2rem;
}

.about-feat {
    display: flex;
    gap: .75rem;
    align-items: flex-start;
    padding: 1rem;
    background: var(--off-white);
    border-radius: var(--radius-sm);
    transition: all .3s;
    border: 1px solid transparent;
}

    .about-feat:hover {
        background: var(--blue-pale);
        border-color: rgba(14,165,233,.1);
        transform: translateY(-2px);
    }

.about-feat-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    flex-shrink: 0;
    background: var(--blue);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .85rem;
}

.about-feat h4 {
    font-size: .85rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: .2rem;
}

.about-feat p {
    font-size: .75rem;
    color: var(--gray);
    line-height: 1.5;
}

* Clean White Philosophy Section */
.philosophy-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    padding: 8rem 5vw;
    background: var(--white);
    color: var(--charcoal);
}

.philosophy-row .section-title {
    color: var(--charcoal);
}

.philosophy-row p {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 1.2rem;
}

.standard-img-wrap {
    position: relative;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

    .standard-img-wrap img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

.impact-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 5rem;
    position: relative;
    z-index: 2;
}

    .impact-header h2 {
        font-size: clamp(2.5rem, 5vw, 3.2rem);
        color: var(--charcoal);
    }

    .impact-header p {
        font-size: 1.1rem;
        color: var(--gray);
        line-height: 1.8;
    }

.impact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    position: relative;
    z-index: 2;
}

.impact-card {
    background: var(--white);
    padding: 4rem 2.5rem;
    border-radius: 30px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(12, 74, 110, 0.04);
    border: 1px solid rgba(14, 165, 233, 0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

    .impact-card:hover {
        transform: translateY(-15px);
        box-shadow: 0 20px 60px rgba(12, 74, 110, 0.08);
        border-color: var(--accent-light);
    }

.icon-bubble {
    width: 80px;
    height: 80px;
    background: var(--accent-pale);
    color: var(--accent);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 2rem;
    transition: all 0.4s;
    transform: rotate(-5deg);
}

.impact-card:hover .icon-bubble {
    background: var(--accent);
    color: white;
    transform: rotate(0deg) scale(1.1);
}

.impact-card h4 {
    font-family: "DM Serif Display", serif;
    font-size: 1.4rem;
    color: var(--charcoal);
    margin-bottom: 1.2rem;
}

.impact-card p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--gray);
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
    padding: 0 5vw;
}

.mission-card {
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: var(--radius);
    border-top: 4px solid var(--blue-light);
    box-shadow: var(--shadow-md);
    transition: transform 0.3s;
    text-align: center;
}

    .mission-card:hover {
        transform: translateY(-10px);
    }

    .mission-card i {
        font-size: 2rem;
        color: var(--blue);
        margin-bottom: 1.5rem;
    }

.founder-section {
    padding: 7rem 5vw;
    background: var(--white);
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    align-items: center;
}

.founder-quote {
    font-family: "Fraunces", serif;
    font-size: 1.4rem;
    font-style: italic;
    color: var(--blue-mid);
    border-left: 3px solid var(--accent);
    padding-left: 1.5rem;
    margin: 2rem 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    padding: 5rem 5vw;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid rgba(0,0,0,.04);
    transition: all .4s;
    cursor: pointer;
}

    .service-card:hover {
        transform: translateY(-6px);
        box-shadow: var(--shadow-lg);
    }

.service-img {
    height: 180px;
    overflow: hidden;
}

    .service-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform .5s;
    }

.service-card:hover .service-img img {
    transform: scale(1.08);
}

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

.workflow-section {
    background: var(--off-white);
    padding: 8rem 5vw;
}

.workflow-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 4rem;
    position: relative;
}

    .workflow-grid::before {
        content: "";
        position: absolute;
        top: 40px;
        left: 10%;
        right: 10%;
        height: 2px;
        background: rgba(14, 165, 233, 0.2);
        z-index: 1;
    }

.workflow-step {
    position: relative;
    z-index: 2;
    text-align: center;
}

.step-number {
    width: 80px;
    height: 80px;
    background: var(--white);
    border: 4px solid var(--blue-pale);
    color: var(--blue);
    font-family: "DM Serif Display", serif;
    font-size: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s;
}

.workflow-step:hover .step-number {
    background: var(--blue);
    color: var(--white);
    border-color: var(--blue-light);
    transform: scale(1.1);
}

.workflow-step h4 {
    font-size: 1.2rem;
    color: var(--charcoal);
    margin-bottom: 0.75rem;
}

.workflow-step p {
    font-size: 0.95rem;
    color: var(--gray);
    line-height: 1.7;
}

.team-page-wrapper {
    padding: 8rem 5vw;
    background: var(--cream);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

.team-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.04);
    box-shadow: 0 4px 20px rgba(0,0,0,0.02);
    transition: all 0.4s ease;
}

    .team-card:hover {
        transform: translateY(-8px);
        box-shadow: var(--shadow-lg);
    }

.team-photo {
    aspect-ratio: 1/1;
    overflow: hidden;
    position: relative;
}

    .team-photo img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.6s;
    }

.team-card:hover .team-photo img {
    transform: scale(1.05);
}

.team-photo .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(12,74,110,0.8) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 1.5rem;
    gap: 0.8rem;
}

.team-card:hover .team-photo .overlay {
    opacity: 1;
}

.overlay a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(4px);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

    .overlay a:hover {
        background: var(--accent);
        transform: scale(1.1);
        color: var(--charcoal);
    }

.team-info {
    padding: 1.5rem;
    text-align: center;
}

    .team-info h3 {
        font-family: "DM Serif Display", serif;
        font-size: 1.25rem;
        color: var(--charcoal);
        margin-bottom: 0.3rem;
    }

    .team-info .role {
        font-size: 0.75rem;
        color: var(--blue-mid);
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.08em;
        margin-bottom: 1rem;
    }

.team-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    border-top: 1px solid var(--off-white);
    font-size: 0.8rem;
    color: var(--gray);
}

    .team-meta i {
        color: var(--accent);
        margin-right: 0.3rem;
    }

.profile-hero {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 6rem;
    align-items: center;
    padding: 6rem 5vw 8rem;
    background: linear-gradient(135deg, #F0F9FF 0%, #E0F2FE 40%, #FEF3C7 100%);
    position: relative;
    overflow: hidden;
}

    .profile-hero::before {
        content: "";
        position: absolute;
        top: -150px;
        left: -100px;
        width: 600px;
        height: 600px;
        background: radial-gradient(circle, rgba(245, 158, 11, 0.08) 0%, transparent 70%);
        border-radius: 50%;
        z-index: 0;
    }

.profile-image-wrap, .profile-intro {
    position: relative;
    z-index: 2;
}

.profile-image-wrap {
    border-radius: 40px 120px 40px 40px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(12, 74, 110, 0.15);
    aspect-ratio: 4/5;
    border: 8px solid var(--white);
}

    .profile-image-wrap img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.experience-badge {
    position: absolute;
    bottom: -15px;
    right: -15px;
    background: var(--accent);
    padding: 1.8rem;
    border-radius: var(--radius-lg);
    box-shadow: 0 15px 35px rgba(245, 158, 11, 0.35);
    text-align: center;
    z-index: 3;
    border: 4px solid var(--white);
    transform: rotate(-3deg);
    transition: transform 0.3s;
}

    .experience-badge:hover {
        transform: rotate(0deg) scale(1.05);
    }

    .experience-badge .num {
        font-family: "DM Serif Display", serif;
        font-size: 3rem;
        color: var(--white);
        line-height: 1;
        margin-bottom: 0.2rem;
    }

    .experience-badge .text {
        font-size: 0.75rem;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        color: var(--charcoal);
        font-weight: 800;
    }

.profile-intro h1 {
    font-family: "DM Serif Display", serif;
    font-size: clamp(3.5rem, 5vw, 4.5rem);
    color: var(--charcoal);
    margin-bottom: 0.5rem;
    line-height: 1.1;
}

.profile-intro .role {
    display: inline-block;
    font-size: 0.9rem;
    color: var(--blue-mid);
    background: var(--white);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-sm);
}

.profile-details {
    padding: 0 5vw 8rem;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    top: -40px;
    z-index: 5;
}

.tab-container {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    padding: 4rem;
    border: 1px solid rgba(0,0,0,0.04);
}

.tab-header {
    display: flex;
    gap: 3rem;
    border-bottom: 2px solid var(--off-white);
    margin-bottom: 3rem;
}

.tab-btn {
    background: none;
    border: none;
    padding: 0 0 1rem 0;
    font-family: "Outfit", sans-serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--gray-light);
    cursor: pointer;
    position: relative;
    transition: color 0.3s;
}

    .tab-btn:hover {
        color: var(--blue-mid);
    }

    .tab-btn.active {
        color: var(--blue);
    }

    .tab-btn::after {
        content: "";
        position: absolute;
        bottom: -2px;
        left: 0;
        width: 0;
        height: 3px;
        background: var(--accent);
        transition: width 0.3s ease;
    }

    .tab-btn.active::after {
        width: 100%;
    }

.tab-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

    .tab-content.active {
        display: block;
    }

    .tab-content p {
        color: var(--gray);
        margin-bottom: 1.5rem;
        line-height: 1.8;
        font-size: 1.05rem;
    }

    .tab-content h3 {
        font-family: "DM Serif Display", serif;
        font-size: 1.8rem;
        color: var(--blue);
        margin-bottom: 1.5rem;
    }

.credentials-list {
    list-style: none;
}

    .credentials-list li {
        display: flex;
        gap: 1.5rem;
        align-items: flex-start;
        margin-bottom: 1.5rem;
        padding-bottom: 1.5rem;
        border-bottom: 1px solid var(--off-white);
    }

    .credentials-list i {
        color: var(--white);
        background: var(--blue-mid);
        width: 45px;
        height: 45px;
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.2rem;
    }

    .credentials-list strong {
        display: block;
        color: var(--charcoal);
        font-size: 1.15rem;
        margin-bottom: 0.3rem;
    }

.blog-page-wrapper {
    padding: 8rem 5vw;
    background: var(--cream);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.blog-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.04);
    box-shadow: 0 4px 20px rgba(0,0,0,0.02);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
}

    .blog-card:hover {
        transform: translateY(-8px);
        box-shadow: var(--shadow-md);
    }

.blog-thumb {
    aspect-ratio: 16/10;
    overflow: hidden;
    position: relative;
}

    .blog-thumb img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.6s;
    }

.blog-card:hover .blog-thumb img {
    transform: scale(1.06);
}

.blog-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--blue);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.blog-body {
    padding: 1.8rem 1.8rem 1rem;
    flex-grow: 1;
}

.blog-meta {
    display: flex;
    gap: 1.2rem;
    margin-bottom: 0.8rem;
    font-size: 0.75rem;
    color: var(--gray);
}

    .blog-meta i {
        margin-right: 0.3rem;
        color: var(--blue-light);
    }

.blog-body h3 {
    font-family: "DM Serif Display", serif;
    font-size: 1.3rem;
    line-height: 1.4;
    color: var(--charcoal);
    margin-bottom: 0.8rem;
    transition: color 0.3s;
    cursor: pointer;
}

.blog-card:hover .blog-body h3 {
    color: var(--blue-mid);
}

.blog-body p {
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.6;
}

.blog-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 1.8rem;
    border-top: 1px solid var(--off-white);
}

.blog-author {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

    .blog-author img {
        width: 32px;
        height: 32px;
        border-radius: 50%;
        object-fit: cover;
    }

.blog-author-name {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--charcoal);
}

.blog-date {
    font-size: 0.75rem;
    color: var(--gray);
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 4rem;
}

.page-num {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--gray-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gray);
    cursor: pointer;
    transition: all 0.3s;
}

    .page-num:hover, .page-num.active {
        background: var(--blue);
        color: white;
        border-color: var(--blue);
    }

.blog-post-header {
    background: linear-gradient(135deg, var(--blue) 0%, var(--blue-mid) 100%);
    padding: 6rem 5vw;
    text-align: center;
    color: white;
}

.blog-tag-top {
    background: var(--accent);
    color: var(--charcoal);
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.blog-post-header h1 {
    font-family: "DM Serif Display", serif;
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    max-width: 900px;
    margin: 0 auto 1.5rem;
    line-height: 1.15;
}

.blog-post-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
}

    .blog-post-meta .author-info {
        display: flex;
        align-items: center;
        gap: 0.75rem;
    }

.author-info img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info strong {
    color: white;
    font-weight: 600;
}

.blog-post-content {
    padding: 5rem 5vw;
    background: var(--white);
}

.article-container {
    max-width: 800px;
    margin: 0 auto;
}

.article-featured-img {
    width: 100%;
    height: auto;
    max-height: 450px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    margin-bottom: 3.5rem;
}

.article-body p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--gray);
    margin-bottom: 1.5rem;
}

.article-body h2 {
    font-family: "DM Serif Display", serif;
    font-size: 2rem;
    color: var(--charcoal);
    margin: 3rem 0 1.5rem;
}

.article-body ul {
    margin-bottom: 2rem;
    padding-left: 1.5rem;
}

.article-body li {
    font-size: 1.05rem;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 0.8rem;
}

.article-body blockquote {
    background: var(--blue-pale);
    border-left: 4px solid var(--blue-light);
    padding: 2.5rem;
    margin: 3rem 0;
    font-family: "Fraunces", serif;
    font-style: italic;
    font-size: 1.3rem;
    color: var(--blue-mid);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    line-height: 1.6;
}

.article-author-box {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    background: var(--off-white);
    padding: 2rem;
    border-radius: var(--radius);
    margin-top: 4rem;
}

    .article-author-box img {
        width: 70px;
        height: 70px;
        border-radius: 50%;
        object-fit: cover;
    }

    .article-author-box h4 {
        font-size: 1.1rem;
        color: var(--charcoal);
        margin-bottom: 0.3rem;
    }

    .article-author-box p {
        font-size: 0.9rem;
        color: var(--gray);
        margin: 0;
        line-height: 1.6;
    }

.contact {
    padding: 7rem 5vw;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.contact-row {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.contact-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    flex-shrink: 0;
    background: var(--blue-pale);
    color: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.contact-row h4 {
    font-size: .7rem;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--blue-mid);
    margin-bottom: .3rem;
}

.contact-row p {
    font-size: .95rem;
    color: var(--gray);
    line-height: 1.6;
}

.contact-map {
    margin-top: 2rem;
    border-radius: var(--radius);
    overflow: hidden;
    height: 200px;
}

    .contact-map img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.contact-form-wrap {
    background: var(--white);
    border-radius: var(--radius);
    padding: 2.5rem;
    border: 1px solid rgba(0,0,0,.05);
    box-shadow: var(--shadow-sm);
}

    .contact-form-wrap h3 {
        font-family: "DM Serif Display",serif;
        font-size: 1.5rem;
        color: var(--charcoal);
        margin-bottom: .5rem;
    }

    .contact-form-wrap .sub {
        font-size: .88rem;
        color: var(--gray);
        margin-bottom: 2rem;
    }

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 0;
}

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

    .form-group label {
        display: block;
        font-size: .68rem;
        font-weight: 600;
        letter-spacing: .08em;
        text-transform: uppercase;
        color: var(--blue);
        margin-bottom: .4rem;
    }

    .form-group input, .form-group select, .form-group textarea {
        width: 100%;
        padding: .8rem 1rem;
        background: var(--off-white);
        border: 1.5px solid transparent;
        border-radius: var(--radius-sm);
        font-family: "Outfit",sans-serif;
        font-size: .88rem;
        color: var(--charcoal);
        outline: none;
        transition: all .3s;
    }

        .form-group input:focus, .form-group select:focus, .form-group textarea:focus {
            border-color: var(--blue-light);
            box-shadow: 0 0 0 3px rgba(14,165,233,.1);
            background: var(--white);
        }

    .form-group textarea {
        resize: none;
        height: 100px;
    }

    .form-group select {
        cursor: pointer;
        appearance: none;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%2364748B' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: right 14px center;
    }

.btn-submit {
    width: 100%;
    background: var(--blue);
    color: #fff;
    border: none;
    padding: 1rem;
    border-radius: var(--radius-sm);
    font-family: "Outfit",sans-serif;
    font-size: .82rem;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all .35s;
    margin-top: .5rem;
}

    .btn-submit:hover {
        background: var(--blue-mid);
        box-shadow: 0 8px 25px rgba(12,74,110,.2);
    }

.page-header-about .section-tag.tag-light {
    color: var(--accent-light);
    border: none;
}

.locations-section {
    padding: 8rem 5vw;
    background: var(--cream);
}

.locations-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.location-card .service-img {
    height: 250px;
}

.location-card .service-body {
    padding: 2.5rem;
}

.location-card h3 {
    font-family: "DM Serif Display", serif;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.location-card p {
    margin-bottom: 0.5rem;
    color: var(--gray);
}

    .location-card p.contact-line-last {
        margin-bottom: 2rem;
    }

.location-card i {
    color: var(--blue);
    width: 20px;
}

.location-card .btn-outline {
    width: 100%;
}

.delay-1 {
    transition-delay: 0.1s;
}

.site-footer {
    background: #0f172a;
    color: #94a3b8;
    padding: 6rem 5vw 2rem;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.4fr 0.7fr 0.7fr 1.0fr 0fr;
    gap: 4rem;
    margin-bottom: 2rem;
}

.footer-brand .logo {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.footer-social-icons {
    display: flex;
    gap: 1rem;
}

    .footer-social-icons a {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.05);
        color: white;
        display: flex;
        align-items: center;
        justify-content: center;
    }

.footer-col h4 {
    color: var(--blue-vivid);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 1.8rem;
}

.footer-col ul {
    list-style: none;
    margin:0;
}

    .footer-col ul li {
        margin-bottom: 0.8rem;
    }

        .footer-col ul li a {
            font-size: 0.95rem;
            color: #cbd5e1;
        }

.newsletter-box {
    display: flex;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50px;
    padding: 4px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

    .newsletter-box input {
        background: transparent;
        border: none;
        padding: 0.8rem 1.5rem;
        color: white;
        flex: 1;
        outline: none;
    }

    .newsletter-box button {
        background: var(--accent);
        color: #0f172a;
        border: none;
        padding: 0.8rem 1.8rem;
        border-radius: 50px;
        font-weight: 700;
        cursor: pointer;
    }

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all .7s cubic-bezier(.25,.46,.45,.94);
}

    .reveal.visible {
        opacity: 1;
        transform: translateY(0);
    }

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    z-index: 200;
    background: none;
    border: none;
}

    .hamburger span {
        display: block;
        width: 24px;
        height: 2.5px;
        background: var(--charcoal);
        border-radius: 2px;
        transition: all .35s cubic-bezier(.4,0,.2,1);
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px,5px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
        transform: translateX(-10px);
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px,-5px);
    }

.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    height: 100vh;
    background: var(--white);
    z-index: 150;
    padding: 6rem 2.5rem 2rem;
    transition: right .4s cubic-bezier(.4,0,.2,1);
    box-shadow: -10px 0 60px rgba(0,0,0,.1);
    overflow-y: auto;
}

    .mobile-nav.open {
        right: 0;
    }

.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15,23,42,.4);
    z-index: 140;
    opacity: 0;
    visibility: hidden;
    transition: all .3s;
}

    .mobile-overlay.open {
        opacity: 1;
        visibility: visible;
    }

.mobile-nav ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0;
}

    .mobile-nav ul li a, .mobile-nav ul li .mob-dropdown-trigger {
        display: block;
        padding: 1rem 0;
        font-size: 1.05rem;
        font-weight: 500;
        color: var(--charcoal);
        border-bottom: 1px solid var(--off-white);
        transition: color .3s;
        cursor: pointer;
    }

        .mobile-nav ul li a:hover, .mobile-nav ul li .mob-dropdown-trigger:hover {
            color: var(--blue);
        }

.mob-dropdown {
    display: none;
    padding-left: 1.2rem;
}

    .mob-dropdown.open {
        display: block;
    }

    .mob-dropdown a {
        font-size: .95rem !important;
        color: var(--gray) !important;
        border-bottom: 1px solid rgba(0,0,0,.03) !important;
    }

.mobile-nav .btn-book {
    width: 100%;
    margin: 2rem 0 0;
    padding: 1rem;
    font-size: .85rem;
    text-align: center;
    display: block;
}

.faq-wrapper {
    padding: 8rem 5vw;
    background: var(--cream);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-category {
    margin-bottom: 3rem;
}

.faq-category-title {
    font-family: "DM Serif Display",serif;
    font-size: 1.6rem;
    color: var(--blue);
    margin-bottom: 1.5rem;
    padding-bottom: .75rem;
    border-bottom: 2px solid var(--blue-pale);
}

.faq-item {
    background: var(--white);
    border-radius: var(--radius-sm);
    margin-bottom: .75rem;
    border: 1px solid rgba(0,0,0,.04);
    overflow: hidden;
    transition: box-shadow .3s;
}

    .faq-item:hover {
        box-shadow: var(--shadow-sm);
    }

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.4rem 1.8rem;
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    color: var(--charcoal);
    transition: color .3s;
    gap: 1rem;
}

    .faq-question:hover {
        color: var(--blue);
    }

    .faq-question i {
        font-size: .7rem;
        color: var(--gray-light);
        transition: transform .3s;
        flex-shrink: 0;
    }

.faq-item.open .faq-question i {
    transform: rotate(180deg);
    color: var(--blue);
}

.faq-item.open .faq-question {
    color: var(--blue);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease,padding .4s ease;
    padding: 0 1.8rem;
}

.faq-item.open .faq-answer {
    max-height: 300px;
    padding: 0 1.8rem 1.5rem;
}

.faq-answer p {
    font-size: .95rem;
    color: var(--gray);
    line-height: 1.8;
}

.resources-wrapper {
    padding: 8rem 5vw;
    background: var(--cream);
}

.resources-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1100px;
    margin: 0 auto;
}

.resource-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 3rem;
    box-shadow: 0 4px 20px rgba(0,0,0,.02);
    border: 1px solid rgba(0,0,0,.04);
    transition: all .4s;
}

    .resource-card:hover {
        transform: translateY(-6px);
        box-shadow: var(--shadow-md);
    }

    .resource-card .card-icon {
        width: 65px;
        height: 65px;
        border-radius: 18px;
        background: var(--blue-pale);
        color: var(--blue);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .resource-card h3 {
        font-family: "DM Serif Display",serif;
        font-size: 1.4rem;
        color: var(--charcoal);
        margin-bottom: 1rem;
    }

    .resource-card p {
        font-size: .95rem;
        color: var(--gray);
        line-height: 1.8;
        margin-bottom: 1rem;
    }

    .resource-card ul {
        list-style: none;
        margin-bottom: 1.5rem;
    }

        .resource-card ul li {
            padding: .5rem 0;
            font-size: .9rem;
            color: var(--gray);
            border-bottom: 1px solid var(--off-white);
            display: flex;
            align-items: center;
            gap: .6rem;
        }

            .resource-card ul li i {
                color: var(--blue-light);
                font-size: .7rem;
            }

.insurance-logos {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.insurance-logo {
    background: var(--off-white);
    padding: .8rem 1.5rem;
    border-radius: var(--radius-sm);
    font-size: .8rem;
    font-weight: 600;
    color: var(--gray);
    letter-spacing: .05em;
    transition: all .3s;
}

    .insurance-logo:hover {
        background: var(--blue-pale);
        color: var(--blue);
    }

.patient-form-section {
    padding: 0 5vw 8rem;
    background: var(--cream);
}

.patient-form-card {
    max-width: 700px;
    margin: 0 auto;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 3.5rem;
    box-shadow: var(--shadow-md);
}

.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--blue);
    color: white;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all .3s;
    z-index: 90;
    box-shadow: 0 4px 20px rgba(12,74,110,.3);
}

    .back-to-top.visible {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .back-to-top:hover {
        background: var(--blue-mid);
        transform: translateY(-2px);
    }

.location-wrapper {
    padding: 7rem 5vw;
    background: var(--cream);
}

.location-grid {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto 4rem;
}

.location-pane {
    background: var(--white);
    padding: 3.5rem;
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 40px rgba(0,0,0,.03);
    border: 1px solid rgba(0,0,0,.02);
    display: flex;
    flex-direction: column;
}

.pane-title {
    font-family: "DM Serif Display",serif;
    font-size: 2.2rem;
    color: var(--charcoal);
    margin-bottom: 2.5rem;
}

    .pane-title em {
        font-family: "Fraunces",serif;
        font-style: italic;
        color: var(--blue-mid);
        font-weight: 300;
    }

.contact-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-item {
    display: flex;
    gap: 1.2rem;
    align-items: flex-start;
}

.contact-text h4 {
    font-size: 1rem;
    color: var(--charcoal);
    margin-bottom: .3rem;
}

.contact-text p {
    font-size: .95rem;
    color: var(--gray);
    line-height: 1.6;
}

.booking-divider {
    border: none;
    border-top: 1px solid var(--off-white);
    margin: 0 0 2rem 0;
}

.btn-book-wide {
    width: 100%;
    background: var(--accent);
    color: var(--charcoal);
    border: none;
    padding: 1.2rem;
    border-radius: 50px;
    font-family: "Outfit",sans-serif;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: .05em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all .3s;
    box-shadow: 0 10px 25px rgba(245,158,11,.25);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: .8rem;
}

    .btn-book-wide:hover {
        background: var(--accent-light);
        transform: translateY(-2px);
    }

.rating-score {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

    .rating-score .num {
        font-family: "DM Serif Display",serif;
        font-size: 4rem;
        color: var(--blue);
        line-height: 1;
    }

    .rating-score .stars i {
        color: var(--accent);
        font-size: 1.2rem;
    }

    .rating-score .label {
        font-size: .85rem;
        color: var(--gray);
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: .1em;
        margin-top: .4rem;
    }

.review-snippet {
    background: var(--off-white);
    padding: 1.5rem;
    border-radius: var(--radius);
    margin-bottom: 1.5rem;
}

    .review-snippet p {
        font-size: .95rem;
        color: var(--charcoal);
        font-style: italic;
        margin-bottom: .8rem;
    }

.review-author {
    font-size: .8rem;
    font-weight: 600;
    color: var(--gray);
}

.map-pane {
    max-width: 1200px;
    margin: 0 auto;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    height: 450px;
    border: 8px solid var(--white);
}

@media (max-width:1024px) {
    .stats {
        grid-template-columns: repeat(2,1fr);
    }

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

    .cta-banner {
        grid-template-columns: 1fr;
    }

    .profile-hero {
        grid-template-columns: 1fr;
        padding-top: 4rem;
    }

    .profile-image-wrap {
        max-width: 450px;
        margin: 0 auto;
    }

    .tab-container {
        padding: 2rem;
    }

    .tab-header {
        gap: 1.5rem;
        overflow-x: auto;
        white-space: nowrap;
        padding-bottom: 0.5rem;
    }

    .hero, .founder-section, .contact-container {
        grid-template-columns: 1fr;
    }

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

    .hero {
        grid-template-columns: 1fr;
        min-height: auto;
        padding: 5rem 5vw 3rem;
    }

    .hero-visual {
        max-width: 480px;
        margin: 0 auto;
    }

    .about {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

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

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

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

    .contact {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .cta-banner-img {
        min-height: 240px;
    }
}

@media (max-width:768px) {
    .workflow-grid::before {
        display: none;
    }

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

    .blog-post-meta {
        flex-direction: column;
        gap: 1rem;
    }

    .article-author-box {
        flex-direction: column;
        text-align: center;
    }

    .topbar, .nav-links {
        display: none;
    }

    .footer-top {
        grid-template-columns: 1fr;
    }

    .topbar {
        display: none;
    }

    .nav-links {
        display: none;
    }

    .nav-right .auth, .nav-right span {
        display: none;
    }

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

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

    .about-features {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .trust-strip {
        gap: 1.5rem;
    }

    .blog-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .hamburger {
        display: flex;
    }

    .nav-right .btn-book {
        display: none;
    }

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

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

    .location-pane {
        padding: 2.5rem;
    }
}
