/* =============================================
   DR. BHAVYA SREE — LUXURY EDITION
   Premium Plastic Surgery Clinic
   ============================================= */

:root {
    /* Original palette — enhanced */
    --gold:        #b8926a;
    --gold-light:  #d4b896;
    --gold-pale:   #efe4d6;
    --gold-dark:   #96754e;
    --cream:       #faf8f5;
    --cream-deep:  #f3ede5;
    --ivory:       #fefdfb;
    --charcoal:    #1c1c1e;
    --near-black:  #111113;
    --text:        #2a2a2d;
    --text-soft:   #6e6e73;
    --text-muted:  #a1a1a6;
    --border:      #e5e0d9;
    --white:       #ffffff;

    /* Type */
    --f-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --f-elegant: 'Cormorant Garamond', Georgia, serif;
    --f-body:    'Jost', 'Helvetica Neue', Arial, sans-serif;

    /* Sizing */
    --header-h: 96px;
    --max-w:    1320px;
    --narrow:   820px;

    /* Motion */
    --ease: cubic-bezier(.4, 0, .2, 1);
    --ease-out: cubic-bezier(0, 0, .2, 1);
    --dur: .5s;
}

/* ---- Reset ---- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body { font-family: var(--f-body); color: var(--text); background: var(--ivory); line-height: 1.7; overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img {
    max-width: 100%;
    height: auto;
    display: block;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

/* ---- 4K Image Enhancement ---- */
.hero-bg-img,
.split-img-wrap img,
.home-tx-card-img img,
.tx-category-hero img,
.timeline-media img,
.about-portrait,
.blog-card-img img,
.contact-img-frame img {
    filter: contrast(1.08) brightness(1.02) saturate(1.08);
    image-rendering: auto;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

/* Portraits — natural skin tones, soft sharpening */
.about-portrait,
.timeline-media img,
.split-img-wrap img,
.blog-card-img img {
    filter: contrast(1.06) brightness(1.03) saturate(1.05);
}
button { font: inherit; cursor: pointer; border: none; background: none; }

/* ---- Layout ---- */
.container      { max-width: var(--max-w); margin: 0 auto; padding: 0 clamp(24px, 5vw, 80px); }
.container-narrow { max-width: var(--narrow); margin: 0 auto; padding: 0 clamp(24px, 5vw, 80px); }
.section        { padding: clamp(50px, 6vw, 80px) 0; }

/* ---- Reusable pieces ---- */
.label {
    display: inline-block;
    font-family: var(--f-body);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 18px;
}

.gold-line {
    width: 48px;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    margin: 24px 0 28px;
    border-radius: 2px;
}

.section-title {
    font-family: var(--f-display);
    font-size: clamp(36px, 5vw, 60px);
    font-weight: 400;
    color: var(--charcoal);
    line-height: 1.15;
    letter-spacing: -.5px;
}

.section-title em,
.page-hero-title em {
    font-style: italic;
    color: var(--gold-dark);
}

.section-text {
    font-size: 17px;
    font-weight: 300;
    line-height: 1.9;
    color: var(--text-soft);
    max-width: 600px;
}

/* ---- Buttons ---- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--f-body);
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 17px 38px;
    border-radius: 0;
    position: relative;
    overflow: hidden;
    transition: all var(--dur) var(--ease);
}

.btn-icon {
    transition: transform .3s var(--ease);
    font-style: normal;
}

.btn:hover .btn-icon { transform: translateX(5px); }

.btn-gold {
    background: var(--gold);
    color: var(--white);
}
.btn-gold:hover {
    background: var(--gold-dark);
    box-shadow: 0 12px 40px rgba(184, 146, 106, .3);
    transform: translateY(-2px);
}

.btn-ghost {
    border: 1px solid rgba(255,255,255,.4);
    color: var(--white);
    backdrop-filter: blur(6px);
}
.btn-ghost:hover {
    border-color: var(--white);
    background: rgba(255,255,255,.1);
}

.btn-dark {
    background: var(--charcoal);
    color: var(--white);
}
.btn-dark:hover {
    background: var(--near-black);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0,0,0,.15);
}

.btn-outline-dark {
    border: 1px solid var(--charcoal);
    color: var(--charcoal);
}
.btn-outline-dark:hover {
    background: var(--charcoal);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-light {
    background: var(--white);
    color: var(--charcoal);
}
.btn-light:hover {
    background: var(--cream);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255,255,255,.15);
}

/* ============================================
   CUSTOM CURSOR (desktop)
   ============================================ */
.custom-cursor {
    position: fixed;
    top: 0; left: 0;
    pointer-events: none;
    z-index: 10000;
    mix-blend-mode: difference;
}

.cursor-dot {
    width: 8px;
    height: 8px;
    background: var(--white);
    border-radius: 50%;
    position: fixed;
    top: 0; left: 0;
    margin: -4px 0 0 -4px;
    transition: transform .15s var(--ease), background .2s;
    will-change: left, top;
}

.cursor-ring {
    width: 40px;
    height: 40px;
    border: 1.5px solid rgba(255,255,255,.5);
    border-radius: 50%;
    position: fixed;
    top: 0; left: 0;
    margin: -20px 0 0 -20px;
    transition: width .35s var(--ease), height .35s var(--ease), margin .35s var(--ease), border-color .3s;
    will-change: left, top;
}

.custom-cursor.hovering .cursor-ring {
    width: 60px;
    height: 60px;
    margin: -30px 0 0 -30px;
    border-color: var(--gold-light);
}

.custom-cursor.hovering .cursor-dot {
    transform: scale(2);
    background: var(--gold-light);
}

/* Hide custom cursor on touch devices */
@media (hover: none) {
    .custom-cursor { display: none; }
}

@media (hover: hover) {
    body { cursor: none; }
    a, button { cursor: none; }
}

/* ============================================
   HEADER — Clean Warm Light
   ============================================ */
.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    height: var(--header-h);
    transition: all .4s var(--ease);
}

.site-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--cream);
    border-bottom: 1px solid var(--border);
    transition: all .4s var(--ease);
}

/* On scroll: solid white with shadow */
.site-header.scrolled::before {
    background: var(--white);
    box-shadow: 0 4px 30px rgba(0,0,0,.06);
    border-bottom-color: transparent;
}

/* Transparent on home hero */
.page-home .site-header:not(.scrolled)::before {
    background: transparent;
    border-bottom-color: transparent;
}

.page-home .site-header:not(.scrolled) .nav-link { color: var(--white); }
.page-home .site-header:not(.scrolled) .nav-link:hover,
.page-home .site-header:not(.scrolled) .nav-link.active { color: var(--gold-light); }
.page-home .site-header:not(.scrolled) .nav-link-cta { border-color: rgba(255,255,255,.4); color: var(--white); }
.page-home .site-header:not(.scrolled) .nav-link-cta:hover { background: var(--white); color: var(--charcoal); border-color: var(--white); }
.page-home .site-header:not(.scrolled) .header-logo { filter: brightness(5); }
.page-home .site-header:not(.scrolled) .burger span { background: var(--white); }

.header-inner {
    position: relative;
    z-index: 2;
    max-width: var(--max-w);
    margin: 0 auto;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 clamp(24px, 4vw, 60px);
}

.nav-links-group {
    display: flex;
    align-items: center;
    gap: clamp(20px, 2.5vw, 38px);
}

.nav-logo-link { flex-shrink: 0; }

.header-logo {
    height: 80px;
    transition: all .4s var(--ease);
}

.site-header.scrolled .header-logo { height: 58px; }

.nav-link {
    font-family: var(--f-body);
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--charcoal);
    padding: 6px 0;
    position: relative;
    transition: color .3s var(--ease);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0; right: 0;
    height: 1px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .4s var(--ease);
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
    transform-origin: left;
}

.nav-link:hover,
.nav-link.active { color: var(--gold-dark); }

.nav-link-cta {
    border: 1px solid var(--gold);
    color: var(--gold-dark);
    padding: 10px 24px;
    letter-spacing: 2px;
    transition: all .3s var(--ease);
}

.nav-link-cta::after { display: none; }

.nav-link-cta:hover,
.nav-link-cta.active {
    background: var(--gold);
    color: var(--white);
    border-color: var(--gold);
}

/* ---- Burger ---- */
.burger {
    display: none;
    width: 30px;
    height: 20px;
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    flex-direction: column;
    justify-content: space-between;
}

.burger span {
    display: block;
    width: 100%;
    height: 1.5px;
    background: var(--charcoal);
    transition: all .35s var(--ease);
    transform-origin: center;
}

.burger.open span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

/* ---- Mobile Overlay ---- */
.mobile-overlay {
    position: fixed;
    inset: 0;
    z-index: 99;
    background: var(--charcoal);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all .5s var(--ease);
}

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

.mobile-overlay-inner { text-align: center; }

.mobile-links { display: flex; flex-direction: column; gap: 10px; }

.mobile-link {
    font-family: var(--f-display);
    font-size: clamp(32px, 7vw, 52px);
    font-weight: 400;
    color: var(--white);
    padding: 8px 0;
    opacity: .6;
    transition: opacity .3s, transform .3s;
    transform: translateY(10px);
}

.mobile-overlay.open .mobile-link {
    transform: translateY(0);
}

.mobile-link:hover,
.mobile-link.active { opacity: 1; color: var(--gold-light); }

.mobile-overlay-footer { margin-top: 50px; }

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

.mobile-social a {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
    transition: color .3s;
}

.mobile-social a:hover { color: var(--gold-light); }

/* ============================================
   HERO (Home)
   ============================================ */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
}

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

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    will-change: transform;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(17,17,19,.2) 0%, rgba(17,17,19,.1) 30%, rgba(17,17,19,.55) 70%, rgba(17,17,19,.85) 100%),
        linear-gradient(90deg, rgba(17,17,19,.3) 0%, transparent 50%);
}

.hero-body {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: flex-end;
    padding: 0 clamp(30px, 6vw, 100px) clamp(80px, 12vh, 140px);
}

.hero-content { max-width: 720px; }

.hero-eyebrow {
    font-family: var(--f-body);
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 20px;
}

.hero-title {
    font-family: var(--f-display);
    font-size: clamp(42px, 7vw, 88px);
    font-weight: 400;
    color: var(--white);
    line-height: 1.05;
    letter-spacing: -1px;
    margin-bottom: 20px;
}

.hero-title em {
    font-style: italic;
    font-family: var(--f-display);
    color: var(--gold-pale);
}

.hero-sub {
    font-family: var(--f-body);
    font-size: 15px;
    font-weight: 300;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(255,255,255,.6);
    margin-bottom: 40px;
}

.hero-btns { display: flex; flex-wrap: wrap; gap: 16px; }

/* Scroll indicator */
.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.hero-scroll-text {
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,.4);
}

.hero-scroll-line {
    width: 1px;
    height: 50px;
    position: relative;
    overflow: hidden;
    background: rgba(255,255,255,.15);
}

.hero-scroll-line::after {
    content: '';
    position: absolute;
    top: -100%;
    width: 100%;
    height: 100%;
    background: var(--gold-light);
    animation: scrollPulse 2s var(--ease) infinite;
}

@keyframes scrollPulse {
    0%   { top: -100%; }
    50%  { top: 0; }
    100% { top: 100%; }
}

/* ============================================
   MARQUEE STRIP
   ============================================ */
.marquee-strip {
    background: var(--charcoal);
    padding: 18px 0;
    overflow: hidden;
    position: relative;
}

.marquee-track {
    display: flex;
    align-items: center;
    gap: 0;
    white-space: nowrap;
    animation: marquee 30s linear infinite;
    width: max-content;
}

.marquee-track span {
    font-family: var(--f-body);
    font-size: 13px;
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,.5);
    padding: 0 20px;
}

.marquee-dot {
    display: inline-block;
    width: 4px !important;
    height: 4px;
    border-radius: 50%;
    background: var(--gold);
    padding: 0 !important;
    flex-shrink: 0;
}

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

/* ============================================
   INTRO SECTION WITH DOCTOR IMAGE (Home)
   ============================================ */
.section-intro-split {
    background: var(--ivory);
}

.intro-split-grid {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 clamp(24px, 5vw, 80px);
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: clamp(30px, 4vw, 60px);
    align-items: center;
}

.intro-doctor-frame {
    position: relative;
    border-radius: 250px 250px 20px 20px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0,0,0,.1);
}

.intro-doctor-frame::after {
    content: '';
    position: absolute;
    top: 15px; right: -12px;
    width: 100%;
    height: 100%;
    border: 1.5px solid var(--gold-light);
    border-radius: 250px 250px 20px 20px;
    z-index: -1;
    opacity: .4;
}

.intro-doctor-frame img {
    width: 100%;
    border-radius: 250px 250px 20px 20px;
}

.intro-split-text .section-text {
    max-width: 100%;
    margin-bottom: 35px;
}

@media (max-width: 1024px) {
    .intro-split-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .intro-doctor-frame {
        max-width: 320px;
        margin: 0 auto;
    }
    .intro-doctor-frame::after { display: none; }
    .intro-split-text .gold-line { margin-left: auto; margin-right: auto; }
}

/* Keep old section-intro for other pages if needed */
.section-intro {
    text-align: center;
    background: var(--ivory);
}

.section-intro .gold-line { margin: 24px auto 28px; }
.section-intro .section-text { margin: 0 auto 40px; }

/* ============================================
   SPLIT SECTIONS (Home)
   ============================================ */
.split-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 600px;
}

.split-reverse { direction: rtl; }
.split-reverse > * { direction: ltr; }

.split-media {
    position: relative;
    overflow: hidden;
}

.split-img-wrap {
    width: 100%;
    height: 100%;
    min-height: 500px;
}

.split-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s var(--ease);
}

.split-media:hover .split-img-wrap img {
    transform: scale(1.04);
}

.split-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(50px, 7vw, 100px);
    background: var(--cream);
}

.split-title {
    font-family: var(--f-display);
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 400;
    color: var(--charcoal);
    line-height: 1.15;
    letter-spacing: -.3px;
    margin-bottom: 0;
}

.split-text {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.9;
    color: var(--text-soft);
    margin-bottom: 35px;
}

.split-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

/* ============================================
   DUAL CARDS (Treatments & Contact)
   ============================================ */
.dual-cards-section {
    background: var(--cream);
    padding: clamp(40px, 5vw, 60px) 0;
}

.dual-cards {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 clamp(24px, 5vw, 80px);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(16px, 2.5vw, 30px);
}

.dual-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    display: block;
}

.dual-card-img {
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
}

.dual-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s var(--ease);
}

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

.dual-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(17,17,19,.05) 0%, rgba(17,17,19,.45) 100%);
    display: flex;
    align-items: flex-end;
    padding: clamp(20px, 3vw, 40px);
    transition: background .4s var(--ease);
}

.dual-card:hover .dual-card-overlay {
    background: linear-gradient(180deg, rgba(17,17,19,.05) 0%, rgba(17,17,19,.55) 100%);
}

.dual-card-title {
    font-family: var(--f-display);
    font-size: clamp(24px, 3.5vw, 42px);
    font-weight: 400;
    color: var(--white);
    letter-spacing: 1px;
}

.dual-card-title em {
    font-style: italic;
    font-family: var(--f-display);
}

@media (max-width: 768px) {
    .dual-cards { grid-template-columns: 1fr; }
    .dual-card { aspect-ratio: 16 / 10; }
}

.home-tx-card-cta {
    background: var(--charcoal) !important;
    border-color: var(--charcoal) !important;
}

/* ============================================
   CREDENTIALS STRIP
   ============================================ */
.credentials-strip {
    background: var(--ivory);
    padding: clamp(35px, 4vw, 50px) 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.credentials-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(30px, 5vw, 60px);
    padding: 0 clamp(24px, 4vw, 60px);
    flex-wrap: wrap;
}

.credential-item { text-align: center; }

.credential-num {
    display: block;
    font-family: var(--f-display);
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 500;
    color: var(--gold-dark);
    line-height: 1.2;
}

.credential-label {
    display: block;
    font-family: var(--f-body);
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-top: 6px;
}

.credential-divider {
    width: 1px;
    height: 50px;
    background: var(--border);
}

/* ============================================
   PAGE HERO (inner pages)
   ============================================ */
.page-hero {
    margin-top: var(--header-h);
    padding: clamp(45px, 6vw, 70px) clamp(24px, 5vw, 80px) clamp(35px, 4vw, 50px);
    background: var(--cream);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 800px;
    height: 800px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(184,146,106,.06), transparent 70%);
    transform: translate(-50%, -50%);
}

.page-hero-inner { position: relative; z-index: 1; }

.page-hero-title {
    font-family: var(--f-display);
    font-size: clamp(40px, 6vw, 72px);
    font-weight: 400;
    color: var(--charcoal);
    letter-spacing: -1px;
    line-height: 1.1;
}

.page-hero-title em {
    font-style: italic;
    color: var(--gold-dark);
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-intro-section {
    background: var(--ivory);
}

.about-intro-grid {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 clamp(24px, 5vw, 80px);
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: clamp(30px, 4vw, 60px);
    align-items: center;
}

.about-lead {
    font-family: var(--f-body);
    font-size: clamp(18px, 2.2vw, 22px);
    font-weight: 300;
    line-height: 1.9;
    color: var(--text-soft);
}

.about-portrait-frame {
    position: relative;
}

.about-portrait {
    width: 100%;
    border-radius: 300px 300px 20px 20px;
    box-shadow: 0 30px 80px rgba(0,0,0,.12);
}

.about-portrait-frame::after {
    content: '';
    position: absolute;
    top: 20px; right: -16px;
    width: 100%;
    height: 100%;
    border: 1.5px solid var(--gold-light);
    border-radius: 300px 300px 20px 20px;
    z-index: -1;
    opacity: .5;
}

/* Doctor Profile Section */
.about-profile-section { background: var(--ivory); }

.about-profile-grid {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 clamp(24px, 5vw, 80px);
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: clamp(30px, 4vw, 60px);
    align-items: center;
}

.about-profile-name {
    font-family: var(--f-display);
    font-size: clamp(26px, 3vw, 36px);
    font-weight: 500;
    color: var(--charcoal);
    margin-bottom: 6px;
}

.about-profile-title {
    font-size: 15px;
    font-weight: 400;
    color: var(--gold-dark);
    margin-bottom: 2px;
}

.about-profile-hospital {
    font-size: 14px;
    font-weight: 300;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.about-qualifications {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.about-qual-item {
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: 50px;
    padding: 6px 16px;
}

.about-qual-degree {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: var(--charcoal);
}

.about-profile-bio {
    font-size: 15px;
    font-weight: 300;
    line-height: 1.8;
    color: var(--text-soft);
    margin-bottom: 24px;
}

.about-profile-highlights {
    display: flex;
    gap: 24px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.profile-highlight {
    text-align: center;
    padding: 16px 20px;
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: 12px;
    flex: 1;
    min-width: 120px;
}

.profile-highlight-num {
    display: block;
    font-family: var(--f-display);
    font-size: 28px;
    font-weight: 500;
    color: var(--gold-dark);
    line-height: 1.2;
}

.profile-highlight-label {
    display: block;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-top: 4px;
}

.about-profile-specialised {
    margin-bottom: 24px;
    padding: 18px 22px;
    background: var(--cream);
    border-left: 3px solid var(--gold);
    border-radius: 0 10px 10px 0;
}

.profile-spec-heading {
    font-family: var(--f-body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold-dark);
    margin-bottom: 6px;
}

.profile-spec-text {
    font-size: 14px;
    font-weight: 300;
    line-height: 1.7;
    color: var(--text-soft);
}

.about-profile-contact-strip {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 4px;
}

.profile-contact-item {
    flex: 1;
    min-width: 130px;
    padding: 12px 16px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 10px;
}

.profile-contact-label {
    display: block;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 3px;
}

.profile-contact-value {
    display: block;
    font-size: 14px;
    font-weight: 400;
    color: var(--charcoal);
}

@media (max-width: 1024px) {
    .about-profile-highlights { justify-content: center; }
    .about-profile-contact-strip { justify-content: center; }
    .about-profile-specialised { text-align: center; }
}

/* Specializations */
.about-specializations { background: var(--ivory); }

.spec-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.spec-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: clamp(22px, 2.5vw, 30px);
    transition: all .4s var(--ease);
    position: relative;
}

.spec-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0,0,0,.06);
    border-color: transparent;
}

.spec-icon {
    font-family: var(--f-display);
    font-size: 13px;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.spec-card h3 {
    font-family: var(--f-display);
    font-size: 20px;
    font-weight: 500;
    color: var(--charcoal);
    margin-bottom: 8px;
    line-height: 1.3;
}

.spec-card p {
    font-size: 13px;
    font-weight: 300;
    line-height: 1.7;
    color: var(--text-soft);
}

@media (max-width: 1024px) {
    .about-profile-grid { grid-template-columns: 1fr; text-align: center; }
    .about-profile-img { max-width: 280px; margin: 0 auto; }
    .about-qualifications { justify-content: center; }
    .spec-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .spec-grid { grid-template-columns: 1fr; }
}

/* Timeline */
.about-timeline { background: var(--cream); }

.timeline-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(30px, 4vw, 60px);
    align-items: center;
    padding: clamp(30px, 4vw, 45px) 0;
    border-bottom: 1px solid var(--border);
}

.timeline-block:last-child { border-bottom: none; }

.timeline-block.reverse { direction: rtl; }
.timeline-block.reverse > * { direction: ltr; }

.timeline-media {
    border-radius: 16px;
    overflow: hidden;
}

.timeline-media img {
    width: 100%;
    border-radius: 16px;
    transition: transform .8s var(--ease);
}

.timeline-media:hover img { transform: scale(1.03); }

.timeline-num {
    display: block;
    font-family: var(--f-display);
    font-size: 14px;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.timeline-content h2 {
    font-family: var(--f-display);
    font-size: clamp(24px, 3vw, 34px);
    font-weight: 400;
    color: var(--charcoal);
    line-height: 1.25;
    margin-bottom: 16px;
}

.timeline-content p {
    font-size: 15px;
    font-weight: 300;
    line-height: 1.9;
    color: var(--text-soft);
}

.about-list {
    margin-top: 14px;
}

.about-list li {
    font-size: 15px;
    font-weight: 300;
    line-height: 2;
    color: var(--text-soft);
    padding-left: 20px;
    position: relative;
}

.about-list li::before {
    content: '';
    position: absolute;
    left: 0; top: 13px;
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--gold);
}

/* ============================================
   TREATMENTS PAGE
   ============================================ */
.treatments-intro-section { background: var(--ivory); padding-top: 35px; padding-bottom: 35px; }

.treatments-lead {
    font-size: clamp(18px, 2.2vw, 22px);
    font-weight: 300;
    line-height: 1.9;
    color: var(--text-soft);
    text-align: center;
}

.treatments-body { background: var(--cream); }

.tx-category {
    margin-bottom: clamp(40px, 5vw, 60px);
}

.tx-category:last-child { margin-bottom: 0; }

.tx-category-hero {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 35px;
    height: clamp(250px, 35vw, 420px);
}

.tx-category-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s var(--ease);
}

.tx-category-hero:hover img { transform: scale(1.04); }

.tx-category-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(17,17,19,.7));
    display: flex;
    align-items: flex-end;
    padding: clamp(24px, 3vw, 40px);
}

.tx-category-hero-overlay h2 {
    font-family: var(--f-display);
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 400;
    color: var(--white);
    letter-spacing: .5px;
}

/* Treatment Cards */
.tx-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 350px), 1fr));
    gap: 16px;
}

.tx-card {
    background: var(--white);
    padding: clamp(28px, 3vw, 38px);
    border-radius: 14px;
    border: 1px solid var(--border);
    transition: all .4s var(--ease);
    position: relative;
}

.tx-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--gold), var(--gold-light));
    border-radius: 3px 0 0 3px;
    opacity: 0;
    transition: opacity .4s var(--ease);
}

.tx-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(0,0,0,.06);
    border-color: transparent;
}

.tx-card:hover::before { opacity: 1; }

.tx-card h3 {
    font-family: var(--f-display);
    font-size: 22px;
    font-weight: 500;
    color: var(--charcoal);
    margin-bottom: 2px;
    line-height: 1.3;
}

.tx-card-sub {
    display: block;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
}

.tx-card p {
    font-size: 14px;
    font-weight: 300;
    line-height: 1.8;
    color: var(--text-soft);
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-body { background: var(--ivory); }

.contact-intro-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 6vw, 80px);
    align-items: center;
    margin-bottom: clamp(40px, 5vw, 60px);
}

.contact-img-frame {
    border-radius: 20px;
    overflow: hidden;
}

.contact-img-frame img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,.1);
}

.contact-intro-text h2 {
    font-family: var(--f-display);
    font-size: clamp(28px, 3.5vw, 40px);
    font-weight: 400;
    color: var(--charcoal);
    margin-bottom: 20px;
    line-height: 1.2;
}

.contact-intro-text p {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.9;
    color: var(--text-soft);
    margin-bottom: 14px;
}

/* Contact Main Grid */
.contact-main-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(24px, 3vw, 40px);
    align-items: start;
}

/* Doctor Mini Card */
.contact-doctor-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 14px;
    margin-bottom: 20px;
}

.contact-doc-avatar {
    width: 65px; height: 65px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid var(--gold-pale);
}

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

.contact-doc-info h3 {
    font-family: var(--f-display);
    font-size: 20px;
    font-weight: 500;
    color: var(--charcoal);
    line-height: 1.2;
}

.contact-doc-info p {
    font-size: 13px;
    font-weight: 400;
    color: var(--gold-dark);
}

.contact-doc-info span {
    font-size: 12px;
    font-weight: 300;
    color: var(--text-muted);
}

/* Contact Details */
.contact-details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 20px;
}

.contact-detail-box {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
}

.contact-detail-icon {
    font-size: 18px;
    color: var(--gold);
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-detail-label {
    display: block;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 2px;
}

.contact-detail-value {
    display: block;
    font-size: 13px;
    font-weight: 400;
    color: var(--charcoal);
    line-height: 1.5;
}

/* Map */
.contact-map {
    margin-bottom: 20px;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--border);
}

/* Social Row */
.contact-social-row {
    display: flex;
    align-items: center;
    gap: 14px;
}

.contact-social-label {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
}

.contact-social-icons { display: flex; gap: 8px; }

.contact-social-btn {
    width: 48px; height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--cream);
    border: 1px solid var(--border);
    transition: all .4s var(--ease);
}

.contact-social-btn img { width: 18px; height: 18px; transition: filter .3s; }

/* Contact Form Card */
.contact-form-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: clamp(28px, 3vw, 40px);
    box-shadow: 0 10px 40px rgba(0,0,0,.04);
}

.contact-form-title {
    font-family: var(--f-display);
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 400;
    color: var(--charcoal);
    margin-bottom: 6px;
}

.contact-form-sub {
    font-size: 14px;
    font-weight: 300;
    color: var(--text-muted);
    margin-bottom: 28px;
}

.contact-form { display: flex; flex-direction: column; gap: 16px; }

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.form-group { display: flex; flex-direction: column; gap: 5px; }

.form-group label {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-soft);
}

.form-group input,
.form-group select,
.form-group textarea {
    font-family: var(--f-body);
    font-size: 14px;
    font-weight: 300;
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: var(--cream);
    color: var(--charcoal);
    outline: none;
    transition: border-color .3s var(--ease), box-shadow .3s var(--ease);
    -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(184,146,106,.12);
}

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

.form-group select { cursor: pointer; }

.form-submit-btn { width: 100%; justify-content: center; margin-top: 4px; }

/* Success state */
.form-success {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 40px 20px;
}

.form-success-icon {
    width: 60px; height: 60px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--white);
    font-size: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.form-success h3 {
    font-family: var(--f-display);
    font-size: 26px;
    color: var(--charcoal);
    margin-bottom: 8px;
}

.form-success p {
    font-size: 14px;
    font-weight: 300;
    color: var(--text-soft);
}

@media (max-width: 768px) {
    .contact-main-grid { grid-template-columns: 1fr; }
    .contact-details-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
}

.contact-social-btn:hover {
    background: var(--gold);
    border-color: var(--gold);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(184,146,106,.25);
}

.contact-social-btn:hover img { filter: brightness(0) invert(1); }

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
    background: var(--charcoal);
    padding: clamp(50px, 6vw, 70px) clamp(24px, 5vw, 80px);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    width: 1000px; height: 1000px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(184,146,106,.08), transparent 60%);
    transform: translate(-50%, -50%);
}

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

.cta-heading {
    font-family: var(--f-display);
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 400;
    color: var(--white);
    letter-spacing: -.5px;
    margin-bottom: 14px;
}

.cta-text {
    font-size: 16px;
    font-weight: 300;
    color: var(--text-muted);
    margin-bottom: 35px;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: var(--near-black);
    padding: clamp(40px, 5vw, 60px) clamp(24px, 5vw, 80px) clamp(20px, 3vw, 30px);
}

.footer-main {
    max-width: var(--max-w);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: clamp(30px, 4vw, 60px);
    padding-bottom: clamp(40px, 5vw, 60px);
    border-bottom: 1px solid rgba(255,255,255,.06);
}

.footer-logo-img {
    max-width: 180px;
    opacity: .6;
    margin-bottom: 14px;
    transition: opacity .3s;
}

.footer-logo-img:hover { opacity: .85; }

.footer-tagline {
    font-family: var(--f-body);
    font-size: 13px;
    font-weight: 300;
    letter-spacing: 2px;
    color: var(--text-muted);
}

.footer-heading {
    font-family: var(--f-body);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,.35);
    margin-bottom: 18px;
}

.footer-list li {
    font-size: 14px;
    font-weight: 300;
    color: #666;
    line-height: 2;
}

.footer-nav-list li a {
    color: #666;
    transition: color .3s;
}

.footer-nav-list li a:hover { color: var(--gold-light); }

.footer-social-links {
    display: flex;
    gap: 10px;
}

.footer-social-links a {
    width: 40px; height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.08);
    transition: all .4s var(--ease);
}

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

.footer-social-links a img {
    width: 16px; height: 16px;
    opacity: .6;
    transition: all .3s;
}

.footer-social-links a:hover img { opacity: 1; filter: brightness(0) invert(1); }

.footer-bottom {
    max-width: var(--max-w);
    margin: 0 auto;
    padding-top: clamp(20px, 3vw, 30px);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-bottom span {
    font-size: 12px;
    font-weight: 300;
    color: #444;
    letter-spacing: .5px;
}

/* ============================================
   HOME TREATMENTS GRID
   ============================================ */
.home-treatments-grid {
    background: var(--cream);
    padding: clamp(50px, 6vw, 70px) 0;
}

.home-tx-header {
    text-align: center;
    margin-bottom: clamp(40px, 6vw, 60px);
}

.home-tx-header .section-title { margin-bottom: 0; }

.home-tx-cards {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 clamp(24px, 5vw, 80px);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.home-tx-card {
    background: var(--white);
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: all .5s var(--ease);
}

.home-tx-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 60px rgba(0,0,0,.08);
    border-color: transparent;
}

.home-tx-card-img {
    height: 220px;
    overflow: hidden;
}

.home-tx-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .8s var(--ease);
}

.home-tx-card:hover .home-tx-card-img img {
    transform: scale(1.06);
}

.home-tx-card-body {
    padding: 28px 30px 32px;
}

.home-tx-card-body h3 {
    font-family: var(--f-display);
    font-size: 22px;
    font-weight: 500;
    color: var(--charcoal);
    margin-bottom: 4px;
}

.home-tx-card-body .home-tx-sub {
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    display: block;
    margin-bottom: 10px;
}

.home-tx-card-body p {
    font-size: 14px;
    font-weight: 300;
    line-height: 1.8;
    color: var(--text-soft);
}

.home-tx-footer {
    text-align: center;
    margin-top: clamp(35px, 5vw, 50px);
}

/* ============================================
   BLOG PAGE
   ============================================ */
.blog-intro-section { background: var(--ivory); padding-top: 35px; padding-bottom: 35px; }

.blog-lead {
    font-size: clamp(18px, 2.2vw, 22px);
    font-weight: 300;
    line-height: 1.9;
    color: var(--text-soft);
    text-align: center;
}

.blog-body { background: var(--cream); }

.blog-grid {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 clamp(24px, 5vw, 80px);
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 360px), 1fr));
    gap: 28px;
}

.blog-card {
    background: var(--white);
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: all .5s var(--ease);
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 24px 60px rgba(0,0,0,.07);
    border-color: transparent;
}

.blog-card-img {
    height: 230px;
    overflow: hidden;
    position: relative;
}

.blog-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .8s var(--ease);
}

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

.blog-card-tag {
    position: absolute;
    top: 16px; left: 16px;
    background: var(--gold);
    color: var(--white);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 50px;
}

.blog-card-body {
    padding: 28px 28px 32px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-card-date {
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.blog-card-body h3 {
    font-family: var(--f-display);
    font-size: 22px;
    font-weight: 500;
    color: var(--charcoal);
    line-height: 1.3;
    margin-bottom: 12px;
}

.blog-card-body p {
    font-size: 14px;
    font-weight: 300;
    line-height: 1.8;
    color: var(--text-soft);
    flex: 1;
}

.blog-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-top: 16px;
    transition: gap .3s var(--ease);
}

.blog-card:hover .blog-card-link { gap: 12px; }

/* ============================================
   SHARED: Section Header + Carousel
   ============================================ */
.section-header {
    text-align: center;
    margin-bottom: clamp(28px, 4vw, 45px);
}

.section-header .section-title { margin-bottom: 0; }

.carousel-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: clamp(20px, 3vw, 30px);
}

.carousel-header > div:first-child { text-align: left; }

.carousel-arrows { display: flex; gap: 8px; }

.carousel-arrow {
    width: 44px; height: 44px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: var(--white);
    font-size: 17px;
    color: var(--text-soft);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s var(--ease);
}

.carousel-arrow:hover {
    background: var(--gold);
    color: var(--white);
    border-color: var(--gold);
}

.carousel-track {
    display: flex;
    flex-wrap: nowrap;
    gap: 20px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-behavior: smooth;
    padding-bottom: 4px;
}

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

/* ============================================
   YOUTUBE VIDEOS — Carousel
   ============================================ */
.videos-section { background: var(--cream); }

.video-card {
    flex: 0 0 480px;
    max-width: 85vw;
    scroll-snap-align: start;
    cursor: pointer;
}

.video-thumb {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    aspect-ratio: 16/9;
    background: var(--charcoal);
}

.video-thumb img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .6s var(--ease), opacity .3s;
    opacity: .85;
}

.video-card:hover .video-thumb img {
    transform: scale(1.06);
    opacity: 1;
}

.video-play-btn {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%) scale(.9);
    transition: transform .3s var(--ease);
    filter: drop-shadow(0 4px 12px rgba(0,0,0,.25));
}

.video-card:hover .video-play-btn { transform: translate(-50%, -50%) scale(1); }

.video-title {
    font-family: var(--f-body);
    font-size: 13px;
    font-weight: 400;
    color: var(--text-soft);
    margin-top: 10px;
    line-height: 1.4;
}

/* Video Modal */
.video-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgba(0,0,0,.9);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.video-modal.open { display: flex; }

.video-modal-close {
    position: absolute;
    top: 20px; right: 20px;
    width: 44px; height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,.1);
    color: #fff;
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
    transition: background .3s;
}

.video-modal-close:hover { background: rgba(255,255,255,.2); }

.video-modal iframe {
    width: 100%;
    max-width: 900px;
    aspect-ratio: 16/9;
    border: none;
    border-radius: 12px;
}

/* ============================================
   BEFORE & AFTER
   ============================================ */
.ba-section { background: var(--ivory); }

.ba-track { gap: 20px; }

.ba-card {
    flex: 0 0 500px;
    max-width: 85vw;
    scroll-snap-align: start;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    transition: all .4s var(--ease);
}

.ba-card:hover {
    box-shadow: 0 12px 40px rgba(0,0,0,.06);
}

/* Slider comparison */
.ba-slider {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    background: var(--cream-deep);
}

.ba-img {
    position: absolute;
    inset: 0;
}

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

.ba-before {
    clip-path: inset(0 50% 0 0);
}

.ba-label-tag {
    position: absolute;
    bottom: 10px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 50px;
    color: var(--white);
}

.ba-label-before { left: 10px; background: var(--charcoal); }
.ba-label-after { right: 10px; background: var(--gold); }

.ba-range {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    opacity: 0;
    cursor: ew-resize;
    z-index: 5;
    margin: 0;
}

.ba-handle {
    position: absolute;
    top: 0; bottom: 0;
    left: 50%;
    width: 3px;
    background: var(--white);
    z-index: 4;
    pointer-events: none;
    box-shadow: 0 0 8px rgba(0,0,0,.3);
}

.ba-handle::before {
    content: '⟨ ⟩';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 36px; height: 36px;
    border-radius: 50%;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    color: var(--charcoal);
    box-shadow: 0 2px 10px rgba(0,0,0,.2);
    letter-spacing: 4px;
}

.ba-info {
    padding: 16px 18px;
}

.ba-info h3 {
    font-family: var(--f-display);
    font-size: 18px;
    font-weight: 500;
    color: var(--charcoal);
    margin-bottom: 3px;
}

.ba-info p {
    font-size: 13px;
    font-weight: 300;
    color: var(--text-muted);
}

.ba-note {
    text-align: center;
    font-size: 11px;
    font-weight: 300;
    color: var(--text-muted);
    margin-top: 24px;
    font-style: italic;
}

/* ============================================
   REVIEWS / TESTIMONIALS SLIDER
   ============================================ */
.reviews-section { background: var(--cream); }

.reviews-track-wrap {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
}

.reviews-track {
    display: flex;
    gap: 18px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-behavior: smooth;
    padding: 8px 0;
}

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

/* Reviews meta (Google rating) */
.reviews-meta {
    margin-top: 8px;
    font-size: 13px;
    color: var(--text-muted);
}

.reviews-meta-rating {
    color: var(--gold);
    font-weight: 500;
}

.reviews-meta-count { font-weight: 300; }

.reviews-source-google_live { color: #34A853; font-size: 11px; }
.reviews-source-google_cached { color: var(--text-muted); font-size: 11px; }

.review-card {
    flex: 0 0 360px;
    max-width: 85vw;
    scroll-snap-align: start;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: clamp(22px, 3vw, 30px);
    transition: box-shadow .3s var(--ease);
}

.review-card:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,.05);
}

.review-card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.review-stars {
    color: var(--gold);
    font-size: 16px;
    letter-spacing: 2px;
}

.review-google-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    font-weight: 500;
    color: var(--text-muted);
    background: var(--cream);
    padding: 3px 10px;
    border-radius: 50px;
    border: 1px solid var(--border);
}

.review-avatar-img {
    width: 38px; height: 38px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.review-loading {
    flex: 0 0 100%;
}

.review-text {
    font-size: 14px;
    font-weight: 300;
    line-height: 1.7;
    color: var(--text-soft);
    margin-bottom: 16px;
    font-style: italic;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 10px;
}

.review-avatar {
    width: 38px; height: 38px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--white);
    font-size: 15px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.review-name {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--charcoal);
}

.review-date {
    display: block;
    font-size: 11px;
    font-weight: 300;
    color: var(--text-muted);
}

.review-arrow {
    width: 40px; height: 40px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: var(--white);
    font-size: 16px;
    color: var(--text-soft);
    cursor: pointer;
    flex-shrink: 0;
    transition: all .3s var(--ease);
    display: flex;
    align-items: center;
    justify-content: center;
}

.review-arrow:hover {
    background: var(--gold);
    color: var(--white);
    border-color: var(--gold);
}

.review-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 18px;
}

.review-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--border);
    cursor: pointer;
    transition: background .3s;
}

.review-dot.active { background: var(--gold); }

@media (max-width: 768px) {
    .review-arrow { display: none; }
    .review-card { flex: 0 0 85%; }
}

/* ============================================
   STICKY WHATSAPP + CALL
   ============================================ */
.sticky-btns {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 90;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sticky-btn {
    width: 56px; height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0,0,0,.15);
    transition: transform .3s var(--ease), box-shadow .3s;
}

.sticky-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(0,0,0,.2);
}

.sticky-whatsapp {
    background: #25D366;
    animation: stickyPulse 3s ease infinite;
}

.sticky-call { background: var(--gold); }

@keyframes stickyPulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,.3); }
    50% { box-shadow: 0 4px 30px rgba(37,211,102,.5), 0 0 0 8px rgba(37,211,102,.1); }
}

@media (max-width: 768px) {
    .sticky-btns { bottom: 16px; right: 16px; }
    .sticky-btn { width: 50px; height: 50px; }
}

/* ============================================
   ANIMATIONS
   ============================================ */
.reveal,
.reveal-left,
.reveal-right {
    opacity: 0;
    transition: opacity .9s var(--ease-out), transform .9s var(--ease-out);
}

.reveal      { transform: translateY(40px); }
.reveal-left { transform: translateX(-50px); }
.reveal-right{ transform: translateX(50px); }

.reveal.visible,
.reveal-left.visible,
.reveal-right.visible {
    opacity: 1;
    transform: none;
}

/* Hero fade-in stagger */
.anim-fade {
    opacity: 0;
    transform: translateY(25px);
    transition: opacity .8s var(--ease-out), transform .8s var(--ease-out);
}

.anim-fade.visible {
    opacity: 1;
    transform: none;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .home-tx-cards { grid-template-columns: repeat(2, 1fr); }

    .split-section { grid-template-columns: 1fr; }
    .split-reverse { direction: ltr; }
    .split-img-wrap { min-height: 350px; }

    .about-intro-grid { grid-template-columns: 1fr; }
    .about-intro-col-img { max-width: 340px; margin: 0 auto; }

    .timeline-block,
    .timeline-block.reverse { grid-template-columns: 1fr; direction: ltr; gap: 30px; }

    .contact-intro-row { grid-template-columns: 1fr; }
    .contact-intro-media { max-width: 500px; margin: 0 auto; }

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

@media (max-width: 768px) {
    :root { --header-h: 72px; }

    .nav-links-group { display: none; }
    .nav-logo-link { margin-right: auto; }
    .burger { display: flex; }

    .hero { min-height: 100vh; }
    .hero-title { font-size: clamp(34px, 9vw, 56px); }

    .hero-bg-img {
        object-position: 70% center;
    }
    .hero-scroll { display: none; }

    .marquee-strip { padding: 14px 0; }

    .credentials-inner { gap: 24px; }
    .credential-divider { width: 30px; height: 1px; }

    .home-tx-cards { grid-template-columns: 1fr; }

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

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

    .contact-card-grid { grid-template-columns: 1fr; }

    .custom-cursor { display: none; }
    body, a, button { cursor: auto !important; }

    .footer-main { grid-template-columns: 1fr; text-align: center; }
    .footer-social-links { justify-content: center; }
    .footer-logo-img { margin: 0 auto 14px; }
    .footer-bottom { justify-content: center; text-align: center; }
}

@media (max-width: 480px) {
    .hero-bg-img { object-position: 65% center; }
    .hero-btns { flex-direction: column; width: 100%; }
    .hero-btns .btn { width: 100%; justify-content: center; }
    .tx-card { padding: 24px; }
    .contact-card { padding: 30px 20px; }
}
