/* =========================================
   VARIABLES & DESIGN TOKENS
   ========================================= */
:root {
    /* Color Palette */
    --color-midnight: #0b192c; /* Deep Navy */
    --color-midnight-light: #162b47;
    --color-beige: #ffffff; /* Soft Blue / Warm White */
    --color-beige-dark: #f4f7fb;
    --color-gold: #256fa8; /* Dark Blue */
    --color-gold-light: #5dadee;
    --color-text: #2c313a;
    --color-text-light: #5a6473;
    --color-white: #ffffff;
    
    /* Typography */
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Inter', sans-serif;
    
    /* Spacing & Layout */
    --container-max-width: 1200px;
    --section-padding: 3rem 0; /* Reduced from 4rem */
    
    /* Effects */
    --shadow-soft: 0 10px 40px rgba(11, 25, 44, 0.08);
    --shadow-hover: 0 20px 50px rgba(11, 25, 44, 0.12);
    --border-radius-lg: 16px;
    --border-radius-md: 12px;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* =========================================
   RESET & GLOBAL STYLES
   ========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: var(--font-sans);
    color: var(--color-text);
    background-color: var(--color-beige);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    font-weight: 600;
    line-height: 1.2;
    color: var(--color-midnight);
}

p {
    margin-bottom: 1rem;
    color: var(--color-text-light);
}

a {
    text-decoration: none;
    color: var(--color-midnight);
    transition: var(--transition);
}

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

.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 2rem;
}

/* =========================================
   UTILITIES
   ========================================= */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-family: var(--font-sans);
    font-weight: 500;
    font-size: 1rem;
    text-align: center;
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--color-gold);
    color: var(--color-white);
    box-shadow: 0 4px 15px rgba(37, 111, 168, 0.3);
}

.btn-primary:hover {
    background-color: var(--color-gold-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 111, 168, 0.4);
    color: var(--color-midnight);
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-midnight);
    border-color: var(--color-midnight);
}

.btn-secondary:hover {
    background-color: var(--color-midnight);
    color: var(--color-white);
}

.btn-sm {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
}

/* .section-header, .section-header.center, .eyebrow, .section-title, .section-subtitle
   ── now managed via Tailwind @apply in index.html <style type="text/tailwindcss"> ── */

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

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

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }

/* =========================================
   NAVIGATION — PRESTIGE EDITORIAL
   ========================================= */
.navbar {
    position: fixed;
    top: 1.25rem;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 3rem);
    max-width: 1220px;
    z-index: 1000;
    padding: 0.5rem 0;
    border-radius: 100px;
    /* Transparent dark glass over hero */
    background: rgba(11,25,44,0.18);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.10);
    transition: all 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Gold hairline hint at bottom edge */
.navbar::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 15%;
    right: 15%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(37,111,168,0.35), transparent);
    border-radius: 1px;
    transition: opacity 0.4s ease;
}

/* ── Scrolled state: warm ivory glass ── */
.navbar.scrolled {
    top: 0.85rem;
    background: rgba(255,255,255,0.94);
    backdrop-filter: blur(22px) saturate(180%);
    -webkit-backdrop-filter: blur(22px) saturate(180%);
    border: 1px solid rgba(37,111,168,0.18);
    box-shadow: 0 8px 36px rgba(11,25,44,0.10), 0 1px 0 rgba(37,111,168,0.12);
    padding: 0.4rem 0;
}

.navbar.scrolled::after {
    opacity: 0; /* remove bottom hairline on scroll — the border takes over */
}

/* ── Layout ── */
.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

/* ── Logo ── */
.logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;
    flex-shrink: 0;
}

/* Logo Styles */
.logo-main, .logo-white {
    height: 70px;
    width: auto;
    transition: opacity 0.4s ease;
}

.footer-logo {
    height: 60px;
    width: auto;
}

.navbar.scrolled .logo-white {
    display: none !important;
}

.navbar.scrolled .logo-main {
    display: block !important;
}

.navbar:not(.scrolled) .logo-main {
    display: none !important;
}

.navbar:not(.scrolled) .logo-white {
    display: block !important;
}

/* ── Nav links ── */
.nav-links {
    display: flex;
    align-items: center;
    gap: 2.25rem;
}

.nav-link {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.10em;
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    transition: color 0.3s ease;
}

/* Underline slides in from centre */
.nav-link:not(.dropbtn)::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 50%;
    right: 50%;
    height: 1.5px;
    background: var(--color-gold);
    border-radius: 1px;
    transition: left 0.3s ease, right 0.3s ease;
}

.nav-link:not(.dropbtn):hover::after {
    left: 0;
    right: 0;
}

.nav-link:hover { color: rgba(255,255,255,1); }

/* Dropdown chevron */
.drop-chevron {
    width: 14px;
    height: 14px;
    transition: transform 0.25s ease;
    opacity: 0.7;
}

.dropdown:hover .drop-chevron { transform: rotate(180deg); }

/* Scrolled link colours */
.navbar.scrolled .nav-link {
    color: var(--color-midnight-light);
}

.navbar.scrolled .nav-link:hover {
    color: var(--color-midnight);
}

/* ── Dropdown panel ── */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: block;
    position: absolute;
    top: calc(100% + 14px);
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    min-width: 260px;
    background: rgba(8,18,34,0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(37,111,168,0.2);
    border-radius: 16px;
    padding: 0.6rem;
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
    box-shadow: 0 24px 60px rgba(0,0,0,0.45), 0 0 0 1px rgba(255,255,255,0.04);
    overflow: hidden;
}

.dropdown-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 1rem;
    right: 1rem;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-gold), var(--color-gold-light), transparent);
}

.dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

/* Dropdown items */
.dropdown-content a {
    display: flex !important;
    align-items: center;
    gap: 0.75rem;
    padding: 0.7rem 0.85rem !important;
    color: rgba(255,255,255,0.65) !important;
    font-size: 0.85rem !important;
    font-weight: 500;
    border-radius: 10px;
    text-transform: none !important;
    letter-spacing: 0 !important;
    text-decoration: none;
    border-left: 2px solid transparent;
    transition: all 0.18s ease;
}

.dropdown-content a:hover {
    background: rgba(37,111,168,0.10) !important;
    color: white !important;
    border-left-color: var(--color-gold) !important;
    padding-left: 1.1rem !important;
    transform: none !important;
}

.dropdown-content a::after {
    display: none !important;
}

/* Icon inside dropdown item */
.dd-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background: rgba(37,111,168,0.10);
    border: 1px solid rgba(37,111,168,0.22);
    border-radius: 8px;
    flex-shrink: 0;
    transition: background 0.18s ease, border-color 0.18s ease;
}

.dropdown-content a:hover .dd-icon {
    background: rgba(37,111,168,0.22);
    border-color: rgba(37,111,168,0.4);
}

.dd-icon svg {
    width: 14px;
    height: 14px;
    color: var(--color-gold);
}

/* Dropdown item sub-label */
.dd-label {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.dd-label-sub {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.3);
    font-weight: 400;
    line-height: 1;
}

/* ── Mega Menu panel ── */
.mega-menu {
    display: grid;
    grid-template-columns: 210px 1fr 1fr 190px;
    gap: 0;
    position: absolute;
    top: calc(100% + 18px);
    left: 50%;
    transform: translateX(-28%) translateY(12px);
    width: 860px;
    background: rgba(8,18,34,0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(37,111,168,0.2);
    border-radius: 18px;
    overflow: hidden;
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.28s ease, transform 0.28s ease, visibility 0.28s ease;
    box-shadow: 0 24px 60px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.04);
}

/* ── Mega Feature Sidebar ── */
.mega-feature {
    background: linear-gradient(160deg, #102236 0%, #060f1e 100%);
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    border-right: 1px solid rgba(37,111,168,0.14);
    position: relative;
    overflow: hidden;
}

.mega-feature::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -20%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(37,111,168,0.16) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.mega-feature::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-gold), var(--color-gold-light));
}

.mega-feature-eyebrow {
    font-family: var(--font-sans);
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--color-gold);
    margin-bottom: 0.9rem;
    display: block;
}

.mega-feature-title {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    font-weight: 700;
    font-style: italic;
    color: white;
    line-height: 1.25;
    margin-bottom: 0.85rem;
}

.mega-feature-desc {
    font-size: 0.77rem;
    line-height: 1.65;
    color: rgba(255,255,255,0.45);
    flex: 1;
    margin-bottom: 1.5rem;
}

.mega-feature-cta {
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.4rem !important;
    font-size: 0.73rem !important;
    font-weight: 600 !important;
    color: var(--color-gold-light) !important;
    padding: 0.5rem 0.9rem !important;
    background: rgba(37,111,168,0.15) !important;
    border: 1px solid rgba(37,111,168,0.28) !important;
    border-radius: 999px !important;
    transition: all 0.2s ease !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
    width: fit-content;
    border-left: 1px solid rgba(37,111,168,0.28) !important;
    margin: 0 !important;
}

.mega-feature-cta:hover {
    background: rgba(37,111,168,0.28) !important;
    color: white !important;
    padding-left: 0.9rem !important;
    border-left-color: rgba(37,111,168,0.28) !important;
}

/* ── Mobile Navigation Overlay ── */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 32px;
    height: 24px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 2100;
}

.mobile-menu-btn .bar {
    width: 100%;
    height: 2px;
    background-color: var(--color-white);
    transition: all 0.3s ease;
}

.navbar.scrolled .mobile-menu-btn .bar {
    background-color: var(--color-midnight);
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 100%;
    width: 100%;
    height: 100vh;
    background: var(--color-midnight);
    z-index: 2000;
    transition: left 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    overflow-y: auto;
    padding-top: 7.5rem;
}

@media (max-width: 991px) {
    .mobile-menu-btn {
        display: flex;
    }
    .mobile-nav {
        display: block;
    }
}

.mobile-nav.active {
    left: 0;
}

.mobile-nav-content {
    padding: 2rem 1.5rem;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.mobile-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    color: var(--color-white);
    font-family: var(--font-sans);
    font-size: 1.15rem;
    font-weight: 500;
    text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    background: none;
    border-left: none;
    border-right: none;
    border-top: none;
    width: 100%;
    text-align: left;
    cursor: pointer;
}

.mobile-link .chevron {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
    opacity: 0.5;
}

.mobile-accordion.active .chevron {
    transform: rotate(180deg);
}

.accordion-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    background: rgba(255,255,255,0.02);
}

.mobile-accordion.active .accordion-panel {
    max-height: 2000px; /* Large enough for content */
}

.accordion-panel a {
    display: block;
    padding: 0.75rem 1rem;
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

.mobile-sub-group {
    padding: 1rem 0;
}

.sub-group-title {
    display: block;
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-gold);
}

.mobile-nav-cta {
    margin-top: 2rem;
}

/* Hamburger active state */
.mobile-menu-btn.active .bar:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
}
.mobile-menu-btn.active .bar:nth-child(2) {
    opacity: 0;
}
.mobile-menu-btn.active .bar:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
}

.dropdown:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-28%) translateY(0);
}

.mega-column {
    display: flex;
    flex-direction: column;
    padding: 1.75rem 1.25rem;
    border-right: 1px solid rgba(255,255,255,0.04);
}

.mega-column:last-child {
    border-right: none;
    background: rgba(0,0,0,0.12);
}

/* Column header: icon + label */
.mega-col-header {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 1.1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.mega-col-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    background: rgba(37,111,168,0.12);
    border: 1px solid rgba(37,111,168,0.22);
    border-radius: 7px;
    flex-shrink: 0;
}

.mega-col-icon svg {
    width: 13px;
    height: 13px;
    stroke: var(--color-gold);
    fill: none;
}

.mega-heading {
    font-family: var(--font-sans);
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--color-gold);
    margin: 0;
    padding: 0;
    border: none;
    display: block;
}

/* ── Pending / Coming Soon Links ── */
.pending-link {
    opacity: 0.4 !important;
    cursor: default !important;
    pointer-events: none !important;
    filter: grayscale(0.6);
}

.pending-link:hover {
    color: inherit !important;
    background: none !important;
    padding-left: inherit !important;
}

.mega-menu a {
    display: flex !important;
    align-items: center;
    gap: 0.55rem;
    padding: 0.42rem 0.65rem !important;
    margin: 0 -0.65rem !important;
    color: rgba(255,255,255,0.6) !important;
    font-size: 0.83rem !important;
    font-weight: 500;
    border-radius: 8px;
    text-transform: none !important;
    letter-spacing: 0 !important;
    text-decoration: none;
    border-left: 2px solid transparent;
    transition: all 0.18s ease;
}

.mega-menu a:hover {
    color: white !important;
    background: rgba(37,111,168,0.1) !important;
    padding-left: 1rem !important;
    border-left-color: var(--color-gold) !important;
}

.mega-menu a::after {
    display: none !important;
}

/* Overview link pinned at top of a column */
.mega-link-overview {
    color: rgba(255,255,255,0.9) !important;
    font-weight: 600 !important;
    margin-bottom: 0.35rem !important;
    padding-bottom: 0.6rem !important;
    border-bottom: 1px solid rgba(255,255,255,0.06) !important;
    border-left: 2px solid var(--color-gold) !important;
    border-radius: 0 !important;
    padding-left: 0.65rem !important;
}

.mega-link-overview:hover {
    padding-left: 0.85rem !important;
    background: rgba(37,111,168,0.08) !important;
}

/* Treatment cards (Spravato / Ketamine) */
.mega-treatment-card {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 0.25rem !important;
    padding: 0.85rem 0.9rem !important;
    margin: 0 0 0.5rem !important;
    border-radius: 10px !important;
    border: 1px solid rgba(37,111,168,0.14) !important;
    background: rgba(37,111,168,0.05) !important;
    border-left: 2px solid transparent !important;
    transition: all 0.2s ease !important;
}

.mega-treatment-card:hover {
    background: rgba(37,111,168,0.12) !important;
    border-left-color: var(--color-gold) !important;
    padding-left: 1rem !important;
}

.mega-treatment-title {
    font-size: 0.83rem;
    font-weight: 600;
    color: white;
    display: block;
}

.mega-treatment-desc {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.38);
    display: block;
    line-height: 1.45;
    font-weight: 400;
}

/* ── Nav CTA button ── */
.nav-cta {
    padding: 0.7rem 1.5rem !important;
    font-size: 0.78rem !important;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.navbar.scrolled .nav-cta {
    background: var(--color-gold);
}

/* ── Mobile hamburger ── */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 26px;
    height: 18px;
    cursor: pointer;
    z-index: 1002;
    position: relative;
}

.bar {
    width: 100%;
    height: 2px;
    background: var(--color-white);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Last bar shorter — asymmetric detail */
.bar:nth-child(3) { width: 65%; }

.navbar.scrolled .bar { background: var(--color-midnight); }

.mobile-menu-btn.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
    background: var(--color-white);
    width: 100%;
}
.mobile-menu-btn.active .bar:nth-child(2) { opacity: 0; }
.mobile-menu-btn.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
    background: var(--color-white);
    width: 100%;
}

/* ── Mobile full-screen menu ── */
@media (max-width: 991px) {
    .mobile-menu-btn { display: flex; }

    /* Relative dropdown panel */
    .nav-links {
        position: absolute;
        top: calc(100% + 1rem);
        left: 0;
        width: 100%;
        background: rgba(10,22,40,0.98);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        border: 1px solid rgba(37,111,168,0.2);
        border-radius: 16px;
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        overflow-y: auto;
        max-height: calc(100vh - 6rem);
        padding: 1.5rem;
        gap: 0;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: all 0.3s ease;
        box-shadow: 0 20px 50px rgba(0,0,0,0.5);
        z-index: 1001;
    }

    /* Gold hairline removed - using border instead */
    .nav-links::before {
        display: none;
    }

    .nav-links.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    /* Top-level links — large italic serif */
    .nav-link {
        font-family: var(--font-serif);
        font-size: 1.75rem;
        font-weight: 700;
        font-style: italic;
        letter-spacing: -0.3px;
        text-transform: none;
        color: rgba(255,255,255,0.85);
        padding: 0.8rem 0;
        text-align: left;
        border-bottom: 1px solid rgba(37,111,168,0.12);
        display: block;
        width: 100%;
    }

    .nav-link:not(.dropbtn)::after { display: none; }
    .nav-link:hover { color: var(--color-gold-light); }
    .drop-chevron { display: none; }

    /* ── Show dropdown groups inline — no hide ── */
    .nav-links .dropdown {
        display: block;
        width: 100%;
        border-bottom: 1px solid rgba(37,111,168,0.12);
    }

    /* Category label (the .dropbtn) loses its own bottom border since the dropdown handles it */
    .nav-links .dropdown .nav-link {
        border-bottom: none;
        padding-bottom: 0.4rem;
    }

    /* Dropdown items — always expanded, static layout */
    .dropdown-content {
        position: static !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        background: transparent !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        border: none !important;
        box-shadow: none !important;
        border-radius: 0 !important;
        padding: 0 0 0.75rem 1rem !important;
        min-width: 0 !important;
        overflow: visible !important;
        display: block !important;
    }

    .dropdown-content::before { display: none !important; }

    .dropdown-content a {
        color: rgba(255,255,255,0.45) !important;
        font-family: var(--font-sans) !important;
        font-size: 0.82rem !important;
        font-style: normal !important;
        font-weight: 500 !important;
        letter-spacing: 0.02em !important;
        text-transform: none !important;
        padding: 0.35rem 0 !important;
        border-bottom: none !important;
        border-radius: 0 !important;
        gap: 0.5rem !important;
        background: transparent !important;
    }

    .dropdown-content a:hover {
        color: rgba(37,111,168,0.85) !important;
        background: transparent !important;
        padding-left: 0.25rem !important;
    }

    /* Shrink the icon on mobile */
    .dd-icon {
        width: 18px;
        height: 18px;
        flex-shrink: 0;
    }

    .dd-icon svg { width: 10px; height: 10px; }

    /* CTA button */
    .nav-cta {
        margin-top: 1.5rem;
        width: 100% !important;
        text-align: center;
        background: var(--color-gold) !important;
        color: var(--color-midnight) !important;
        font-size: 0.82rem !important;
        font-weight: 700 !important;
        letter-spacing: 0.1em !important;
    }
}

/* =========================================
   HERO SECTION — PRESTIGE EDITORIAL
   ========================================= */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    flex-direction: column;
    background: var(--color-midnight);
    overflow: hidden;
    padding-top: 5rem; /* nav clearance */
}

/* ── Layered background ── */
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

/* Background video */
.hero-bg-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1;
    pointer-events: none;
}

/* Dark overlay over video */
.hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background: rgba(0, 0, 0, 0.65);
}

/* Gold top hairline — premium frame edge */
.hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg,
        transparent 0%,
        var(--color-gold) 22%,
        var(--color-gold-light) 50%,
        var(--color-gold) 78%,
        transparent 100%);
}

/* ── Two-column split ── */
.hero-split {
    position: relative;
    z-index: 2;
    display: flex;
    flex: 1;
    min-height: calc(100vh - 5rem - 3.5rem);
}

/* ── Left: Content column ── */
.hero-left {
    flex: 0 0 56%;
    display: flex;
    align-items: center;
    padding: 4rem clamp(2rem, 5vw, 5rem) 4rem clamp(2rem, 7vw, 6.5rem);
    position: relative;
}

/* Thin vertical gold accent line */
.hero-left::before {
    content: '';
    position: absolute;
    left: clamp(0.6rem, 2.5vw, 1.5rem);
    top: 18%;
    bottom: 18%;
    width: 2px;
    background: linear-gradient(180deg,
        transparent,
        var(--color-gold) 28%,
        var(--color-gold-light) 72%,
        transparent);
    border-radius: 1px;
}

.hero-content {
    max-width: 850px;
    position: relative;
    z-index: 3;
}

/* Eyebrow */
.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--font-sans);
    font-size: 0.73rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--color-gold-light);
    margin-bottom: 1.75rem;
    opacity: 0.88;
}

.hero-eyebrow-dot {
    display: inline-block;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--color-gold);
    flex-shrink: 0;
    box-shadow: 0 0 8px rgba(37,111,168,0.9);
    animation: pulse-dot 2.5s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1;   box-shadow: 0 0 8px rgba(37,111,168,0.9); }
    50%       { opacity: 0.5; box-shadow: 0 0 3px rgba(37,111,168,0.4); }
}

/* Headline — editorial large serif */
.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(2.8rem, 4.2vw, 5.2rem);
    line-height: 1.05;
    letter-spacing: -1px;
    color: var(--color-white);
    margin: 0 0 1.5rem;
    font-weight: 700;
}

/* Gold italic accent line */
#hero-condition {
    display: inline-block;
    position: relative;
    text-decoration: none;
    color: #5dadee;
}

#hero-condition:hover {
    text-decoration: underline;
    text-underline-offset: 4px;
}

#hero-condition::after {
    content: '|';
    display: inline-block;
    margin-left: 2px;
    animation: cursorBlink 0.7s step-start infinite;
    color: #5dadee;
}

@keyframes cursorBlink {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0; }
}

.hero-title-accent {
    display: block;
    font-style: italic;
    background: linear-gradient(128deg, #ead8b2 0%, #c5a880 45%, #a8855a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Gold rule beneath headline */
.hero-rule {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--color-gold), var(--color-gold-light), transparent);
    border-radius: 1px;
    margin-bottom: 1.75rem;
}

/* Subtitle */
.hero-subtitle {
    font-size: 1.05rem;
    font-weight: 300;
    line-height: 1.85;
    color: rgba(255,255,255,0.60);
    margin-bottom: 2.5rem;
    max-width: 460px;
}

/* CTA row */
.hero-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.hero-actions .btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.hero-actions .btn-ghost svg {
    width: 17px;
    height: 17px;
}

/* Ghost button — light outline for dark hero backgrounds */
.btn-ghost {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-family: var(--font-sans);
    font-weight: 500;
    font-size: 1rem;
    text-align: center;
    cursor: pointer;
    background-color: transparent;
    color: rgba(255,255,255,0.82);
    border: 1.5px solid rgba(255,255,255,0.24);
    transition: var(--transition);
    backdrop-filter: blur(4px);
}

.btn-ghost:hover {
    background-color: rgba(255,255,255,0.07);
    border-color: rgba(255,255,255,0.48);
    color: var(--color-white);
    transform: translateY(-2px);
}

/* Stats row */
.hero-stats {
    display: flex;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(37,111,168,0.17);
}

.hero-stat {
    display: flex;
    flex-direction: column;
    padding-right: 2rem;
}

.hero-stat-num {
    font-family: var(--font-serif);
    font-size: 1.85rem;
    font-weight: 700;
    color: var(--color-white);
    line-height: 1;
    margin-bottom: 0.3rem;
}

.hero-stat-sup {
    font-size: 0.9rem;
    color: var(--color-gold);
    vertical-align: super;
    line-height: 0;
}

.hero-stat-lbl {
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.40);
}

.hero-stat-div {
    width: 1px;
    height: 36px;
    background: rgba(37,111,168,0.22);
    margin: 0 2rem 0 0;
    flex-shrink: 0;
    align-self: center;
}

/* ── Right: Image column ── */
.hero-right {
    flex: 0 0 44%;
    position: relative;
    overflow: hidden;
}

.hero-img-frame {
    position: absolute;
    inset: 0;
}

/* Doctor photo — edge-to-edge cover */
.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

/* Gradient overlays: dark left-edge blend + bottom fade */
.hero-img-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to right,  var(--color-midnight) 0%, rgba(11,25,44,0.55) 32%, transparent 62%),
        linear-gradient(to top, rgba(11,25,44,0.80) 0%, transparent 26%);
    pointer-events: none;
}

/* ── Floating credential card ── */
.hero-cred-card {
    position: absolute;
    bottom: 3rem;
    left: -1.5rem;
    display: flex;
    align-items: center;
    gap: 0.85rem;
    background: rgba(9,21,38,0.82);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(37,111,168,0.26);
    border-radius: 14px;
    padding: 1rem 1.5rem;
    z-index: 5;
    box-shadow: 0 8px 36px rgba(0,0,0,0.32);
}

/* Gold hairline across the card top */
.hero-cred-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 1.5rem;
    right: 1.5rem;
    height: 1.5px;
    background: linear-gradient(90deg, var(--color-gold), var(--color-gold-light), transparent);
    border-radius: 1px;
}

.hero-cred-icon {
    width: 36px;
    height: 36px;
    background: rgba(37,111,168,0.11);
    border: 1px solid rgba(37,111,168,0.30);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hero-cred-icon svg {
    width: 18px;
    height: 18px;
    color: var(--color-gold);
}

.hero-cred-info {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.hero-cred-title {
    font-size: 0.84rem;
    font-weight: 600;
    color: var(--color-white);
    line-height: 1.2;
}

.hero-cred-sub {
    font-size: 0.68rem;
    color: rgba(255,255,255,0.45);
    letter-spacing: 0.02em;
}

/* ── FDA pill tag ── */
.hero-fda-pill {
    position: absolute;
    top: 2rem;
    right: 1.5rem;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(9,21,38,0.74);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(37,111,168,0.30);
    border-radius: 100px;
    padding: 0.42rem 0.95rem;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.11em;
    text-transform: uppercase;
    color: var(--color-gold-light);
    z-index: 5;
}

.hero-fda-pill svg {
    width: 13px;
    height: 13px;
    color: var(--color-gold);
}

/* Vertical doctor name — editorial right-edge detail */
.hero-name-vert {
    position: absolute;
    right: -0.25rem;
    top: 50%;
    transform: translateY(-50%) rotate(90deg);
    transform-origin: center center;
    font-size: 0.58rem;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.18);
    white-space: nowrap;
    z-index: 5;
    pointer-events: none;
}

/* ── Scrolling marquee strip ── */
.hero-marquee {
    position: relative;
    z-index: 3;
    height: 3.5rem;
    background: rgba(37,111,168,0.055);
    border-top: 1px solid rgba(37,111,168,0.16);
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-marquee-track {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    white-space: nowrap;
    animation: hero-marquee-scroll 34s linear infinite;
    will-change: transform;
}

.hero-marquee-track span {
    font-size: 0.66rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(37,111,168,0.52);
    flex-shrink: 0;
}

.mq-dot {
    font-size: 0.38rem !important;
    color: rgba(37,111,168,0.30) !important;
    letter-spacing: 0 !important;
}

@keyframes hero-marquee-scroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* =========================================
   TRUST SECTION — MODERN LUXURY
   ========================================= */
.trust-section {
    padding: var(--section-padding);
    background-color: var(--color-beige);
    position: relative;
}

/* Gold hairline connecting visually to the dark hero above */
.trust-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
}

/* Stats bar */
.trust-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-midnight);
    border-radius: var(--border-radius-lg);
    padding: 2.25rem 3rem;
    margin-bottom: 4rem;
    gap: 0;
    position: relative;
    overflow: hidden;
}

/* Subtle shimmer on stats bar */
.trust-stats::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 100% at 50% 0%, rgba(37, 111, 168, 0.07) 0%, transparent 70%);
    pointer-events: none;
}

.trust-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    gap: 0.4rem;
}

.trust-stat-divider {
    width: 1px;
    height: 44px;
    background: rgba(37, 111, 168, 0.18);
    flex-shrink: 0;
}

.trust-stat-num {
    font-family: var(--font-serif);
    font-size: 2.6rem;
    font-weight: 700;
    color: var(--color-white);
    line-height: 1;
    display: flex;
    align-items: flex-start;
    gap: 2px;
}

.trust-stat-sym {
    color: var(--color-gold);
    font-size: 1.5rem;
    line-height: 1.1;
}

.trust-stat-label {
    font-size: 0.73rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.45);
}

/* Cards */
.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.trust-card {
    background: var(--color-white);
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 2px 24px rgba(11, 25, 44, 0.06);
    text-align: left;
    transition: var(--transition);
    border: 1px solid rgba(11, 25, 44, 0.04);
    border-top: 3px solid var(--color-gold);
    position: relative;
    overflow: hidden;
}

/* Warm wash on hover */
.trust-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(37, 111, 168, 0.04) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.trust-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 52px rgba(11, 25, 44, 0.11);
    border-color: var(--color-gold);
}

.trust-card:hover::after {
    opacity: 1;
}

/* Oversized faded number watermark */
.trust-card-num {
    position: absolute;
    top: 1rem;
    right: 1.25rem;
    font-family: var(--font-serif);
    font-size: 4rem;
    font-weight: 700;
    color: rgba(37, 111, 168, 0.1);
    line-height: 1;
    pointer-events: none;
    user-select: none;
}

/* Square icon with gold tint */
.trust-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, rgba(37, 111, 168, 0.14), rgba(37, 111, 168, 0.04));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 1.5rem;
    border: 1px solid rgba(37, 111, 168, 0.22);
    transition: var(--transition);
}

.trust-card:hover .trust-icon {
    background: linear-gradient(135deg, rgba(37, 111, 168, 0.22), rgba(37, 111, 168, 0.08));
}

.trust-icon svg {
    width: 26px;
    height: 26px;
    color: var(--color-gold);
}

.trust-card h3 {
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
    font-family: var(--font-sans);
    font-weight: 600;
    color: var(--color-midnight);
}

.trust-card p {
    font-size: 0.92rem;
    margin-bottom: 0;
    line-height: 1.65;
}

/* =========================================
   ABOUT SECTION
   ========================================= */
.about-section, .conditions-section {
    padding: var(--section-padding);
}

/* Light luxury override */
.about-section-light {
    background: var(--color-beige);
    position: relative;
    overflow: hidden;
}

/* Faint pearl dot-grid texture */
.about-section-light::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(37,111,168,0.13) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
}

/* Warm ambient radial glow — bottom-right */
.about-section-light::after {
    content: '';
    position: absolute;
    bottom: -120px;
    right: -120px;
    width: 520px;
    height: 520px;
    background: radial-gradient(circle, rgba(37,111,168,0.11) 0%, transparent 68%);
    pointer-events: none;
}

/* .bg-beige-dark — handled by Tailwind custom color config (bg-beige-dark) */

.about-grid, .tms-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* ---------- Image Column ---------- */
.about-image {
    position: relative;
    padding-right: 2.5rem;
    padding-bottom: 2.5rem;
}

/* Warm champagne offset shadow block behind photo */
.about-image::before {
    content: '';
    position: absolute;
    top: 36px;
    right: 0;
    bottom: -14px;
    left: 36px;
    background: linear-gradient(135deg, rgba(37,111,168,0.20) 0%, rgba(214,190,153,0.10) 100%);
    border: 1px solid rgba(37,111,168,0.32);
    border-radius: var(--border-radius-lg);
    z-index: 1;
}

/* Thin gold left-edge accent line */
.about-image::after {
    content: '';
    position: absolute;
    top: 70px;
    left: -6px;
    width: 3px;
    height: 50%;
    background: linear-gradient(180deg, var(--color-gold) 0%, transparent 100%);
    border-radius: 2px;
}

/* Refined image wrapper */
.about-img-frame {
    position: relative;
    z-index: 2;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(11,25,44,0.10), 0 4px 18px rgba(37,111,168,0.14);
}

/* Gold top-edge hairline on the image */
.about-img-frame::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-gold) 0%, var(--color-gold-light) 50%, transparent 100%);
    z-index: 3;
}

.portrait-img {
    display: block;
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    border-radius: var(--border-radius-lg);
}

/* ---------- Experience Badge ---------- */
.experience-badge {
    position: absolute;
    bottom: 38px;
    left: -22px;
    background: var(--color-white);
    border: 1px solid rgba(37,111,168,0.45);
    color: var(--color-midnight);
    padding: 1.25rem 1.75rem;
    border-radius: var(--border-radius-md);
    box-shadow: 0 8px 32px rgba(11,25,44,0.10), 0 2px 8px rgba(37,111,168,0.18);
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Gold hairline along top of badge */
.experience-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: 1.75rem;
    right: 1.75rem;
    height: 2px;
    background: linear-gradient(90deg, var(--color-gold), var(--color-gold-light), transparent);
    border-radius: 1px;
}

.exp-number {
    font-family: var(--font-serif);
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1;
    color: var(--color-gold);
}

.exp-text {
    font-size: 0.8rem;
    font-weight: 600;
    line-height: 1.35;
    color: var(--color-midnight-light);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

/* ---------- Content Column ---------- */
.about-content .eyebrow {
    color: var(--color-gold);
}

/* Gold rule beneath doctor's name */
.about-title-rule {
    width: 56px;
    height: 2px;
    background: linear-gradient(90deg, var(--color-gold), var(--color-gold-light));
    border-radius: 1px;
    margin: 0.75rem 0 1.5rem;
}

/* Credential tag pills */
.about-cred-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    margin-bottom: 1.75rem;
}

.about-cred-tag {
    font-family: var(--font-sans);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-gold);
    border: 1px solid rgba(37,111,168,0.5);
    background: rgba(37,111,168,0.07);
    padding: 0.35rem 0.9rem;
    border-radius: 100px;
    transition: background 0.2s;
}

.about-cred-tag:hover {
    background: rgba(37,111,168,0.14);
}

.lead-text {
    font-size: 1.15rem;
    color: var(--color-midnight);
    font-weight: 500;
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.credentials-list {
    list-style: none;
    margin: 1.5rem 0 2rem;
}

.credentials-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0.65rem 0;
    border-bottom: 1px solid rgba(37,111,168,0.20);
    font-weight: 500;
    color: var(--color-midnight-light);
    font-size: 0.95rem;
}

.credentials-list li:first-child {
    border-top: 1px solid rgba(37,111,168,0.20);
}

.credentials-list svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    color: var(--color-gold);
}

/* .mt-4 — use Tailwind mt-6 (1.5 rem) */

/* =========================================
   TMS THERAPY SECTION — OAK METHOD ACCORDION
   ========================================= */
.tms-section {
    padding: var(--section-padding) 0;
    overflow: hidden;
}

.tms-container {
    max-width: 1300px;
}

.tms-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: flex-start; /* Align to top for sticky image effect */
}

/* --- Left Column: Content --- */
.tms-content {
    padding-right: 1rem;
}

.tms-para {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--color-midnight-light);
    margin-bottom: 3rem;
    max-width: 540px;
}

/* Accordion Styling */
.tms-accordion {
    display: flex;
    flex-direction: column;
    border-top: 1px solid rgba(37, 111, 168, 0.2);
    margin-bottom: 2rem;
}

.accordion-item {
    border-bottom: 1px solid rgba(37, 111, 168, 0.2);
    overflow: hidden;
    transition: background-color 0.3s ease;
}

.accordion-item.active {
    background-color: transparent; /* Keep clean white */
}

.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0.5rem;
    cursor: pointer;
    transition: padding 0.3s ease;
}

.accordion-header h3 {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 500;
    margin: 0;
    color: var(--color-midnight);
    transition: color 0.3s ease;
}

.accordion-item.active .accordion-header h3 {
    color: var(--color-gold-dark);
}

.accordion-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(37, 111, 168, 0.5);
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), color 0.3s ease;
}

.accordion-icon svg {
    width: 16px;
    height: 16px;
}

.accordion-item.active .accordion-icon {
    transform: rotate(45deg);
    color: var(--color-gold);
}

.accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.25, 0.8, 0.25, 1), opacity 0.5s ease;
    opacity: 0;
}

.accordion-item.active .accordion-body {
    max-height: 150px; /* Approximate max height */
    opacity: 1;
}

.accordion-body p {
    padding: 0 0.5rem 1.5rem;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--color-midnight-light);
    max-width: 90%;
}

/* --- Right Column: Clean Image --- */
.tms-image-col {
    position: relative;
    height: 100%;
}

.tms-oak-image {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    border-radius: 4px; /* Minimal radius */
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08); /* Soft shadow */
}

/* =========================================
   OUR MAIN SERVICE SECTION — MODERN LUXURY (LIGHT)
   ========================================= */
.services-section {
    padding: var(--section-padding);
    background-color: var(--color-beige);
    overflow: hidden;
    position: relative;
    color: var(--color-midnight);
}

/* Subtle diagonal line texture - Darker for light bg */
.services-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(
        -45deg,
        rgba(37, 111, 168, 0.05) 0px,
        rgba(37, 111, 168, 0.05) 1px,
        transparent 1px,
        transparent 60px
    );
    pointer-events: none;
}

/* Left gold accent edge */
.services-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(to bottom, transparent, var(--color-gold) 50%, transparent);
    pointer-events: none;
    opacity: 0.6;
}

.bg-teal-dark {
    background-color: var(--color-midnight);
}

.services-container {
    max-width: 1400px;
    padding-right: 0;
    position: relative;
    z-index: 1;
}

.services-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 3.5rem;
    padding-right: 2rem;
}

.services-title-wrapper .section-title {
    margin-bottom: 0.5rem;
    line-height: 1.15;
    color: var(--color-midnight);
}

.services-header-desc {
    font-size: 0.95rem;
    color: var(--color-midnight-light);
    margin-bottom: 0;
    margin-top: 0.75rem;
    max-width: 450px;
}

.btn-white-pill {
    display: none;
}

.services-nav {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    flex-shrink: 0;
}

/* Refined gold circle nav buttons - Darker for light bg */
.nav-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(37, 111, 168, 0.4);
    color: var(--color-midnight);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.nav-btn:hover {
    background-color: var(--color-gold);
    border-color: var(--color-gold);
    color: var(--color-white);
}

.nav-btn svg {
    width: 20px;
    height: 20px;
}

.services-carousel-wrapper {
    position: relative;
    width: 100%;
}

.services-track {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding-bottom: 2rem;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.services-track::-webkit-scrollbar {
    display: none;
}

/* Cards — luxury editorial style */
.service-card {
    flex: 0 0 calc(25% - 1.125rem);
    min-width: 280px;
    scroll-snap-align: start;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 3/4;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
    transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1),
                box-shadow 0.5s cubic-bezier(0.25, 0.8, 0.25, 1),
                border-color 0.3s ease;
    border: 1px solid rgba(37, 111, 168, 0.08);
}

.service-card:hover {
    transform: translateY(-14px);
    box-shadow: 0 35px 65px rgba(0, 0, 0, 0.45);
    border-color: rgba(37, 111, 168, 0.22);
}

.service-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

/* Multi-stop luxury dark overlay */
.service-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(7, 14, 22, 0.96) 0%,
        rgba(7, 14, 22, 0.55) 42%,
        rgba(7, 14, 22, 0.12) 70%,
        transparent 100%
    );
    z-index: 1;
    transition: background 0.5s ease;
}

.service-card:hover .service-overlay {
    background: linear-gradient(
        to top,
        rgba(7, 14, 22, 0.98) 0%,
        rgba(7, 14, 22, 0.72) 50%,
        rgba(7, 14, 22, 0.22) 75%,
        transparent 100%
    );
}

/* Gold glass category tag */
.service-tag {
    position: absolute;
    top: 1.25rem;
    left: 1.25rem;
    background: rgba(11, 25, 44, 0.55);
    border: 1px solid rgba(37, 111, 168, 0.28);
    color: var(--color-gold-light);
    padding: 0.3rem 0.85rem;
    border-radius: 50px;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    z-index: 2;
    backdrop-filter: blur(8px);
}

/* Card content */
.service-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem 1.75rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    z-index: 2;
}

.service-text {
    flex: 1;
    min-width: 0;
}

/* Small index counter */
.service-card-idx {
    display: block;
    font-family: var(--font-sans);
    font-size: 0.68rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.service-content h3 {
    color: var(--color-white);
    font-size: 1.4rem;
    margin-bottom: 0.4rem;
    font-family: var(--font-serif);
    font-weight: 600;
    line-height: 1.2;
}

/* Description — slides up on hover */
.service-desc {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 0;
    line-height: 1.4;
    transform: translateY(8px);
    opacity: 0;
    transition: transform 0.35s ease, opacity 0.35s ease;
}

.service-card:hover .service-desc {
    transform: translateY(0);
    opacity: 1;
}

/* Gold circle arrow CTA */
.service-link-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(37, 111, 168, 0.35);
    background: rgba(37, 111, 168, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(37, 111, 168, 0.85);
    transition: var(--transition);
    flex-shrink: 0;
    backdrop-filter: blur(4px);
}

.service-link-btn:hover {
    background-color: var(--color-gold);
    border-color: var(--color-gold);
    color: var(--color-midnight);
    transform: rotate(45deg);
}

.service-link-btn svg {
    width: 18px;
    height: 18px;
}

/* =========================================
   PATIENT JOURNEY SECTION (TIMELINE)
   ========================================= */
.journey-section {
    padding: var(--section-padding);
    overflow: hidden; /* Prevent overflow from timeline elements */
}

/* Timeline Container */
.journey-timeline {
    position: relative;
    max-width: 1000px;
    margin: 3rem auto 0;
    padding: 2rem 0;
}

/* Central Vertical Line */
.journey-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background: rgba(37, 111, 168, 0.3); /* Gold light */
    transform: translateX(-50%);
}

/* Row Layout */
.timeline-row {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.timeline-row:last-child {
    margin-bottom: 0;
}

/* Middle Column (Marker) */
.timeline-center {
    flex: 0 0 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
}

.timeline-marker {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--color-gold);
    color: white;
    font-family: var(--font-serif);
    font-weight: 700; /* Bold */
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 6px white, 0 4px 10px rgba(0,0,0,0.1); /* White ring effect */
}

/* Content Columns */
.timeline-content {
    flex: 1;
    padding: 0 2rem;
}



/* Content Card Styling */
.timeline-content h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--color-midnight);
    margin-bottom: 0.75rem;
}

.timeline-content p {
    font-size: 1rem;
    color: var(--color-midnight-light);
    line-height: 1.6;
    margin: 0;
}

/* Specific Alignment */
.content-left {
    text-align: right;
}

.content-right {
    text-align: left;
}

/* Responsive Styles for Timeline (Mobile) */
@media (max-width: 768px) {
    .journey-timeline::before {
        left: 24px; /* Move line to left */
    }

    .timeline-row {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 3rem;
    }

    .timeline-center {
        align-self: flex-start;
        flex: 0 0 auto;
        margin-bottom: 1rem;
        /* Align with the line */
        width: 48px; 
    }
    


    .timeline-content {
        padding: 0 0 0 3.5rem; /* Indent content */
        width: 100%;
    }

    .timeline-content.empty {
        display: none; /* Hide empty slots */
    }

    .content-left, .content-right {
        text-align: left; /* Reset text align */
    }
}

/* =========================================
   TESTIMONIALS SECTION
   ========================================= */
/* =========================================
   TESTIMONIALS SECTION (WALL OF LOVE)
   ========================================= */
.testimonials-section {
    padding: var(--section-padding);
    background: #fdfcf8; /* Subtle warm tint */
}

.wall-of-love-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr 1fr; /* Center col slightly wider */
    gap: 1.5rem;
    max-width: 1200px;
    margin: 3rem auto 0;
    align-items: start; /* Masonry-like stacking */
}

/* Columns */
.wol-col {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Base Card */
.wol-card {
    background: var(--color-white);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0,0,0,0.03);
}

.wol-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

/* Header */
.wol-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.wol-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--color-midnight-light); /* Fallback/Placeholder */
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.1rem;
}

.wol-meta h4 {
    font-size: 0.95rem;
    font-family: var(--font-sans);
    font-weight: 700;
    color: var(--color-midnight);
    margin: 0;
}

.wol-meta span {
    font-size: 0.75rem;
    color: #888;
    display: block;
}

.wol-stars {
    color: var(--color-gold);
    font-size: 0.9rem;
    letter-spacing: 2px;
}

.google-icon {
    margin-left: auto;
    flex-shrink: 0;
}

/* Video column inside the testimonials grid */
.wol-col-videos {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    height: 100%;
}

/* Thumbnail card – matches wol-card size */
.video-thumb-card {
    flex: 1;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    background: #0f2744;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
    border: 1px solid rgba(0,0,0,0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-height: 180px;
}

.video-thumb-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.18);
}

/* Iframe fills card as thumbnail (not interactive) — portrait crop to cover */
.video-thumb-iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: auto;
    aspect-ratio: 9 / 16;
    min-height: 100%;
    border: none;
    pointer-events: none;
}

/* Clickable overlay on top of iframe */
.video-thumb-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.28);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 2rem 1.5rem;
    transition: background 0.2s;
}

.video-thumb-card:hover .video-thumb-overlay {
    background: rgba(0,0,0,0.15);
}

.video-play-btn {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(255,255,255,0.20);
    border: 2px solid rgba(255,255,255,0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: background 0.2s, transform 0.2s;
}

.video-thumb-card:hover .video-play-btn {
    background: rgba(255,255,255,0.35);
    transform: scale(1.08);
}

.video-thumb-label {
    color: rgba(255,255,255,0.9);
    font-size: 0.88rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    margin: 0;
    text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}

/* Modal */
.video-modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.82);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.video-modal-overlay.active {
    display: flex;
}

.video-modal-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-modal-close {
    position: absolute;
    top: -2.5rem;
    right: 0;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.4rem;
    cursor: pointer;
    line-height: 1;
    opacity: 0.8;
}

.video-modal-close:hover {
    opacity: 1;
}

/* Text */
.wol-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #444;
    margin: 0;
    font-style: normal; /* Override old italic if any */
}

/* Video Feature Card */
.video-card {
    padding: 0; /* Remove padding */
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/5;
    background: #000;
    display: flex;
    align-items: flex-end;
}

.video-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
    transition: opacity 0.3s ease, transform 0.5s ease;
}

.video-card:hover img {
    opacity: 0.5;
    transform: scale(1.05);
}

.video-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 2;
    color: white;
    text-align: center;
}

.play-btn {
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(5px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: auto; /* Push to center vertically with flex adjustments */
    margin-top: auto;
    border: 1px solid rgba(255,255,255,0.4);
    transition: transform 0.3s ease, background 0.3s ease;
    cursor: pointer;
}

.play-btn svg {
    width: 24px;
    height: 24px;
    fill: white;
    margin-left: 4px; /* Optical center */
}

.video-card:hover .play-btn {
    transform: scale(1.1);
    background: var(--color-gold);
    border-color: var(--color-gold);
}

.video-text {
    width: 100%;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    text-align: left;
}

.video-text h4 {
    font-family: var(--font-serif);
    font-size: 1.5rem; /* Handwriting style hook? */
    margin-bottom: 0.2rem;
}

.video-text span {
    font-size: 0.85rem;
    opacity: 0.8;
}

/* Responsive */
@media (max-width: 900px) {
    .wall-of-love-grid {
        grid-template-columns: 1fr; /* Stack vertically */
    }
    
    .wol-col {
        gap: 1.5rem;
    }
    
    .video-card {
        aspect-ratio: 16/9; /* Wider on mobile */
    }
}



/* =========================================
   CONTACT SECTION
   ========================================= */
.contact-section { padding: var(--section-padding); }

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

.contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-icon {
    width: 44px;
    height: 44px;
    background-color: var(--color-white);
    color: var(--color-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: var(--shadow-soft);
}

.contact-icon svg {
    width: 22px;
    height: 22px;
}

.contact-form-wrapper {
    background: var(--color-white);
    padding: 3rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-hover);
}

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

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--color-midnight);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: var(--border-radius-md);
    font-family: inherit;
    font-size: 1rem;
    background-color: var(--color-beige);
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-gold);
    box-shadow: 0 0 0 3px rgba(37, 111, 168, 0.1);
}

/* .w-100 — use Tailwind w-full */

.map-wrapper {
    width: 100%;
    height: 400px;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-soft);
}

.map-placeholder {
    width: 100%;
    height: 100%;
    background-color: #e5e3df;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--color-midnight);
    font-weight: 500;
}

/* .mt-5 — use Tailwind mt-12 (3rem) */

/* =========================================
   CLOSING CTA
   ========================================= */
.closing-cta {
    padding: 6rem 0;
    background: linear-gradient(rgba(11, 25, 44, 0.9), rgba(11, 25, 44, 0.95)), 
                url('https://images.unsplash.com/photo-1542435503-956c469947f6?auto=format&fit=crop&w=1920&q=80') center/cover;
    color: var(--color-white);
}

/* text-white, text-white/70, text-gold, text-center, mb-6, mb-8, btn-lg sizing
   ── all handled by Tailwind utility classes ── */

/* =========================================
/* =========================================
   PREMIUM LUXURY FOOTER
   ========================================= */
.footer {
    position: relative;
    background: linear-gradient(to bottom, #091220, var(--color-midnight));
    color: var(--color-white);
    padding: 4rem 0 2rem;
    overflow: hidden;
}

/* Subtle glowing accent line at the very top of footer */
.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(37, 111, 168, 0.4), transparent);
}

/* ── Pre-Footer CTA Bar ── */
.footer-cta-bar {
    position: relative;
    padding: 5rem 0;
    margin-bottom: 5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    background: radial-gradient(circle at center, rgba(37, 111, 168, 0.03) 0%, transparent 70%);
}

.footer-cta-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
}

.footer-cta-content .cta-text {
    flex: 1;
}

/* ── Footer Grid Container ── */
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

/* ── Brand Column ── */
.footer-brand .logo-dr { color: var(--color-white); }
.footer-brand .logo-title { color: var(--color-gold); }

.emergency-disclaimer {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.85rem;
    line-height: 1.6;
    padding: 1.25rem;
    border-radius: var(--border-radius-lg);
    background: rgba(220, 38, 38, 0.08); /* Soft red tint */
    border: 1px solid rgba(220, 38, 38, 0.15);
    backdrop-filter: blur(8px);
}

.disclaimer-icon {
    flex-shrink: 0;
    color: #ef4444; /* Red icon */
    width: 24px;
    height: 24px;
}

/* ── Footer Links ── */
.footer-heading {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--color-white);
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
}

/* Gold short underline for headers */
.footer-heading::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 30px;
    height: 1px;
    background: var(--color-gold);
}

.footer-links ul { list-style: none; }

.footer-links li {
    margin-bottom: 1rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--color-gold-light);
    transform: translateX(5px); /* Gentle slide right on hover */
}

/* ── Premium Glassmorphism Map ── */
.footer-map-section {
    position: relative;
    border-radius: var(--border-radius-xl);
    padding: 6px; /* Space for the glass border effect */
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.0.1));
    box-shadow: 0 30px 60px rgba(0,0,0,0.4);
}

.footer-map-glass {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    height: 350px;
    background: var(--color-midnight-light); /* Fallback */
    filter: grayscale(80%) contrast(120%) brightness(80%); /* Makes map align with dark theme slightly */
    transition: filter 0.5s ease;
}

.footer-map-section:hover .footer-map-glass {
    filter: grayscale(20%) contrast(100%) brightness(100%); /* Reveals color on hover */
}

/* ── Footer Bottom & Socials ── */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.85rem;
}

.footer-socials {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

.social-icon svg {
    width: 18px;
    height: 18px;
}

.social-icon:hover {
    background: rgba(37, 111, 168, 0.1); /* Gold tint */
    border-color: var(--color-gold);
    color: var(--color-gold-light);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(37, 111, 168, 0.15);
}

/* =========================================
   SPECIALTIES / TARGETED CONDITIONS — LUXURY REDESIGN (LIGHT THEME)
   ========================================= */
.specialties-section {
    padding: var(--section-padding);
    background-color: var(--color-beige-dark);
    position: relative;
    overflow: hidden;
}

/* Base texture for deep light background */
.specialties-section::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image: 
        radial-gradient(circle at 15% 50%, rgba(37, 111, 168, 0.12) 0%, transparent 40%),
        radial-gradient(circle at 85% 30%, rgba(43, 122, 120, 0.08) 0%, transparent 50%);
}

.silo-container {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.silo-block {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid rgba(37, 111, 168, 0.2);
}

.silo-block:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

/* Header definition for each Silo */
.silo-header {
    display: flex;
    align-items: flex-end;
    gap: 1.5rem;
}

.silo-num {
    font-family: var(--font-serif);
    font-size: 5.5rem;
    color: rgba(37, 111, 168, 0.25);
    line-height: 0.75;
    font-weight: 700;
    margin-right: 1rem;
    user-select: none;
}

.silo-title-group {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.silo-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(37, 111, 168, 0.15), rgba(37, 111, 168, 0.05));
    border: 1px solid rgba(37, 111, 168, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.silo-icon svg {
    width: 24px;
    height: 24px;
    color: var(--color-gold);
}

.silo-title-group h3 {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--color-midnight);
    margin: 0;
    letter-spacing: -0.5px;
}

/* Interactive Chips Container */
.silo-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    padding-left: 2rem;
}

/* The Glass Chip styling */
.condition-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(37, 111, 168, 0.2);
    border-radius: 100px;
    color: var(--color-midnight-light);
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

/* Trailing arrow — direct child SVG only */
.condition-chip > svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    color: rgba(37, 111, 168, 0.6);
    transition: transform 0.3s ease, color 0.3s ease;
}

/* Leading condition icon wrapper */
.chip-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.chip-icon svg {
    width: 16px;
    height: 16px;
    color: var(--color-gold);
    opacity: 0.72;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Chip Hover State — Elevate & Glow Gold */
.condition-chip:hover {
    background: var(--color-white);
    border-color: rgba(37, 111, 168, 0.5);
    color: var(--color-midnight);
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.condition-chip:hover > svg {
    color: var(--color-gold);
    transform: translate(3px, -3px);
}

.condition-chip:hover .chip-icon svg {
    opacity: 1;
    transform: scale(1.1);
}

/* =========================================
   RESPONSIVE DESIGN
   ========================================= */
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr 1fr;
    gap: 2rem;
}

@media (max-width: 991px) {
    .container { padding: 0 1.5rem; }
    
    .hero { padding-top: 5rem; min-height: auto; }
    .hero-split { flex-direction: column; min-height: auto; }
    .hero-left { flex: unset; width: 100%; padding: 3.5rem 2rem 2.5rem; }
    .hero-left::before { display: none; }
    .hero-right { flex: unset; width: 100%; height: 65vw; min-height: 300px; max-height: 460px; }
    .hero-cred-card { left: 1.25rem; bottom: 1.5rem; }
    .hero-title { font-size: 2.8rem; letter-spacing: -0.5px; }
    .hero-actions { flex-wrap: wrap; }
    .hero-marquee { display: none; }
    .trust-stats { padding: 1.75rem 1.5rem; gap: 0; flex-wrap: wrap; }
    .trust-stat { flex: 1 1 40%; padding: 0.75rem 0; }
    .trust-stat-divider { display: none; }
    .trust-stat-num { font-size: 2rem; }
    
    .about-grid, .tms-grid, .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .silo-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .silo-chips {
        padding-left: 0;
    }
    
    .tms-grid .tms-content { order: 2; padding-right: 0; }
    .tms-grid .tms-image-col { order: 1; padding: 0; margin-bottom: 2rem; }
    
    .tms-oak-image {
        aspect-ratio: 16/9; /* Wider on mobile */
    }
    
    .tms-accordion { border-top: none; }
    .accordion-header { padding: 1.25rem 0; }
    
    /* .section-title responsive — managed in Tailwind style block */

    .footer-cta-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .hero-title { font-size: 2.1rem; letter-spacing: -0.3px; }
    .hero-subtitle { font-size: 0.98rem; }
    .hero-actions { flex-direction: column; align-items: stretch; }
    .hero-actions .btn { width: 100%; justify-content: center; }
    .hero-stats { flex-wrap: wrap; gap: 1.25rem 0; }
    .hero-stat { flex: 1 0 40%; padding-right: 0; }
    .hero-stat-div { display: none; }
    .btn { width: 100%; }
    .btn-ghost { width: 100%; }
    
    .trust-grid, .conditions-grid {
        grid-template-columns: 1fr;
    }
    .trust-stats { padding: 1.5rem 1rem; }
    .trust-stat-num { font-size: 1.8rem; }
    
    .silo-num { font-size: 4rem; margin-bottom: 0.5rem; }
    .silo-title-group h3 { font-size: 1.8rem; }
    .condition-chip { width: 100%; justify-content: space-between; }
    
    .benefit-card { padding: 1.25rem; flex-direction: column; gap: 1rem; }
    
    .step { flex-direction: column; gap: 1rem; text-align: center; padding: 2rem 1.5rem; }
    .step-icon { margin: 0 auto; }
    
    .testimonial-card { padding: 2rem 1.5rem; }
    .testimonial-text { font-size: 1rem; }
    
    .contact-form-wrapper { padding: 2rem 1.5rem; }

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

    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
}


/* --- AESTHETIC REFINEMENTS --- */
.hero-stat-lbl, .trust-stat-label {
    color: rgba(255, 255, 255, 0.85) !important;
}

.btn-ghost {
    border: 2px solid var(--color-gold-light) !important;
    color: var(--color-white) !important;
    background: rgba(93, 173, 238, 0.15) !important;
}
.btn-ghost:hover {
    background: var(--color-gold-light) !important;
    color: var(--color-white) !important;
}

/* =====================================================
   REVIEW CARDS (Patient Stories / _reviews-partial.php)
   ===================================================== */
.review-card {
    background: #fff;
    border-radius: 1.25rem;
    padding: 2rem;
    border: 1px solid rgba(37,111,168,0.06);
    box-shadow: 0 4px 20px rgba(11,25,44,0.04);
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}
.review-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(11,25,44,0.08);
}
.review-card::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-gold), var(--color-gold-light), transparent);
    opacity: 0;
    transition: opacity 0.35s ease;
}
.review-card:hover::before { opacity: 1; }
.review-card.featured {
    background: var(--color-midnight);
    border-color: rgba(37,111,168,0.25);
}
.review-card.featured::before { opacity: 1; }
.review-card.featured .review-name { color: #fff; }
.review-card.featured .review-condition { color: rgba(255,255,255,0.45); }
.review-card.featured .review-text { color: rgba(255,255,255,0.70); }
.review-card.featured .review-stars { color: var(--color-gold-light); }
.review-card.featured .review-avatar {
    background: rgba(37,111,168,0.25);
    border-color: rgba(37,111,168,0.4);
    color: var(--color-gold-light);
}
.review-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}
.review-avatar {
    width: 46px; height: 46px; min-width: 46px;
    border-radius: 50%;
    background: rgba(37,111,168,0.08);
    border: 2px solid rgba(37,111,168,0.15);
    color: var(--color-gold);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-serif);
    font-weight: 700;
    font-size: 1.15rem;
}
.review-name {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    color: var(--color-midnight);
    margin: 0 0 0.15rem;
    font-weight: 700;
}
.review-condition {
    font-size: 0.8rem;
    color: rgba(11,25,44,0.6);
    display: block;
    font-weight: 500;
}
.review-stars {
    color: var(--color-gold);
    font-size: 1.1rem;
    letter-spacing: 2px;
    margin-left: auto;
}
.review-text {
    font-size: 0.95rem;
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}
.review-quote-icon {
    font-family: var(--font-serif);
    font-size: 3.5rem;
    color: rgba(37,111,168,0.08);
    position: absolute;
    top: -1.75rem; left: -0.5rem;
    z-index: -1;
    line-height: 1;
}
.review-verified {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.7rem;
    font-weight: 500;
    color: #22c55e;
}
.review-verified svg { width: 14px; height: 14px; }
