:root {
    /* Dark Theme - Black to match logo/nav */
    --primary-dark: #000000;
    --secondary-dark: #0a0a0a;
    --tertiary-dark: #141414;
    
    /* Light Theme */
    --cream-light: #f8f6f3;
    --cream-medium: #f5f2ed;
    --cream-dark: #ebe8e1;
    --white: #ffffff;
    --light-gray: #e8e6e3;
    
    /* Accent - Original teal/cyan */
    --accent-color: #00a8cc;
    --accent-hover: #008fb3;
    --accent-secondary: #1a9988;
    --accent-gold: #c9a961;
    --text-primary: #ffffff;
    --text-secondary: #b0b0b0;
    --text-muted: #808080;
    --text-dark: #2c2c2c;
    --text-dark-secondary: #5a5a5a;
    --border-color: #2a2a2a;
    --border-light: #d4d2ce;
    --success-color: #1a9988;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #00a8cc 0%, #008fb3 100%);
    --gradient-accent: linear-gradient(135deg, #00a8cc 0%, #1a9988 100%);
    --gradient-dark: linear-gradient(180deg, #000000 0%, #0a0a0a 100%);
    --gradient-light: linear-gradient(180deg, #ffffff 0%, #f8f6f3 100%);
}

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

html {
    scroll-behavior: smooth;
}

/* Custom scrollbar - desktop only */
@media (min-width: 769px) {
    ::-webkit-scrollbar {
        width: 12px;
    }

    ::-webkit-scrollbar-track {
        background: #111111;
    }

    ::-webkit-scrollbar-thumb {
        background: var(--accent-color);
        border-radius: 6px;
    }

    ::-webkit-scrollbar-thumb:hover {
        background: var(--accent-hover);
    }

    ::-webkit-scrollbar-button {
        display: none;
    }

    ::-webkit-scrollbar-button:start:decrement,
    ::-webkit-scrollbar-button:end:increment,
    ::-webkit-scrollbar-button:start:increment,
    ::-webkit-scrollbar-button:end:decrement {
        display: none;
        height: 0;
        width: 0;
    }

    /* Firefox */
    html {
        scrollbar-width: auto;
        scrollbar-color: var(--accent-color) #111111;
    }
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--primary-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}


/* Hero Section */
/* ══ Hero Section & Carousel ══ */
.hero {
    position: relative;
    height: 85vh;
    min-height: 600px;
    overflow: hidden;
    background: #000;
}

.hero-carousel {
    position: absolute;
    inset: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    display: flex;
    opacity: 0;
    transition: opacity 0.7s ease;
    pointer-events: none;
    background: #000;
}

.hero-slide.active {
    opacity: 1;
    pointer-events: auto;
}

/* ── Alternating layout ── */
.hero-slide--flipped {
    flex-direction: row-reverse;
}

/* Gradient painted on the parent — position:absolute removes it from flex flow,
   no stacking-context trap, no overflow:hidden clipping */
.hero-slide--flipped::before {
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    right: 52%;
    width: 280px;
    background: linear-gradient(to right, transparent 0%, rgba(0,0,0,0.65) 55%, #000 100%);
    z-index: 3;
    pointer-events: none;
}

/* Disable the child-level pseudo-elements for flipped slides */
.hero-slide--flipped .slide-right::before {
    display: none;
}

.hero-slide--flipped .slide-left::after {
    display: none;
}

/* ── Split-screen slides (2–5) ── */
.slide-left {
    flex: 0 0 52%;
    display: flex;
    align-items: center;
    padding: 120px 60px 80px 80px;
    position: relative;
    z-index: 2;
}

/* Non-flipped slides: shift content rightward toward the image */
.hero-slide:not(.hero-slide--flipped) .slide-left {
    justify-content: flex-end;
    padding-right: 80px;
}

.slide-left::after {
    content: '';
    position: absolute;
    top: 0; right: -80px;
    width: 130px; height: 100%;
    background: linear-gradient(to right, #000 0%, transparent 100%);
    z-index: 3;
    pointer-events: none;
}

.slide-right {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.hero-slide--flipped .slide-right {
    overflow: hidden;
}

.slide-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

/* Left-edge fade: gradient overlay on top of image, no compositing forced */
.slide-right::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 45%;
    height: 100%;
    background: linear-gradient(to right, #000 0%, rgba(0,0,0,0.6) 40%, transparent 100%);
    z-index: 2;
    pointer-events: none;
}

.hero-slide--flipped .slide-right::before {
    left: auto;
    right: 0;
    background: linear-gradient(to left, #000 0%, rgba(0,0,0,0.6) 40%, transparent 100%);
}

.slide-right::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 160px;
    background: linear-gradient(to top, #000 0%, transparent 100%);
    z-index: 1;
}

/* ── Full-bleed slide (slide 1) ── */
.hero-slide--fullbleed {
    display: block;
}

.slide-fullbleed-photo {
    position: absolute;
    inset: 0;
}

.slide-fullbleed-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 57% 5%;
}

.slide-fullbleed-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        105deg,
        rgba(0,0,0,0.88) 0%,
        rgba(0,0,0,0.72) 45%,
        rgba(0,0,0,0.3) 70%,
        rgba(0,0,0,0.1) 100%
    );
}

.slide-fullbleed-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
}

.slide-fullbleed-overlay--centered {
    background: rgba(0, 0, 0, 0.55);
}

.slide-fullbleed-content--centered {
    justify-content: center;
    align-items: flex-end;
    padding: 0 60px 100px;
    width: 100%;
}

.slide-inner.slide-inner--centered {
    text-align: center;
    max-width: 1500px;
    width: 100%;
}

.slide-inner.slide-inner--centered .slide-category {
    margin-left: auto;
    margin-right: auto;
}

.slide-inner.slide-inner--centered h1 {
    font-size: 5rem;
}

.slide-inner.slide-inner--centered .slide-ctas {
    justify-content: center;
    margin-bottom: 28px;
}

.slide-hero-sub,
.slide-inner > p.slide-hero-sub {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 1.65;
    margin-bottom: 36px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.slide-doctor-byline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: nowrap;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    width: 100%;
}

.byline-sep {
    color: rgba(255, 255, 255, 0.2);
    font-size: 0.8rem;
}

/* ── Shared slide inner content ── */
.slide-inner {
    max-width: 100%;
    width: 100%;
}

.slide-category {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 168, 204, 0.1);
    border: 1px solid rgba(0, 168, 204, 0.25);
    border-radius: 50px;
    padding: 5px 14px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: var(--accent-color);
    margin-bottom: 22px;
}

.slide-inner h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    line-height: 1.08;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.5px;
    margin-bottom: 20px;
}

.slide-inner h1 .accent {
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: #ffffff;
    background-clip: unset;
    color: #ffffff;
}

.slide-inner > p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 500px;
}

.slide-badges {
    display: flex;
    gap: 22px;
    flex-wrap: wrap;
    margin-bottom: 34px;
}

.slide-badge {
    display: flex;
    align-items: center;
    gap: 8px;
}

.slide-badge i {
    font-size: 0.95rem;
    color: var(--accent-color);
}

.slide-badge span {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    color: #bbb;
    letter-spacing: 0.2px;
}

.slide-ctas {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 22px;
}

.slide-location {
    font-size: 0.78rem;
    color: #555;
    font-family: 'Inter', sans-serif;
}

.slide-location i {
    color: var(--accent-color);
    margin-right: 5px;
}

/* ── Carousel progress bar ── */
.hero-progress {
    position: absolute;
    bottom: 0; left: 0;
    height: 3px;
    background: var(--accent-color);
    width: 0%;
    z-index: 100;
}

/* ── Carousel dot navigation ── */
.hero-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 100;
}

.hero-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    cursor: pointer;
    transition: all 0.25s ease;
    border: none;
    padding: 0;
}

.hero-dot.active {
    background: var(--accent-color);
    width: 24px;
    border-radius: 4px;
}

/* ── Carousel arrow navigation ── */
.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
    background: rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.12);
    color: rgba(255,255,255,0.6);
    width: 44px; height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.hero-arrow:hover {
    background: rgba(0,168,204,0.3);
    border-color: var(--accent-color);
    color: #fff;
}

.hero-arrow--prev { left: 20px; }
.hero-arrow--next { right: 20px; }

.hero-counter { display: none; }

.container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 60px;
    position: relative;
    z-index: 2;
}

.container-full {
    max-width: 100%;
    margin: 0;
    padding: 0;
    position: relative;
    z-index: 2;
}

.hero-content {
    padding: 180px 0 120px;
    max-width: 1100px;
}

.hero-text .eyebrow {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    display: block;
    font-family: 'Inter', sans-serif;
}

.hero-text h1 {
    font-family: 'Playfair Display', serif;
    font-size: 6rem;
    line-height: 1.05;
    margin-bottom: 30px;
    letter-spacing: -1px;
    font-weight: 700;
    text-shadow: 0 4px 30px rgba(0, 168, 204, 0.25);
}

.hero-text h1 .accent {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-text .subheadline {
    font-size: 1.375rem;
    color: var(--text-secondary);
    font-weight: 400;
    margin-bottom: 40px;
    line-height: 1.7;
    max-width: 800px;
}

.hero-text .location-text {
    font-size: 1.125rem;
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 40px;
}

.trust-badges {
    display: flex;
    gap: 35px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.badge {
    display: flex;
    align-items: center;
    gap: 12px;
}

.badge i {
    font-size: 1.75rem;
    color: var(--accent-color);
}

.badge span {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-primary {
    background: var(--gradient-accent);
    color: var(--text-primary);
    padding: 18px 40px;
    font-size: 1.125rem;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    text-decoration: none;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 8px 25px rgba(0, 168, 204, 0.3);
    position: relative;
    overflow: hidden;
    font-family: 'Inter', sans-serif;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-primary:hover::before {
    width: 400px;
    height: 400px;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 168, 204, 0.4);
}

.btn-primary span,
.btn-primary i {
    position: relative;
    z-index: 1;
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    padding: 18px 40px;
    font-size: 1.0625rem;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    text-decoration: none;
    border-radius: 50px;
    border: 2px solid var(--accent-color);
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    position: relative;
    overflow: hidden;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.5px;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    transition: left 0.4s ease;
    z-index: 0;
}

.btn-secondary span,
.btn-secondary i {
    position: relative;
    z-index: 1;
}

.btn-secondary:hover {
    border-color: var(--accent-hover);
    box-shadow: 0 8px 25px rgba(0, 168, 204, 0.25);
    transform: translateY(-3px);
}

.btn-secondary:hover::before {
    left: 0;
}

/* Trust Bar */
.trust-bar {
    background: var(--secondary-dark);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 40px 0;
}

.trust-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 50px;
    text-align: center;
}

.trust-item i {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.trust-item h4 {
    font-size: 1.25rem;
    margin-bottom: 8px;
    font-weight: 700;
}

.trust-item p {
    font-size: 0.9375rem;
    color: var(--text-secondary);
}

/* Section Styles */
.section {
    padding: 140px 0;
    position: relative;
    z-index: 1;
}

.section-light {
    background: var(--gradient-light);
    position: relative;
    overflow: hidden;
}

.section-light::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 15% 20%, rgba(0, 168, 204, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 85% 80%, rgba(201, 169, 97, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.section-light::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--border-light) 50%, transparent 100%);
    z-index: 0;
}

.section-light .section-header,
.section-light .service-card,
.section-light .about-content,
.section-light .facility-grid,
.section-light .process-grid,
.section-light .testimonials-grid,
.section-light p,
.section-light h2,
.section-light h3 {
    position: relative;
    z-index: 1;
}

.section-light h2 {
    color: var(--text-dark);
}

.section-light p,
.section-light .label {
    color: var(--text-dark-secondary);
}

.section-light .service-card {
    background: var(--white);
    border: 1px solid var(--border-light);
}

.section-light .service-card h3 {
    color: var(--text-dark);
}

.section-light .service-card p {
    color: var(--text-dark-secondary);
}

.section-light .credential-item,
.section-light .process-step,
.section-light .testimonial-card {
    background: var(--white);
    border: 1px solid var(--border-light);
}

.section-light .credential-item h4,
.section-light .process-step h3,
.section-light .testimonial-card h4 {
    color: var(--text-dark);
}

.section-light .credential-item p,
.section-light .process-step p,
.section-light .testimonial-card p {
    color: var(--text-dark-secondary);
}

.section-light .btn-learn,
.section-light .faq-question {
    color: var(--text-dark);
}

.section-light .label {
    color: var(--accent-color);
}

.section-dark {
    background: linear-gradient(180deg, #0a0a0a 0%, #141414 100%);
    position: relative;
}

.section-dark::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 70% 30%, rgba(0, 168, 204, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 30% 70%, rgba(26, 153, 136, 0.04) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.section-darker {
    background: linear-gradient(135deg, #000000 0%, #0a0a0a 50%, #0f0f0f 100%);
    position: relative;
    overflow: hidden;
}

.section-darker::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 50% 0%, rgba(0, 168, 204, 0.05) 0%, transparent 40%);
    pointer-events: none;
    z-index: 0;
}

.section-darker::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(0, 168, 204, 0.2) 50%, transparent 100%);
    z-index: 1;
}

.section-header {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto 100px;
    position: relative;
    z-index: 1;
}

.section-header::before {
    content: '';
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gradient-accent);
    border-radius: 10px;
}

.section-header .label {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    display: block;
    font-family: 'Inter', sans-serif;
}

.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    margin-bottom: 30px;
    letter-spacing: -0.5px;
    line-height: 1.15;
    font-weight: 700;
    color: var(--text-primary);
}

.section-header p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 35px;
}

.service-card {
    background: var(--secondary-dark);
    border: 1px solid rgba(0, 168, 204, 0.15);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
    z-index: 2;
}

.service-card:hover {
    border-color: rgba(0, 168, 204, 0.4);
    box-shadow: 0 12px 35px rgba(0, 168, 204, 0.2);
    transform: translateY(-6px);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    position: relative;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-card-image img {
    transform: none; /* no zoom on hover - stable, calm */
}

.service-card-content {
    padding: 30px;
    position: relative;
    z-index: 1;
}

.service-card .icon {
    display: none;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 600;
    font-family: 'Playfair Display', serif;
    color: var(--accent-color);
}

.service-card p {
    color: var(--text-secondary);
    margin-bottom: 25px;
    line-height: 1.8;
    font-size: 1.0625rem;
}

.service-card .benefits {
    list-style: none;
    margin-bottom: 30px;
}

.service-card .benefits li {
    padding-left: 30px;
    position: relative;
    margin-bottom: 12px;
    color: var(--text-secondary);
    font-size: 1rem;
}

.service-card .benefits li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--success-color);
}

.service-card .btn-learn {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    font-size: 1rem;
    margin-top: 15px;
}

.service-card .btn-learn:hover {
    gap: 12px;
}

.service-card .btn-learn i {
    font-size: 0.875rem;
    transition: transform 0.3s ease;
}

.service-card .btn-learn:hover i {
    transform: translateX(3px);
}

/* Services Carousel */
.services-carousel-wrapper {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
    overflow: hidden;
}

.services-carousel {
    display: flex;
    gap: 10px;
    animation: scroll 60s linear infinite;
    width: fit-content;
}

.services-carousel:hover {
    animation-play-state: paused;
}

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

.service-card-link {
    flex: 0 0 350px;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.service-card {
    position: relative;
    background: var(--secondary-dark);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    transition: border-color 0.3s ease;
    height: 100%;
}

.service-card:hover {
    border-color: var(--accent-color);
}

.service-card-image {
    width: 100%;
    height: 350px;
    overflow: hidden;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 768px) {
    .service-card-link {
        flex: 0 0 280px;
    }
    
    .service-card-image {
        height: 300px;
    }
    
    .service-card-content {
        padding: 25px;
    }
    
    .service-card h3 {
        font-size: 1.5rem;
    }
    
    .service-card p {
        font-size: 0.9375rem;
        margin-bottom: 20px;
    }
    
    .services-carousel {
        animation: scroll 50s linear infinite;
    }
}

/* ── Services Section ── */
.services-section {
    background: #0a0a0a;
    padding-top: 40px;
    padding-bottom: 60px;
    position: relative;
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 14% 16%, rgba(0, 168, 204, 0.18) 0%, rgba(0, 168, 204, 0.08) 20%, transparent 45%),
        radial-gradient(circle at 82% 70%, rgba(0, 168, 204, 0.15) 0%, rgba(0, 168, 204, 0.06) 18%, transparent 42%),
        radial-gradient(circle at 52% 108%, rgba(28, 198, 230, 0.09) 0%, transparent 48%),
        linear-gradient(145deg, #080808 0%, #0d151b 45%, #090909 100%);
    pointer-events: none;
    z-index: 0;
}

.services-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.07) 0 1px, transparent 1px 28px),
        radial-gradient(circle at 76% 68%, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px 30px),
        radial-gradient(circle at 54% 42%, rgba(0, 168, 204, 0.08) 0 1px, transparent 1px 26px),
        radial-gradient(120% 75% at 8% 18%, transparent 66%, rgba(255, 255, 255, 0.05) 67%, transparent 69%),
        radial-gradient(110% 70% at 92% 82%, transparent 64%, rgba(0, 168, 204, 0.06) 65%, transparent 67%),
        radial-gradient(95% 65% at 50% 50%, transparent 62%, rgba(255, 255, 255, 0.04) 63%, transparent 65%);
    opacity: 0.62;
    pointer-events: none;
    z-index: 0;
}

.services-section .container {
    position: relative;
    z-index: 1;
}

.services-heading {
    font-family: 'Inter', sans-serif;
    font-size: 1.16rem;
    font-weight: 600;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
    margin: 0 0 32px 0;
}


.services-pyramid {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.svc-row {
    display: grid;
    gap: 24px;
}

.svc-row--4 {
    grid-template-columns: repeat(4, 1fr);
}

.svc-row--3 {
    grid-template-columns: repeat(3, 1fr);
    width: 75%;
    margin: 0 auto;
}

.svc-card {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 32px 28px;
    background: transparent;
    text-decoration: none;
}

.svc-card:hover {
    background: transparent;
}

.svc-card h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
    line-height: 1.3;
}

.svc-card p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
    flex: 1;
}

.svc-learn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--accent-color);
    transition: gap 0.2s ease;
    margin-top: 4px;
    align-self: flex-start;
}

.svc-card:hover .svc-learn {
    gap: 10px;
}

/* About Section */
.about-shell {
    display: grid;
    grid-template-columns: 0.92fr 1.08fr;
    gap: 52px;
    align-items: stretch;
}

.about-image-wrap {
    position: relative;
}

.about-image {
    height: 100%;
    min-height: 560px;
    position: relative;
    background: #0a0a0a;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 12%;
    display: block;
}

.about-image-wrap {
    position: relative;
}

.about-image-badge {
    display: none;
}

.about-panel {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 8px 0;
}

.about-eyebrow {
    color: var(--accent-color);
    font-size: 0.82rem;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 14px;
    display: block;
}

.about-panel h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.35rem;
    font-weight: 600;
    margin-bottom: 18px;
    letter-spacing: -0.3px;
    line-height: 1.2;
}

.about-panel p {
    color: var(--text-secondary);
    margin-bottom: 16px;
    line-height: 1.8;
    font-size: 1rem;
}

.about-panel .about-lead {
    color: #f0f0f0;
    font-size: 1.04rem;
    margin-bottom: 14px;
}

.about-points {
    display: none;
}

.about-point {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.02);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.76rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    color: #eaeaea;
}

.about-point i {
    color: var(--accent-color);
    font-size: 0.9rem;
}

.about-cred-line {
    margin-top: 0;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
    font-size: 0.98rem;
    font-style: italic;
    font-weight: 500;
    letter-spacing: 0.2px;
    text-transform: none;
    color: rgba(255, 255, 255, 0.88);
}

.about-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
}

/* Facility Showcase Section (Compact) */
.facility-showcase {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 50px;
}

.facility-image {
    border-radius: 12px;
    overflow: hidden;
    height: 350px;
}

.facility-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.facility-image:hover img {
    transform: scale(1.05);
}

/* Process Section */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 50px;
    margin-top: 80px;
}

.step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 2.25rem;
    font-weight: 600;
    margin: 0 auto 30px;
    box-shadow: 0 8px 24px rgba(0, 168, 204, 0.3);
}

.step h3 {
    font-size: 1.5rem;
    margin-bottom: 18px;
}

.step p {
    color: var(--text-secondary);
    font-size: 1.0625rem;
    line-height: 1.7;
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 35px;
    margin-top: 80px;
}

.testimonial-card {
    background: var(--secondary-dark);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 45px;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    border-color: var(--accent-color);
    transform: translateY(-5px);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-bottom: 25px;
}

.testimonial-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    font-weight: 700;
    flex-shrink: 0;
}

.testimonial-info h4 {
    font-size: 1.25rem;
    margin-bottom: 8px;
}

.testimonial-stars {
    color: #ffd700;
    font-size: 1.125rem;
}

.testimonial-text {
    color: var(--text-secondary);
    line-height: 1.8;
    font-style: italic;
    font-size: 1.0625rem;
}

/* FAQ Section */
.faq-list {
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    background: var(--secondary-dark);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    margin-bottom: 25px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--accent-color);
}

.faq-question {
    width: 100%;
    background: transparent;
    border: none;
    color: var(--text-primary);
    padding: 30px 35px;
    font-size: 1.25rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

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

.faq-question i {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 20px;
}

.faq-question.active i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer.active {
    max-height: 600px;
}

.faq-answer-content {
    padding: 0 35px 30px;
    color: var(--text-secondary);
    line-height: 1.9;
    font-size: 1.0625rem;
}

.faq-see-more:hover {
    gap: 15px;
    color: var(--accent-hover);
}

.faq-see-more:hover i {
    transform: translateX(5px);
}

/* CTA Section */
.cta-section {
    background: #ffffff;
    padding: 72px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 12% 20%, rgba(0, 168, 204, 0.12) 0%, transparent 42%),
        radial-gradient(circle at 86% 80%, rgba(0, 168, 204, 0.1) 0%, transparent 38%),
        linear-gradient(125deg, #ffffff 0%, #f3fbff 48%, #ffffff 100%);
    pointer-events: none;
    z-index: 0;
}

.cta-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(110% 70% at 8% 100%, transparent 64%, rgba(0, 168, 204, 0.08) 65%, transparent 67%),
        radial-gradient(120% 80% at 92% 0%, transparent 63%, rgba(0, 168, 204, 0.07) 64%, transparent 66%);
    pointer-events: none;
    z-index: 0;
}

.cta-section .container {
    position: relative;
    z-index: 1;
}

.cta-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3.92rem;
    font-weight: 600;
    margin: 0;
    letter-spacing: -0.5px;
    line-height: 1.15;
    white-space: nowrap;
    color: var(--text-dark);
}

.cta-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 0 30px;
}

.cta-section .btn-primary {
    background: var(--accent-color);
    color: #ffffff;
    font-size: 1rem;
    padding: 16px 30px;
    flex-shrink: 0;
    white-space: nowrap;
}

.cta-section .btn-primary:hover {
    background: var(--accent-hover);
}

.cta-accent-word {
    color: var(--accent-color);
}

/* Testimonials heading cleanup */
.testimonials-section .section-header {
    margin-bottom: 12px;
}

.testimonials-section .section-header::before {
    display: none;
}

.testimonials-section .section-header .label {
    font-family: 'Inter', sans-serif;
    font-size: 1.16rem;
    font-weight: 600;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
    margin-bottom: 0;
}

.testimonials-section {
    background: var(--accent-color);
    padding-top: 52px;
    padding-bottom: 28px;
}

.testimonials-carousel {
    position: relative;
    width: 95%;
    max-width: none;
    margin: 0 auto;
}

.testimonials-viewport {
    overflow: hidden;
}

.testimonials-track {
    display: flex;
    gap: 22px;
    transition: transform 0.35s ease;
    will-change: transform;
}

.testimonials-section .testimonial-card {
    flex: 0 0 calc((100% - 44px) / 3);
    min-height: 280px;
}

.testimonials-section .testimonial-card {
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 8px 8px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.testimonials-section .testimonial-card:hover {
    transform: none;
    border-color: transparent;
}

.testimonial-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.02rem;
    font-weight: 800;
    color: #000000;
    margin: 0 0 10px 0;
    white-space: nowrap;
}

.testimonials-section .testimonial-text {
    color: #000000;
    margin: 0 0 14px 0;
    flex-grow: 0;
}

.testimonial-google-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    color: #5f6368;
    text-decoration: none;
    letter-spacing: 0.3px;
    opacity: 0.7;
    transition: opacity 0.2s ease;
    margin-top: auto;
}
.testimonial-google-link:hover {
    opacity: 1;
    color: #1a73e8;
}
.testimonial-google-link .google-g {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    font-size: 0.72rem;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    border-radius: 50%;
    background: linear-gradient(135deg, #4285F4 0%, #34A853 33%, #FBBC05 66%, #EA4335 100%);
    color: #fff;
    flex-shrink: 0;
}

.testimonials-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.16);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 5;
    transition: all 0.2s ease;
}

.testimonials-arrow:hover {
    background: rgba(255, 255, 255, 0.28);
}

.testimonials-arrow--prev {
    left: -62px;
}

.testimonials-arrow--next {
    right: -62px;
}

/* Pre-Footer Brand Band */
.pre-footer-brand {
    background: #000000;
    padding: 48px 0 40px;
    text-align: center;
}

.pre-footer-logo {
    width: 260px;
    max-width: 100%;
    height: auto;
    display: inline-block;
}

.pre-footer-social {
    justify-content: center;
    margin-top: 18px;
}

.pre-footer-social {
    display: flex;
    justify-content: center;
    gap: 18px;
    margin-top: 18px;
}

.pre-footer-social-link {
    width: 50px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.pre-footer-social-link svg {
    display: block;
    flex-shrink: 0;
}

.pre-footer-social-link:hover {
    border-color: #ffffff;
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

/* Footer */
footer {
    background: var(--cream-light);
    border-top: 1px solid var(--border-light);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr;
    gap: 36px;
    margin-bottom: 50px;
}

.footer-section h3 {
    font-size: 1.15rem;
    margin-bottom: 20px;
    color: #000000;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.footer-section p {
    color: #000000;
    margin-bottom: 15px;
    font-size: 1.05rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    letter-spacing: 0.4px;
    line-height: 1.7;
}

.footer-section a {
    color: #000000;
    text-decoration: none;
    font-size: 1.05rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    letter-spacing: 0.4px;
    transition: color 0.3s ease;
}

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

.footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-visit-links li a {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-visit-icon {
    color: var(--accent-color);
    font-size: 1rem;
    flex-shrink: 0;
    width: 18px;
    text-align: center;
}

.footer-hours {
    margin-top: 16px;
}

.footer-hours p:not(.footer-hours-title) {
    font-size: 0.85rem;
    padding-left: 28px;
    margin-bottom: 8px;
}

.footer-hours-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1.05rem;
    color: #000000;
    margin-bottom: 10px !important;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact-item i {
    color: var(--accent-color);
    font-size: 1.25rem;
    width: 25px;
}

.contact-item a {
    color: #000000;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--accent-color);
}

.social-links {
    display: flex;
    gap: 18px;
    margin-top: 18px;
}

.social-links a {
    width: 50px;
    height: 50px;
    border: 2px solid var(--border-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 1.25rem;
    color: var(--text-dark);
}

.social-links a:hover {
    border-color: var(--accent-color);
    background: rgba(0, 168, 204, 0.1);
}

.footer-contact-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 22px;
    border-radius: 999px;
    background: var(--gradient-primary);
    color: var(--text-primary) !important;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s ease;
}

.footer-contact-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(0, 168, 204, 0.3);
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid var(--border-light);
    color: #000000;
    font-size: 1rem;
    font-weight: 400;
}

.footer-bottom p,
.footer-bottom a {
    color: #000000;
    font-size: 0.9rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    letter-spacing: 0.4px;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-bottom a:hover {
    color: var(--accent-color);
}

/* Legal Strip */
.legal-strip {
    background: var(--accent-color);
    padding: 16px 0;
    text-align: center;
}

.legal-strip p {
    color: #ffffff;
    font-size: 0.78rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    letter-spacing: 0.4px;
    margin: 0;
}

.legal-strip a {
    color: #ffffff;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.legal-strip a:hover {
    opacity: 0.75;
}

.legal-strip .footer-bottom-sep {
    color: rgba(255, 255, 255, 0.4);
}

.legal-policy-group {
    display: inline;
    white-space: nowrap;
}

.legal-policy-group a {
    color: #ffffff;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.legal-policy-group a:hover {
    opacity: 0.75;
}

.legal-bullet {
    color: rgba(255, 255, 255, 0.4);
}

/* Top Bar */
.top-bar {
    background:
        radial-gradient(ellipse at 50% -10%, rgba(0, 168, 204, 0.16) 0%, transparent 65%),
        linear-gradient(180deg, #0b1522 0%, #04080f 60%, #000000 100%);
    border-bottom: 1px solid rgba(0, 168, 204, 0.2);
    padding: 10px 0;
    position: relative;
    overflow: hidden;
}

.top-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 168, 204, 0.1), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.top-bar-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.top-bar-location {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
    font-size: 0.875rem;
    text-align: center;
}

.top-bar-location i {
    color: var(--accent-color);
}

.top-bar-social {
    display: flex;
    gap: 15px;
    position: absolute;
    right: 60px;
}

.top-bar-social a {
    color: var(--text-secondary);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.top-bar-social a:hover {
    color: var(--accent-color);
    transform: translateY(-2px);
}

/* Desktop Navigation */
.desktop-nav,
.main-nav {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    background:
        radial-gradient(ellipse at 20% -60%, rgba(0, 168, 204, 0.48) 0%, transparent 50%),
        radial-gradient(ellipse at 80% -55%, rgba(26, 153, 136, 0.36) 0%, transparent 46%),
        radial-gradient(ellipse at 50% -40%, rgba(0, 168, 204, 0.24) 0%, transparent 58%),
        linear-gradient(180deg, #0c1d32 0%, #060e1a 55%, #000000 100%);
    border-bottom: 1px solid rgba(0, 168, 204, 0.28);
    z-index: 999999;
    display: block;
    box-shadow:
        0 1px 0 rgba(0, 168, 204, 0.14),
        0 6px 30px rgba(0, 0, 0, 0.5);
    transition: background 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, backdrop-filter 0.3s ease;
}

/* Breathing radial glow pulse */
.desktop-nav::before,
.main-nav::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 25% -50%, rgba(0, 168, 204, 0.42) 0%, transparent 50%),
        radial-gradient(ellipse at 75% -45%, rgba(26, 153, 136, 0.30) 0%, transparent 46%),
        radial-gradient(ellipse at 50% -35%, rgba(0, 168, 204, 0.20) 0%, transparent 56%);
    animation: navBreath 4s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

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

/* Flowing wave of light along the bottom edge */
.desktop-nav::after,
.main-nav::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 200%;
    height: 3px;
    background: linear-gradient(90deg,
        transparent          0%,
        rgba(26,153,136,0.0) 4%,
        rgba(26,153,136,0.5) 10%,
        rgba(0,168,204,0.85) 17%,
        rgba(160,235,255,1)  24%,
        rgba(0,168,204,0.85) 31%,
        rgba(26,153,136,0.4) 38%,
        transparent          46%,
        transparent          50%,
        rgba(26,153,136,0.5) 60%,
        rgba(0,168,204,0.85) 67%,
        rgba(160,235,255,1)  74%,
        rgba(0,168,204,0.85) 81%,
        rgba(26,153,136,0.4) 88%,
        transparent          96%,
        transparent          100%
    );
    animation: waveFlow 5s linear infinite;
    pointer-events: none;
    z-index: 2;
}

@keyframes waveFlow {
    from { transform: translateX(-50%); }
    to   { transform: translateX(0%);   }
}

/* Hide animations once scrolled — glassmorphism takes over */
.desktop-nav.scrolled::before,
.main-nav.scrolled::before,
.desktop-nav.scrolled::after,
.main-nav.scrolled::after {
    display: none;
}

/* Glassmorphism on scroll — cranked up */
.desktop-nav.scrolled,
.main-nav.scrolled {
    background: rgba(3, 6, 12, 0.48);
    backdrop-filter: blur(40px) saturate(200%) brightness(1.05);
    -webkit-backdrop-filter: blur(40px) saturate(200%) brightness(1.05);
    border-bottom: 1px solid rgba(0, 168, 204, 0.52);
    box-shadow:
        0 1px 0 rgba(0, 168, 204, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        inset 0 -1px 0 rgba(0, 168, 204, 0.08),
        0 12px 56px rgba(0, 0, 0, 0.65),
        0 0 0 0.5px rgba(0, 168, 204, 0.12);
}

/* Initial state - center logo, nav below */
.desktop-nav .nav-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 24px 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

/* Scrolled state - LOGO LEFT, NAV RIGHT - SINGLE HORIZONTAL ROW */
.desktop-nav.scrolled .nav-container {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 12px 60px;
}

.nav-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    transition: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}

.desktop-nav.scrolled .nav-logo {
    margin-bottom: 0;
    flex-shrink: 0;
}

.nav-logo img,
.logo img {
    height: 67px;
    width: auto;
    transition: height 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}

.desktop-nav.scrolled .nav-logo img {
    height: 65px;
}

.nav-right {
    display: flex;
    gap: 50px;
    align-items: center;
    transition: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    flex-wrap: wrap;
    justify-content: center;
}

.desktop-nav.scrolled .nav-right {
    justify-content: flex-end;
    margin-left: auto;
    gap: 40px;
}

.nav-links {
    display: flex;
    gap: 45px;
    align-items: center;
}

.desktop-nav.scrolled .nav-links {
    gap: 35px;
}

.nav-links a,
.nav-links .services-parent {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9375rem;
    transition: color 0.3s ease;
    position: relative;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-links .services-parent {
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
}

.nav-links a:hover,
.nav-links .services-parent:hover {
    color: var(--accent-color);
}

.nav-links a::after,
.nav-links .services-parent::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

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

/* Services Dropdown - Minimal & Modern Style (Dark) */
.services-dropdown {
    position: relative;
}

/* Hover bridge so menu stays open while moving cursor downward */
.services-dropdown::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    height: 12px;
}

.services-dropdown-content {
    display: none !important;
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    transform: none !important;
    margin-top: 0 !important;
    background: rgba(3, 6, 12, 0.78) !important;
    backdrop-filter: blur(28px) saturate(180%) !important;
    -webkit-backdrop-filter: blur(28px) saturate(180%) !important;
    min-width: 240px !important;
    padding: 8px 14px !important;
    border-radius: 0 0 10px 10px !important;
    border: 1px solid rgba(0, 168, 204, 0.22) !important;
    border-top: none !important;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255,255,255,0.04) !important;
    z-index: 99999999 !important;
}

.services-dropdown:hover .services-dropdown-content,
.services-dropdown-content:hover {
    display: block !important;
}

.dropdown-section h4 {
    color: var(--accent-color);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    font-weight: 600;
    padding-bottom: 0;
    border-bottom: none;
}

.dropdown-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dropdown-section ul li {
    margin-bottom: 0;
}

.dropdown-section ul li a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 0.9rem;
    display: block;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    border-radius: 0;
    transition: all 0.2s ease;
    font-weight: 500;
}

.dropdown-section ul li:last-child a {
    border-bottom: none;
}

.dropdown-section ul li a:hover {
    color: var(--accent-color);
    background-color: transparent;
    transform: none;
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    background: transparent;
    border: none;
    color: var(--accent-color);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background: var(--primary-dark);
    z-index: 10000;
    transition: left 0.3s ease;
    overflow-y: auto;
    padding: 100px 30px 30px;
}

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

.mobile-menu-header {
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-menu-book {
    background: var(--gradient-primary);
    color: var(--text-primary);
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9375rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.mobile-menu-cta {
    background: var(--gradient-primary);
    color: var(--text-primary);
    padding: 15px 30px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    display: block;
    text-align: center;
    margin-top: 30px;
    transition: all 0.3s ease;
}

.mobile-menu-book:hover,
.mobile-menu-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 168, 204, 0.4);
}

.mobile-menu-close {
    background: transparent;
    border: none;
    color: var(--accent-color);
    font-size: 2rem;
    cursor: pointer;
    padding: 10px;
}

.mobile-menu-links {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.mobile-menu-links a {
    color: var(--accent-color);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.mobile-menu-links a:hover {
    color: var(--text-primary);
    padding-left: 10px;
}

.mobile-menu-links a:last-child {
    border-bottom: none;
}

.mobile-services {
    margin-top: 40px;
}

.mobile-services-toggle {
    width: 100%;
    background: transparent;
    border: none;
    color: var(--accent-color);
    border-radius: 6px;
    padding: 8px 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.mobile-services-toggle:hover {
    color: var(--text-primary);
}

.mobile-services-toggle i {
    font-size: 0.75rem;
    transition: transform 0.2s ease;
}

.mobile-services.open .mobile-services-toggle i {
    transform: rotate(180deg);
}

.mobile-services-list {
    display: none;
    flex-direction: column;
    gap: 8px;
    margin-top: 8px;
}

.mobile-services.open .mobile-services-list {
    display: flex;
}

.mobile-services-list a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.75rem;
    padding: 6px 0;
    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.mobile-services-list a:hover {
    color: var(--accent-color);
    padding-left: 10px;
}

.mobile-menu-social {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
    text-align: center;
}

.mobile-menu-social h4 {
    color: var(--text-secondary);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.mobile-social-links {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.mobile-social-links a {
    color: var(--text-secondary);
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.mobile-social-links a:hover {
    color: var(--accent-color);
    transform: scale(1.1);
}

/* Mobile Menu - dropdown under header (not full-viewport overlay) */
@media (max-width: 768px) {
    .mobile-menu {
        position: absolute;
        top: 149px; /* below mobile FAB (85px body padding) + nav header (64px) */
        left: 0;
        right: 0;
        width: 100%;
        height: auto;
        min-height: 0;

        /* collapsed state */
        max-height: 0;
        opacity: 0;
        pointer-events: none;
        transform: translateY(-6px);
        overflow: hidden;

        /* glassmorphism */
        background: rgba(3, 6, 12, 0.82);
        backdrop-filter: blur(24px) saturate(180%);
        -webkit-backdrop-filter: blur(24px) saturate(180%);
        border-bottom: 1px solid rgba(0, 168, 204, 0.45);
        box-shadow:
            inset 0 1px 0 rgba(255, 255, 255, 0.08),
            0 8px 40px rgba(0, 0, 0, 0.55);
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);

        /* override off-canvas defaults */
        padding: 0 20px;
        transition: max-height 0.25s ease, opacity 0.2s ease, transform 0.2s ease;
        z-index: 900; /* keep mobile FAB above it (FAB z-index is 1000) */
    }

    .mobile-menu.active {
        /* expanded state */
        max-height: calc(100vh - 157px);
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
        overflow-y: auto;

        /* show content */
        padding: 12px 18px 18px;
    }

    .mobile-menu-links {
        margin-top: 10px;
    }

    .mobile-services {
        margin-top: 8px;
    }

    .mobile-menu-links a {
        font-size: 0.9rem;
        padding: 9px 0;
        letter-spacing: 1px;
        border-bottom: none;
    }

    .mobile-services-toggle {
        font-size: 0.9rem;
        padding: 10px 0;
    }

    .mobile-services-list a {
        font-size: 0.9rem;
        padding: 8px 0;
    }

    /* Keep the dropdown small enough to fit with header + FAB */
    .mobile-menu-social {
        display: none;
    }
}

.nav-logo .logo-accent {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-social {
    display: flex;
    gap: 15px;
}

.nav-social a {
    color: var(--text-secondary);
    font-size: 1.125rem;
    transition: all 0.3s ease;
}

.nav-social a:hover {
    color: var(--accent-color);
    transform: translateY(-2px);
}

.nav-cta {
    background: var(--gradient-primary);
    color: var(--text-primary);
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9375rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 168, 204, 0.4);
}

/* Add padding to body for desktop nav */
body {
    padding-top: 0;
}

/* Video Section */
.video-container {
    max-width: 900px;
    margin: 60px auto 0;
}

.video-wrapper {
    position: relative;
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 2px solid var(--border-color);
}

.video-wrapper video {
    width: 100%;
    height: auto;
    display: block;
}

/* Mobile Floating Action Buttons (FAB) */
.mobile-fab {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(4, 8, 16, 0.82);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border-bottom: 1px solid rgba(0, 168, 204, 0.38);
    display: none;
    z-index: 1000;
    box-shadow:
        0 1px 0 rgba(0, 168, 204, 0.16),
        inset 0 1px 0 rgba(255, 255, 255, 0.06),
        0 6px 28px rgba(0, 0, 0, 0.55);
    padding: 0;
    transform: translate3d(0, 0, 0);
    will-change: transform;
    -webkit-transform: translate3d(0, 0, 0);
}

.mobile-fab-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    max-width: 100%;
}

/* Make FAB buttons display in a row */
.mobile-fab {
    display: none; /* Hidden by default */
    grid-template-columns: repeat(3, 1fr);
}

.fab-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 15px 10px;
    text-decoration: none;
    color: var(--text-primary);
    transition: all 0.3s ease;
    border-right: 1px solid var(--border-color);
    position: relative;
}

.fab-button:last-child {
    border-right: none;
}

.fab-button:active {
    background: var(--primary-dark);
}

.fab-button i {
    font-size: 1.5rem;
    margin-bottom: 5px;
    color: var(--accent-color);
    transition: all 0.3s ease;
}

.fab-button span {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.fab-button:hover i,
.fab-button:active i {
    transform: scale(1.1);
    color: var(--accent-hover);
}


/* Mobile Styles */
@media (max-width: 768px) {
    /* Hero carousel — mobile layout */
    .hero {
        height: 85svh;
        min-height: 500px;
    }

    .hero-slide {
        display: block;
    }

    .hero-slide--fullbleed {
        display: block;
    }

    /* Hide images on mobile for split-screen slides — gradient background instead */
    /* Full-bleed image behind text on mobile */
    .slide-right {
        display: block;
        position: absolute;
        inset: 0;
        flex: none;
    }

    /* Strong bottom-to-top gradient so text is always readable */
    .slide-right::after,
    .hero-slide--flipped .slide-right::after {
        height: 75%;
        background: linear-gradient(to top, #000 0%, rgba(0,0,0,0.85) 35%, rgba(0,0,0,0.4) 65%, transparent 100%);
    }

    .slide-category {
        display: none;
    }

    .slide-right img {
        object-position: center 20%;
    }

    .hero-slide--hrt .slide-right img {
        object-position: 20% 20%;
    }

    .hero-slide--iv .slide-right img {
        object-position: 49% 20%;
    }

    .hero-slide--aesthetics .slide-right img {
        object-position: 48% 20%;
    }

    .hero-slide--weight .slide-right img {
        object-position: 63% 20%;
    }

    .hero-slide--peptide .slide-right img {
        object-position: 44% 20%;
    }

    .hero-slide--wellness .slide-right img {
        object-position: 37% 20%;
    }

    .slide-left {
        position: absolute;
        inset: 0;
        z-index: 2;
        padding: 24px 24px 80px;
        height: 100%;
        display: flex;
        align-items: flex-end;
        background: none;
    }

    .slide-inner {
        width: 100%;
    }

    .slide-left::after {
        display: none;
    }

    /* Disable all desktop edge gradients on mobile */
    .slide-right::before,
    .hero-slide--flipped::before {
        display: none;
    }

    .slide-inner h1 {
        font-size: 2.2rem;
    }

    .slide-inner > p {
        font-size: 0.9rem;
    }

    .slide-badges {
        display: none;
    }

    .svc-row--4,
    .svc-row--3 {
        grid-template-columns: 1fr;
        width: 100%;
    }

    .svc-card {
        padding: 22px 18px;
    }

    .svc-card h4 {
        font-size: 1rem;
    }

    .hero-arrow {
        display: none;
    }

    .slide-fullbleed-content {
        align-items: flex-end;
        padding-bottom: 80px;
    }

    .slide-fullbleed-content--centered {
        align-items: flex-end;
        padding: 24px 24px 90px;
    }

    .slide-inner.slide-inner--centered h1 {
        font-size: 1.9rem;
        line-height: 1.15;
        margin-bottom: 10px;
    }

    .slide-hero-sub,
    .slide-inner > p.slide-hero-sub {
        font-size: 0.9rem;
        margin-bottom: 8px;
    }

    .slide-doctor-byline {
        font-size: 0.6rem;
        letter-spacing: 0.8px;
        gap: 6px;
    }

    .slide-ctas .btn-primary,
    .slide-ctas .btn-secondary {
        width: auto;
        padding: 10px 20px;
        font-size: 0.8rem;
    }

    .slide-inner.slide-inner--centered .slide-ctas {
        margin-bottom: 14px;
    }

    .slide-doctor-byline {
        flex-direction: column;
        gap: 6px;
    }

    .byline-sep {
        display: none;
    }

    /* Hide top bar on mobile */
    .top-bar {
        display: none;
    }
    
    /* Keep nav bar visible for logo and hamburger */
    .desktop-nav {
        display: block;
        position: static;
        margin-top: 0;
    }
    
    .desktop-nav .nav-container {
        max-width: 100%;
        padding: 8px 20px;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    
    .nav-container {
        height: 64px;
    }
    
    .nav-logo {
        margin-bottom: 0;
    }
    
    .nav-logo img {
        height: 40px;
    }
    
    /* Hide desktop nav links on mobile */
    .nav-links,
    .nav-right .nav-cta {
        display: none;
    }
    
    /* Show hamburger menu toggle next to logo */
    .mobile-menu-toggle {
        display: block;
    }
    
    /* Position hamburger on right side of nav */
    .nav-right {
        display: flex;
        align-items: center;
        margin-left: auto;
    }
    
    /* Show FAB buttons at top */
    .mobile-fab {
        display: grid;
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
    }
    
    /* Add body padding for FAB */
    body {
        padding-top: 85px;
    }
    
    .section {
        padding: 80px 0;
    }
    
    .section-header {
        margin-bottom: 60px;
    }
    
    .section-header h2 {
        font-size: 2.5rem;
    }
    
    .section-header p {
        font-size: 1.0625rem;
    }
    
    .services-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-carousel {
        max-width: 100%;
        padding-bottom: 52px;
    }

    .testimonials-section .testimonial-card {
        flex: 0 0 calc((100% - 22px) / 2);
        min-height: 260px;
    }

    .testimonials-arrow {
        width: 36px;
        height: 36px;
        top: auto;
        bottom: 0;
    }

    .testimonials-arrow--prev {
        left: 50%;
        right: auto;
        transform: translateX(-42px);
    }

    .testimonials-arrow--next {
        left: 50%;
        right: auto;
        transform: translateX(2px);
    }
    
    .about-shell {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .about-image {
        min-height: 380px;
    }

    .about-image-badge {
        left: 14px;
        bottom: 14px;
        font-size: 0.62rem;
        padding: 8px 12px;
    }

    .about-panel {
        padding: 0;
    }

    .about-panel h3 {
        font-size: 1.9rem;
    }

    .about-panel p {
        font-size: 0.95rem;
        line-height: 1.75;
    }

    .about-panel .about-lead {
        font-size: 1rem;
    }

    .about-cred-line {
        font-size: 0.66rem;
        line-height: 1.7;
        margin-bottom: 20px;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
        padding: 18px 30px;
        font-size: 1.125rem;
    }
    
    .container {
        padding: 0 20px;
    }
    
    .trust-items {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .trust-badges {
        flex-direction: column;
        gap: 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-section {
        text-align: center;
    }

    .footer-links {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .contact-info {
        align-items: center;
    }

    .contact-item {
        justify-content: center;
    }

    .footer-contact-cta {
        margin: 0 auto;
    }

    .footer-hours-title {
        justify-content: center;
    }

    .footer-hours p:not(.footer-hours-title) {
        padding-left: 0;
        text-align: center;
    }

    .footer-bottom {
        text-align: center;
    }

    .footer-bottom p {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }

    .legal-strip p {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 6px;
    }

    .legal-strip .footer-bottom-sep {
        display: none;
    }

    .footer-bottom-sep {
        display: none;
    }
    
    .credentials {
        grid-template-columns: 1fr;
    }
    
    .facility-showcase {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .facility-image {
        height: 250px;
    }
    
    .gallery-item {
        height: 280px;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .cta-section h2 {
        font-size: 2.5rem;
        text-align: center;
        white-space: normal;
    }

    .cta-row {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .cta-section .btn-primary {
        width: auto;
        padding: 12px 24px;
        font-size: 0.95rem;
        white-space: nowrap;
    }
}

@media (max-width: 480px) {
    .testimonials-section .testimonial-card {
        flex: 0 0 100%;
        min-height: auto;
    }

    .testimonials-arrow--prev {
        left: 50%;
        right: auto;
        transform: translateX(-42px);
    }

    .testimonials-arrow--next {
        left: 50%;
        right: auto;
        transform: translateX(2px);
    }

    .hero-text h1 {
        font-size: 2.25rem;
    }
    
    .hero-text .eyebrow {
        font-size: 0.875rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .btn-primary {
        font-size: 1rem;
        padding: 16px 25px;
    }
    
    .service-card-content {
        padding: 30px 25px;
    }
    
    .faq-question {
        font-size: 1.0625rem;
        padding: 25px 20px;
    }
    
    .faq-answer-content {
        padding: 0 20px 25px;
    }
}

/* ========================================
   SERVICE PAGES STYLES
   ======================================== */

/* Service Hero Section */
.service-hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.95) 0%, rgba(26, 26, 26, 0.90) 100%);
    padding: 120px 0 80px;
    border-bottom: 2px solid var(--accent-color);
}

.service-hero-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

.service-hero-text {
    max-width: 900px;
}

.service-eyebrow {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 0.9375rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
    display: block;
}

.service-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 25px;
    color: var(--text-primary);
}

.service-hero-description {
    font-size: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 35px;
    max-width: 800px;
}

.service-hero-ctas {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.service-hero-badges {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.service-hero-badges .badge {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-secondary);
    font-size: 0.9375rem;
}

.service-hero-badges .badge i {
    color: var(--accent-color);
    font-size: 1.25rem;
}

/* Service Intro Section */
.service-intro {
    padding: 100px 0;
    background: var(--primary-dark);
}

.service-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.service-intro-text .section-label {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    display: block;
}

.service-intro-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 25px;
    color: var(--text-primary);
}

.service-intro-text p {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.benefit-list {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-primary);
}

.benefit-item i {
    color: var(--success-color);
    font-size: 1.125rem;
}

.service-intro-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 12px;
    border: 2px solid var(--border-color);
}

/* Treatments Section */
.treatments-section {
    padding: 100px 0;
    background: var(--secondary-dark);
}

.section-header-center {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.section-header-center .section-label {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    display: block;
}

.section-header-center h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.section-header-center p {
    font-size: 1.0625rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.treatments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.treatment-card {
    background: var(--primary-dark);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 40px;
    position: relative;
    transition: all 0.3s ease;
}

.treatment-card:hover {
    border-color: var(--accent-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 168, 204, 0.2);
}

.treatment-card.featured {
    border-color: var(--accent-color);
    background: linear-gradient(135deg, rgba(0, 168, 204, 0.05) 0%, rgba(10, 10, 10, 1) 100%);
}

.treatment-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent-color);
    color: var(--primary-dark);
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.treatment-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(0, 168, 204, 0.1) 0%, rgba(0, 168, 204, 0.05) 100%);
    border: 2px solid var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.treatment-icon i {
    color: var(--accent-color);
    font-size: 2rem;
}

.treatment-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.875rem;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.treatment-tagline {
    color: var(--accent-color);
    font-size: 0.9375rem;
    font-weight: 600;
    margin-bottom: 15px;
    display: block;
}

.treatment-description {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 25px;
}

.treatment-benefits {
    margin: 25px 0;
}

.treatment-benefit {
    color: var(--text-primary);
    padding: 8px 0;
    font-size: 0.9375rem;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.treatment-benefit::before {
    content: '✓';
    color: var(--success-color);
    font-weight: bold;
    flex-shrink: 0;
}

.treatment-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 20px 0;
    padding: 20px;
    background: rgba(0, 168, 204, 0.05);
    border-radius: 8px;
    border-left: 3px solid var(--accent-color);
}

.treatment-time,
.treatment-frequency {
    color: var(--text-secondary);
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.treatment-time i {
    color: var(--accent-color);
}

.treatment-note {
    background: rgba(0, 168, 204, 0.05);
    border-left: 3px solid var(--accent-color);
    padding: 15px;
    margin: 20px 0;
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.treatment-note strong {
    color: var(--accent-color);
}

/* Symptoms Section */
.symptoms-section {
    padding: 100px 0;
    background: var(--primary-dark);
}

.symptoms-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.symptoms-col h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.875rem;
    margin-bottom: 25px;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 15px;
}

.symptoms-col h3 i {
    color: var(--accent-color);
    font-size: 2rem;
}

.symptoms-list {
    list-style: none;
    padding: 0;
}

.symptoms-list li {
    padding: 12px 0;
    color: var(--text-secondary);
    display: flex;
    align-items: flex-start;
    gap: 12px;
    border-bottom: 1px solid var(--border-color);
}

.symptoms-list li:last-child {
    border-bottom: none;
}

.symptoms-list li i {
    color: var(--accent-color);
    margin-top: 3px;
    flex-shrink: 0;
}

.symptoms-cta {
    text-align: center;
    margin-top: 50px;
    padding-top: 50px;
    border-top: 2px solid var(--border-color);
}

.symptoms-cta p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 25px;
}

/* What to Expect / Steps Section */
.what-to-expect {
    padding: 100px 0;
    background: var(--secondary-dark);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.step-card {
    background: var(--primary-dark);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.step-card:hover::before {
    transform: scaleX(1);
}

.step-card:hover {
    border-color: var(--accent-color);
    transform: translateY(-5px);
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--primary-dark);
    margin: 0 auto 20px;
    font-weight: bold;
}

.step-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.step-card p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 100px 0;
    background: var(--primary-dark);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.why-card {
    text-align: center;
    padding: 30px;
}

.why-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(0, 168, 204, 0.1) 0%, rgba(0, 168, 204, 0.05) 100%);
    border: 2px solid var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.why-card:hover .why-icon {
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(0, 168, 204, 0.3);
}

.why-icon i {
    color: var(--accent-color);
    font-size: 2.25rem;
}

.why-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.why-card p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Results Section */
.results-section {
    padding: 100px 0;
    background: var(--secondary-dark);
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.result-card {
    text-align: center;
    padding: 40px 30px;
    background: var(--primary-dark);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.result-card:hover {
    border-color: var(--accent-color);
    transform: translateY(-5px);
}

.result-number {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    color: var(--accent-color);
    margin-bottom: 10px;
    line-height: 1;
}

.result-label {
    font-weight: 700;
    font-size: 1.125rem;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.result-card p {
    color: var(--text-secondary);
    font-size: 0.9375rem;
}

/* Footer */
.main-footer {
    background: var(--secondary-dark);
    padding: 80px 0 40px;
    border-top: 2px solid var(--border-color);
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-col h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.footer-col p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
}

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

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-col ul li a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
}

.footer-contact li i {
    color: var(--accent-color);
    margin-top: 3px;
    font-size: 1.125rem;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-social a {
    width: 45px;
    height: 45px;
    border: 2px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: all 0.3s ease;
    font-size: 1.125rem;
}

.footer-social a:hover {
    border-color: var(--accent-color);
    color: var(--accent-color);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid var(--border-color);
    color: var(--text-muted);
    font-size: 0.9375rem;
}

/* Mobile Responsive - Service Pages */
@media (max-width: 768px) {
    .service-hero {
        min-height: 60vh;
        padding: 80px 0 60px;
    }
    
    .service-hero h1 {
        font-size: 2.5rem;
    }
    
    .service-hero-description {
        font-size: 1.0625rem;
    }
    
    .service-hero-ctas {
        flex-direction: column;
    }
    
    .service-hero-ctas .btn-primary,
    .service-hero-ctas .btn-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .service-intro {
        padding: 80px 0;
    }
    
    .service-intro-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .service-intro-text h2 {
        font-size: 2.25rem;
    }
    
    .service-intro-image img {
        height: 350px;
    }
    
    .treatments-section {
        padding: 80px 0;
    }
    
    .treatments-grid {
        grid-template-columns: 1fr;
    }
    
    .symptoms-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .what-to-expect {
        padding: 80px 0;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .why-choose-us {
        padding: 80px 0;
    }
    
    .why-grid {
        grid-template-columns: 1fr;
    }
    
    .results-section {
        padding: 80px 0;
    }
    
    .results-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .section-header-center h2 {
        font-size: 2.25rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* Cookie Consent Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #0a0a0a;
    border-top: 1px solid var(--border-color);
    z-index: 9999999;
    padding: 16px 24px;
    transform: translateY(100%);
    transition: transform 0.35s ease;
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.5);
}

.cookie-banner.visible {
    transform: translateY(0);
}

.cookie-banner-inner {
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.cookie-text {
    color: var(--text-secondary);
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    line-height: 1.6;
    margin: 0;
    flex: 1;
    min-width: 200px;
}

.cookie-text a {
    color: var(--accent-color);
    text-decoration: underline;
    transition: color 0.2s ease;
}

.cookie-text a:hover {
    color: var(--accent-hover);
}

.cookie-actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 9px 20px;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
}

.cookie-decline {
    background: transparent;
    color: var(--text-secondary);
    border: 1px solid var(--border-color);
}

.cookie-decline:hover {
    border-color: var(--text-secondary);
    color: var(--text-primary);
}

.cookie-accept {
    background: var(--gradient-primary);
    color: #ffffff;
}

.cookie-accept:hover {
    box-shadow: 0 4px 14px rgba(0, 168, 204, 0.35);
    transform: translateY(-1px);
}

@media (max-width: 768px) {
    .cookie-banner-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
    }

    .cookie-actions {
        width: 100%;
        justify-content: flex-end;
    }
}
