/* ============================================================
   Nagpal Joint Clinic — LUXURY REDESIGN v3
   Concept: Precision Gold — Dark elegance, gold authority, clinical precision
   Palette: Midnight #080C14 | Deep Navy #0D1B2A | Gold #C9973A | Teal #3BBFCC
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    --midnight:   #080C14;
    --navy:       #0D1B2A;
    --navy-2:     #122234;
    --navy-light: #1A3047;
    --gold:       #C9973A;
    --gold-light: #E8B857;
    --gold-pale:  rgba(201,151,58,0.12);
    --teal:       #3BBFCC;
    --teal-pale:  rgba(59,191,204,0.1);
    --white:      #FFFFFF;
    --off-white:  #F0F4F8;
    --muted:      #8899A6;
    --muted-2:    #C8D6E0;
    --green:      #2ECC8A;
    --red:        #E05353;

    --shadow-sm:  0 2px 12px rgba(0,0,0,0.18);
    --shadow:     0 8px 32px rgba(0,0,0,0.25);
    --shadow-lg:  0 20px 60px rgba(0,0,0,0.35);
    --shadow-gold:0 8px 32px rgba(201,151,58,0.25);
    --glow-teal:  0 0 40px rgba(59,191,204,0.2);

    --radius:     12px;
    --radius-lg:  20px;
    --radius-xl:  32px;
    --ease:       cubic-bezier(0.4, 0, 0.2, 1);
    --ease-spring:cubic-bezier(0.34, 1.56, 0.64, 1);
    --transition: all 0.35s var(--ease);

    --heading:    'Playfair Display', serif;
    --body:       'Inter', sans-serif;
}

/* ---- Reset ---- */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--body);
    font-size: 17px;
    line-height: 1.75;
    color: var(--muted-2);
    background: var(--midnight);
    overflow-x: hidden;
}
h1,h2,h3,h4,h5,h6 {
    font-family: var(--heading);
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 1rem;
}
h1 { font-size: clamp(40px, 5.5vw, 76px); font-weight: 800; letter-spacing: -1.5px; }
h2 { font-size: clamp(30px, 4vw, 52px); font-weight: 700; letter-spacing: -0.8px; }
h3 { font-size: clamp(20px, 2.2vw, 28px); font-weight: 700; }
h4 { font-size: 19px; font-weight: 700; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
.container { max-width: 1280px; margin: 0 auto; padding: 0 28px; }

/* ---- Gold line divider ---- */
.gold-line {
    width: 60px; height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    border-radius: 2px;
    margin: 0 auto 20px;
}

/* ---- Buttons ---- */
.btn {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 15px 32px; border-radius: 50px;
    font-family: var(--body); font-weight: 600; font-size: 15px;
    cursor: pointer; transition: var(--transition); border: none; gap: 8px;
    letter-spacing: 0.3px; white-space: nowrap;
}
.btn-primary {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    color: var(--midnight);
    box-shadow: var(--shadow-gold);
}
.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 14px 40px rgba(201,151,58,0.45);
}
.btn-sm { padding: 10px 22px; font-size: 13px; }
.btn-outline {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255,255,255,0.25);
    backdrop-filter: blur(8px);
}
.btn-outline:hover {
    background: rgba(255,255,255,0.08);
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-2px);
}
.btn-outline-gold {
    background: transparent;
    color: var(--gold);
    border: 1.5px solid var(--gold);
}
.btn-outline-gold:hover {
    background: var(--gold);
    color: var(--midnight);
    transform: translateY(-2px);
}
.btn-ghost {
    background: rgba(255,255,255,0.06);
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.12);
}
.btn-ghost:hover {
    background: rgba(255,255,255,0.12);
    color: var(--gold);
    transform: translateY(-2px);
}

/* ---- Section Header ---- */
.section-header { text-align: center; max-width: 700px; margin: 0 auto 72px; }
.section-header p { color: var(--muted); margin-top: 14px; font-size: 17px; line-height: 1.7; }

.section-label {
    display: inline-flex; align-items: center; gap: 8px;
    font-family: var(--body); font-size: 11px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 3px;
    color: var(--gold); margin-bottom: 18px;
}
.section-label::before,
.section-label::after {
    content: '';
    display: inline-block;
    width: 28px; height: 1px;
    background: var(--gold);
    opacity: 0.6;
}

/* ---- Animations ---- */
.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.fade-up.appear { opacity: 1; transform: translateY(0); }

.fade-in {
    opacity: 0;
    transition: opacity 1s var(--ease);
}
.fade-in.appear { opacity: 1; }

.slide-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.slide-left.appear { opacity: 1; transform: translateX(0); }

.slide-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.slide-right.appear { opacity: 1; transform: translateX(0); }

.stagger-1 { transition-delay: 0.1s !important; }
.stagger-2 { transition-delay: 0.2s !important; }
.stagger-3 { transition-delay: 0.3s !important; }
.stagger-4 { transition-delay: 0.4s !important; }
.stagger-5 { transition-delay: 0.5s !important; }
.stagger-6 { transition-delay: 0.6s !important; }

/* Noise texture overlay */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
    background-repeat: repeat;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.4;
}

/* ============================================================
   HEADER
   ============================================================ */
#mainHeader {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    transition: var(--transition);
}

/* Utility Bar */
.header-utility {
    background: var(--midnight);
    border-bottom: 1px solid rgba(201,151,58,0.12);
    font-size: 12.5px;
    padding: 9px 0;
    transition: var(--transition);
}
.header-utility .container { display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.utility-left { display: flex; gap: 24px; flex-wrap: wrap; }
.util-item { display: flex; align-items: center; gap: 6px; color: var(--muted); white-space: nowrap; }
.util-item svg { color: var(--gold); flex-shrink: 0; }
.util-item:hover { color: var(--gold-light); }
.utility-right { display: flex; align-items: center; gap: 20px; }
.util-hours {
    color: var(--muted);
    font-size: 12px;
    display: flex; align-items: center; gap: 6px;
}
.util-hours::before {
    content: '';
    width: 7px; height: 7px;
    background: var(--green);
    border-radius: 50%;
    animation: pulse-green 2s infinite;
}
@keyframes pulse-green {
    0%,100%{ box-shadow: 0 0 0 0 rgba(46,204,138,0.4); }
    50%    { box-shadow: 0 0 0 5px rgba(46,204,138,0); }
}
.lang-switcher { display: flex; align-items: center; gap: 8px; font-size: 12px; }
.lang-switcher a { color: var(--muted); font-weight: 600; padding: 2px 6px; border-radius: 4px; }
.lang-switcher a:hover { color: var(--gold); background: var(--gold-pale); }
.lang-switcher span { color: rgba(255,255,255,0.15); }

/* Main Nav Bar */
.header-main {
    background: rgba(8,12,20,0.85);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    padding: 0;
    transition: var(--transition);
}
#mainHeader.scrolled .header-utility { max-height: 0; overflow: hidden; padding: 0; border: none; }
#mainHeader.scrolled .header-main {
    background: rgba(8,12,20,0.96);
    border-bottom-color: rgba(201,151,58,0.2);
    box-shadow: 0 4px 30px rgba(0,0,0,0.4);
}
.header-main .container { display: flex; align-items: center; gap: 20px; height: 76px; }

/* Logo */
.logo { display: flex; align-items: center; gap: 14px; text-decoration: none; flex-shrink: 0; }
.logo img { height: 44px; width: auto; filter: brightness(1.1); }
.logo-text { display: flex; flex-direction: column; line-height: 1.15; }
.logo-name {
    font-family: var(--heading);
    font-size: 18px; font-weight: 700;
    color: var(--white);
    letter-spacing: -0.3px;
}
.logo-tag {
    font-size: 10.5px; color: var(--gold);
    font-weight: 600; letter-spacing: 1.5px;
    text-transform: uppercase;
}

/* Nav List */
.main-nav { margin-left: auto; }
.nav-list { display: flex; align-items: center; gap: 2px; }
.nav-link {
    display: flex; align-items: center; gap: 5px;
    font-weight: 500; font-size: 14px;
    color: rgba(255,255,255,0.75);
    padding: 8px 14px; border-radius: 8px;
    white-space: nowrap; position: relative;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 4px; left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 16px; height: 1.5px;
    background: var(--gold);
    border-radius: 2px;
    transition: transform 0.3s var(--ease);
}
.nav-link:hover { color: var(--white); background: rgba(255,255,255,0.06); }
.nav-link:hover::after { transform: translateX(-50%) scaleX(1); }
.nav-link .chevron { transition: transform 0.25s var(--ease); opacity: 0.5; }
.has-mega:hover .nav-link .chevron { transform: rotate(180deg); color: var(--gold); opacity: 1; }

/* Mega Panel */
.has-mega { position: relative; }
.mega-panel {
    position: absolute; top: calc(100% + 16px); left: 50%;
    transform: translateX(-50%) translateY(12px);
    background: var(--navy);
    min-width: 820px;
    box-shadow: var(--shadow-lg), 0 0 0 1px rgba(201,151,58,0.15);
    border-radius: var(--radius-lg);
    padding: 36px;
    opacity: 0; pointer-events: none;
    transition: opacity 0.25s var(--ease), transform 0.25s var(--ease);
}
.mega-panel::before {
    content: '';
    position: absolute;
    top: -1px; left: 50%; transform: translateX(-50%);
    width: 80%; height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.has-mega:hover .mega-panel { opacity: 1; pointer-events: auto; transform: translateX(-50%) translateY(0); }
.mega-inner { display: grid; grid-template-columns: 1fr 1fr 1fr 190px; gap: 32px; }
.mega-heading {
    font-size: 10px; font-weight: 700; text-transform: uppercase;
    letter-spacing: 2px; color: var(--gold);
    margin-bottom: 16px; display: flex; align-items: center; gap: 6px;
}
.mega-col ul li { margin-bottom: 10px; }
.mega-col ul li a {
    font-size: 14px; font-weight: 400;
    color: var(--muted);
    display: flex; align-items: center; gap: 6px;
    padding: 4px 0;
}
.mega-col ul li a::before {
    content: '';
    width: 4px; height: 4px;
    background: var(--gold); border-radius: 50%;
    opacity: 0; flex-shrink: 0;
    transition: opacity 0.2s;
}
.mega-col ul li a:hover { color: var(--white); }
.mega-col ul li a:hover::before { opacity: 1; }
.mega-cta {
    background: linear-gradient(135deg, var(--gold-pale), rgba(59,191,204,0.08));
    border-radius: var(--radius);
    border: 1px solid rgba(201,151,58,0.2);
    padding: 24px 20px; text-align: center;
    display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.mega-cta img {
    width: 72px; height: 72px; border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--gold);
    box-shadow: 0 0 20px rgba(201,151,58,0.3);
}
.cta-name { font-weight: 700; font-size: 14px; color: var(--white); }
.cta-title { font-size: 11.5px; color: var(--muted); line-height: 1.4; }

/* Header Actions */
.header-actions { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.call-btn {
    display: flex; align-items: center; gap: 7px;
    font-weight: 600; font-size: 13.5px;
    color: rgba(255,255,255,0.8);
    padding: 8px 16px; border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.1);
    white-space: nowrap; transition: var(--transition);
}
.call-btn:hover { border-color: var(--teal); color: var(--teal); background: var(--teal-pale); }
.call-btn svg { color: var(--teal); }

/* Hamburger */
.hamburger {
    display: none; flex-direction: column; gap: 5px;
    background: none; border: none; cursor: pointer; padding: 6px;
}
.hamburger span {
    display: block; width: 22px; height: 1.5px;
    background: var(--white); border-radius: 2px; transition: var(--transition);
}
.hamburger span:nth-child(2) { width: 16px; }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(4.5px, 4.5px); }
.hamburger.active span:nth-child(2) { opacity: 0; width: 22px; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(4.5px, -4.5px); }

/* Mobile overlay */
.mobile-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.7); z-index: 999; backdrop-filter: blur(4px); }
.mobile-overlay.active { display: block; }

/* ============================================================
   HERO  (Section 1)
   ============================================================ */
.hero {
    min-height: 100svh;
    display: flex; align-items: center;
    padding: 150px 0 86px;
    position: relative; overflow: hidden;
    background: var(--midnight);
}

/* Particle canvas */
.hero-particles {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    pointer-events: none; z-index: 0;
}

/* Animated grid background */
.hero::before {
    content: '';
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(59,191,204,0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(59,191,204,0.05) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}

/* Glowing orbs */
.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
    animation: orb-float 8s ease-in-out infinite;
}
.orb1 {
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(201,151,58,0.15) 0%, transparent 70%);
    top: -200px; right: -100px;
}
.orb2 {
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(59,191,204,0.12) 0%, transparent 70%);
    bottom: -100px; left: -80px;
    animation-delay: -4s;
}
.orb3 {
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(201,151,58,0.08) 0%, transparent 70%);
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: -2s;
}
@keyframes orb-float {
    0%,100% { transform: translateY(0) scale(1); }
    50%      { transform: translateY(-30px) scale(1.05); }
}

.hero .container { position: relative; z-index: 1; }
.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.94fr) minmax(480px, 1.06fr);
    gap: clamp(42px, 6vw, 92px); align-items: center;
}

/* Hero Badge */
.hero-badge {
    display: inline-flex; align-items: center; gap: 10px;
    font-size: 12px; font-weight: 600;
    color: var(--gold);
    background: rgba(201,151,58,0.1);
    border: 1px solid rgba(201,151,58,0.25);
    padding: 7px 18px; border-radius: 50px;
    margin-bottom: 28px; letter-spacing: 1px; text-transform: uppercase;
}
.badge-live {
    width: 8px; height: 8px;
    background: var(--green); border-radius: 50%;
    animation: pulse-green 2s infinite;
    flex-shrink: 0;
}

/* Hero Text */
.hero-text { }
.hero-text h1 {
    margin-bottom: 24px;
    font-size: clamp(46px, 6vw, 82px);
    line-height: 1.03;
    background: linear-gradient(135deg, var(--white) 0%, rgba(255,255,255,0.7) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-text h1 em {
    font-style: normal;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-text p {
    font-size: 18px; color: var(--muted);
    margin-bottom: 40px; max-width: 520px;
    line-height: 1.8;
}
.hero-proof-line {
    display: flex; align-items: center; flex-wrap: wrap; gap: 9px 10px;
    color: rgba(255,255,255,0.54); font-size: 12px; letter-spacing: .15px;
    margin: -22px 0 34px;
}
.hero-proof-line strong { color: var(--white); font-weight: 600; }
.proof-check {
    display: inline-flex; align-items: center; justify-content: center;
    width: 18px; height: 18px; border-radius: 50%;
    color: var(--midnight); background: var(--teal); font-size: 11px; font-weight: 800;
}
.proof-separator { width: 1px; height: 18px; background: rgba(255,255,255,0.16); margin: 0 4px; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }

/* Trust Row */
.hero-trust { display: flex; flex-wrap: wrap; gap: 12px; }
.trust-chip {
    display: flex; align-items: center; gap: 7px;
    font-size: 12.5px; font-weight: 500;
    color: var(--muted-2);
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    padding: 7px 16px; border-radius: 50px;
    backdrop-filter: blur(8px);
}
.trust-chip svg { color: var(--green); flex-shrink: 0; }

/* Hero Visual */
.hero-visual {
    position: relative; display: flex; flex-direction: column;
    justify-content: center; align-items: stretch; padding: 18px 14px 0 12px;
}
.hero-visual-kicker {
    display: flex; align-items: center; gap: 9px; margin: 0 0 14px 10px;
    color: rgba(255,255,255,0.58); font-size: 10px; letter-spacing: 2px;
    text-transform: uppercase; font-weight: 700;
}
.hero-kicker-dot, .status-pulse {
    width: 7px; height: 7px; display: inline-block; border-radius: 50%;
    background: var(--teal); box-shadow: 0 0 0 4px rgba(59,191,204,0.11);
    animation: pulse-green 2s infinite;
}
.hero-kicker-line { height: 1px; flex: 1; background: linear-gradient(90deg, rgba(59,191,204,0.5), transparent); }
.hero-treatment-frame {
    position: relative; width: min(100%, 560px); aspect-ratio: 1 / 1;
    overflow: hidden; background: #07141e; border: 1px solid rgba(201,151,58,0.42);
    box-shadow: 0 28px 70px rgba(0,0,0,0.42), 0 0 0 8px rgba(201,151,58,0.035), 0 0 55px rgba(59,191,204,0.08);
    border-radius: 3px;
}
.hero-treatment-frame::before {
    content: ''; position: absolute; inset: 10px; z-index: 5; pointer-events: none;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 1px;
}
.hero-slider, .hero-slide { position: absolute; inset: 0; }
.hero-slide { opacity: 0; transform: scale(1.06); transition: opacity 1s ease, transform 6s ease; }
.hero-slide.active { opacity: 1; transform: scale(1); }
.hero-slide::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(3,10,17,0.08) 28%, rgba(3,10,17,0.16) 48%, rgba(3,10,17,0.96) 100%),
        linear-gradient(90deg, rgba(3,10,17,0.28), transparent 60%);
}
.hero-slide img { width: 100%; height: 100%; object-fit: cover; display: block; filter: saturate(0.82) contrast(1.08) brightness(0.88); }
.hero-slide:nth-child(2) img { object-position: center; }
.hero-slide:nth-child(3) img { object-position: center 20%; }
.hero-slide:nth-child(4) img { object-position: center; }
.hero-frame-grid {
    position: absolute; inset: 0; z-index: 2; opacity: 0.26; pointer-events: none;
    background-image: linear-gradient(rgba(91,218,222,0.14) 1px, transparent 1px), linear-gradient(90deg, rgba(91,218,222,0.14) 1px, transparent 1px);
    background-size: 42px 42px; mask-image: linear-gradient(transparent, black 30%, black 72%, transparent);
}
.hero-scan-line {
    position: absolute; z-index: 4; left: 9%; right: 9%; height: 1px; top: 18%;
    background: linear-gradient(90deg, transparent, rgba(91,218,222,0.9), transparent);
    box-shadow: 0 0 14px rgba(91,218,222,0.8); animation: scan-treatment 4.8s ease-in-out infinite;
}
@keyframes scan-treatment { 0%,100% { top: 19%; opacity: 0; } 12% { opacity: 1; } 86% { opacity: 1; } 94% { top: 82%; opacity: 0; } }
.hero-live-label, .hero-procedure-label {
    position: absolute; z-index: 7; top: 24px; color: rgba(255,255,255,0.72);
    font-size: 9px; font-weight: 700; letter-spacing: 1.6px;
}
.hero-live-label { left: 25px; display: flex; align-items: center; gap: 7px; }
.hero-procedure-label { right: 25px; color: var(--gold-light); }
.hero-joint-target {
    position: absolute; z-index: 5; left: 57%; top: 49%;
    width: 102px; height: 102px; transform: translate(-50%, -50%);
    border: 1px solid rgba(91,218,222,0.22); border-radius: 50%;
    display: grid; place-items: center; opacity: .9;
    animation: target-drift 5s ease-in-out infinite;
}
.hero-joint-target::before, .hero-joint-target::after {
    content: ''; position: absolute; background: rgba(91,218,222,0.55);
}
.hero-joint-target::before { width: 142px; height: 1px; }
.hero-joint-target::after { width: 1px; height: 142px; }
.joint-ring { position: absolute; border: 1px solid rgba(91,218,222,0.4); border-radius: 50%; }
.ring-one { inset: 14px; animation: ring-pulse 2.8s ease-in-out infinite; }
.ring-two { inset: 30px; border-color: rgba(201,151,58,0.65); animation: ring-pulse 2.8s ease-in-out infinite reverse; }
.joint-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold-light); box-shadow: 0 0 0 6px rgba(201,151,58,0.14), 0 0 20px var(--gold); z-index: 1; }
@keyframes target-drift { 0%,100% { transform: translate(-50%, -50%) scale(.94); } 50% { transform: translate(-50%, -50%) scale(1.05); } }
@keyframes ring-pulse { 0%,100% { opacity: .35; transform: scale(.9); } 50% { opacity: 1; transform: scale(1); } }
.frame-corner { position: absolute; z-index: 6; width: 25px; height: 25px; border-color: var(--gold-light); border-style: solid; opacity: 0.92; }
.corner-tl { top: 20px; left: 20px; border-width: 2px 0 0 2px; }.corner-tr { top: 20px; right: 20px; border-width: 2px 2px 0 0; }
.corner-bl { bottom: 20px; left: 20px; border-width: 0 0 2px 2px; }.corner-br { bottom: 20px; right: 20px; border-width: 0 2px 2px 0; }
.hero-treatment-status {
    position: absolute; z-index: 7; left: 27px; bottom: 27px; display: grid; gap: 3px;
    color: rgba(255,255,255,0.58); font-size: 9px; letter-spacing: 1.8px; text-transform: uppercase;
}
.hero-treatment-status .status-pulse { margin-right: 5px; vertical-align: middle; width: 6px; height: 6px; }
.hero-treatment-status strong { color: var(--white); font-family: var(--body); font-size: 16px; letter-spacing: 0; text-transform: none; font-weight: 600; }
.hero-treatment-status small { color: rgba(255,255,255,0.58); font-size: 11px; letter-spacing: 0; text-transform: none; }
.hero-precision-tag {
    position: absolute; z-index: 7; right: 24px; top: 26px; display: flex; align-items: center; gap: 7px;
    padding: 8px 10px; color: var(--teal-light); font-size: 10px; background: rgba(4,18,26,0.7);
    border: 1px solid rgba(59,191,204,0.3); backdrop-filter: blur(10px);
}
.hero-precision-tag svg { animation: precision-spin 5s linear infinite; }
@keyframes precision-spin { to { transform: rotate(360deg); } }
.hero-crosshair { position: absolute; z-index: 5; width: 32px; height: 32px; border: 1px solid rgba(91,218,222,0.45); border-radius: 50%; opacity: 0.8; animation: crosshair-pulse 3s ease-in-out infinite; }
.hero-crosshair::before, .hero-crosshair::after { content: ''; position: absolute; background: rgba(91,218,222,0.6); }
.hero-crosshair::before { width: 44px; height: 1px; top: 15px; left: -7px; }.hero-crosshair::after { height: 44px; width: 1px; left: 15px; top: -7px; }
.crosshair-one { top: 38%; right: 26%; }.crosshair-two { top: 58%; left: 27%; animation-delay: -1.4s; transform: scale(0.65); }
@keyframes crosshair-pulse { 0%,100% { opacity: .15; transform: scale(.85); } 50% { opacity: .8; transform: scale(1); } }
.hero-slider-controls { display: flex; align-items: center; gap: 8px; margin: 15px 8px 0; }
.hero-slide-dot { width: 26px; height: 3px; padding: 0; border: 0; cursor: pointer; background: rgba(255,255,255,0.2); transition: var(--transition); }
.hero-slide-dot.active { width: 52px; background: var(--gold); box-shadow: 0 0 10px rgba(201,151,58,0.45); }
.hero-slide-count { margin-left: auto; color: rgba(255,255,255,0.36); font-size: 11px; letter-spacing: 1px; }
.hero-slide-count b { color: var(--gold-light); }
.hero-treatment-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; margin: 19px 8px 0; }
.treatment-step { position: relative; padding: 11px 10px; border-top: 1px solid rgba(255,255,255,0.12); color: rgba(255,255,255,0.38); transition: var(--transition); }
.treatment-step::before { content: ''; position: absolute; top: -1px; left: 0; width: 0; height: 1px; background: var(--teal); transition: width .8s ease; }
.treatment-step.active { color: var(--white); }.treatment-step.active::before { width: 100%; }
.treatment-step span { display: block; color: var(--gold); font-size: 10px; letter-spacing: 1px; margin-bottom: 5px; }
.treatment-step strong { display: block; font: 600 13px var(--body); }.treatment-step small { display: block; margin-top: 2px; color: var(--muted); font-size: 10px; }

/* Floating Cards */
.hero-float-card {
    position: absolute;
    background: rgba(13,27,42,0.9);
    border: 1px solid rgba(201,151,58,0.2);
    backdrop-filter: blur(16px);
    border-radius: var(--radius);
    padding: 14px 18px;
    display: flex; align-items: center; gap: 12px;
    box-shadow: var(--shadow-lg);
    font-size: 13px; line-height: 1.35;
    z-index: 10;
    animation: card-float 4s ease-in-out infinite;
}
.hero-float-card:nth-child(2) { animation-delay: -2s; }
.hero-float-card strong { display: block; font-size: 14px; color: var(--white); font-family: var(--body); font-weight: 600; }
.hero-float-card small { color: var(--muted); }
.card-f1 { top: 50px; left: -40px; }
.card-f2 { bottom: 80px; right: -30px; }
.card-icon {
    width: 40px; height: 40px; border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; font-size: 18px;
}
.card-icon.gold { background: linear-gradient(135deg, var(--gold-pale), rgba(201,151,58,0.2)); }
.card-icon.teal { background: linear-gradient(135deg, var(--teal-pale), rgba(59,191,204,0.15)); }
@keyframes card-float {
    0%,100% { transform: translateY(0); }
    50%      { transform: translateY(-8px); }
}

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
    padding: 0;
    background: var(--navy);
    border-top: 1px solid rgba(255,255,255,0.04);
    border-bottom: 1px solid rgba(255,255,255,0.04);
    position: relative; overflow: hidden;
}
.stats-bar::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--gold) 50%, transparent 100%);
    opacity: 0.4;
}
.stats-grid {
    display: flex; align-items: stretch; justify-content: center;
    flex-wrap: wrap;
}
.stat-item {
    text-align: center; padding: 40px 48px;
    flex: 1; min-width: 160px;
    border-right: 1px solid rgba(255,255,255,0.05);
    position: relative;
    transition: background 0.3s;
}
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: rgba(201,151,58,0.05); }
.stat-num-wrap { display: flex; align-items: baseline; justify-content: center; gap: 2px; }
.stat-num {
    font-family: var(--heading); font-size: clamp(36px,4vw,54px);
    font-weight: 700; color: var(--gold); line-height: 1;
}
.stat-suffix {
    font-family: var(--heading); font-size: clamp(24px,2.5vw,36px);
    font-weight: 700; color: var(--gold-light); line-height: 1;
}
.stat-item p { color: var(--muted); font-size: 13px; margin-top: 8px; letter-spacing: 0.5px; text-transform: uppercase; }

/* ============================================================
   APPOINTMENT STRIP
   ============================================================ */
.appt-section { padding: 100px 0; background: var(--midnight); }
.appt-card {
    background: var(--navy);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(201,151,58,0.15);
    padding: 52px 60px;
    position: relative; overflow: hidden;
}
.appt-card::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0.5;
}
.appt-inner { display: grid; grid-template-columns: 1fr 2fr; gap: 60px; align-items: center; }
.appt-left h3 { font-size: 30px; margin-bottom: 12px; color: var(--white); }
.appt-left p { color: var(--muted); font-size: 15px; line-height: 1.6; margin: 0; }
.appt-badge {
    display: inline-flex; align-items: center; gap: 7px;
    background: rgba(46,204,138,0.1); color: var(--green);
    border: 1px solid rgba(46,204,138,0.2);
    font-weight: 600; font-size: 12px;
    padding: 6px 14px; border-radius: 50px;
    margin-top: 14px; letter-spacing: 0.5px;
}
.appt-fields { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; margin-bottom: 20px; }
.form-field label {
    display: block; font-size: 12px; font-weight: 600;
    color: var(--muted); margin-bottom: 8px;
    text-transform: uppercase; letter-spacing: 0.8px;
}
.form-field input, .form-field select {
    width: 100%; padding: 14px 18px;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius);
    font-family: var(--body); font-size: 14px;
    color: var(--white);
    background: rgba(255,255,255,0.04);
    transition: var(--transition); outline: none;
    -webkit-appearance: none;
}
.form-field input::placeholder { color: rgba(255,255,255,0.25); }
.form-field select option { background: var(--navy); color: var(--white); }
.form-field input:focus, .form-field select:focus {
    border-color: var(--gold);
    background: rgba(201,151,58,0.05);
    box-shadow: 0 0 0 3px rgba(201,151,58,0.1);
}
.appt-submit { width: 100%; padding: 16px; font-size: 15px; font-weight: 700; letter-spacing: 0.5px; }

/* ============================================================
   TREATMENTS
   ============================================================ */
.treatments-section {
    padding: 128px 0 112px;
    background:
        radial-gradient(circle at 8% 18%, rgba(59,191,204,0.07), transparent 28%),
        radial-gradient(circle at 92% 74%, rgba(201,151,58,0.065), transparent 30%),
        var(--navy);
    position: relative; overflow: hidden;
}
.treatments-section::before {
    content: ''; position: absolute; inset: 0; pointer-events: none; opacity: .22;
    background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: linear-gradient(90deg, transparent, black 20%, black 80%, transparent);
}
.treatments-section .container { position: relative; z-index: 1; }
.treatments-heading {
    display: flex; align-items: flex-end; justify-content: space-between; gap: 40px;
    margin-bottom: 48px;
}
.treatments-heading-copy { max-width: 640px; }
.treatments-heading-copy h2 { margin: 9px 0 16px; font-size: clamp(36px, 4.4vw, 58px); line-height: 1.04; }
.treatments-heading-copy h2 em {
    font-style: normal; color: var(--gold-light);
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.treatments-heading-copy p { max-width: 590px; margin: 0; color: var(--muted); font-size: 16px; line-height: 1.75; }
.treatments-heading-note {
    display: flex; align-items: center; gap: 12px; padding: 14px 18px;
    border: 1px solid rgba(59,191,204,.2); background: rgba(59,191,204,.06);
    border-radius: 12px; min-width: 226px; margin-bottom: 5px;
}
.treatments-note-icon {
    width: 38px; height: 38px; display: grid; place-items: center; color: var(--teal);
    background: rgba(59,191,204,.1); border: 1px solid rgba(59,191,204,.25); border-radius: 10px;
}
.treatments-heading-note strong { display: block; color: var(--white); font-size: 13px; font-weight: 600; }
.treatments-heading-note small { display: block; color: var(--muted); font-size: 11px; margin-top: 2px; }
.treatment-featured {
    display: grid; grid-template-columns: 1.12fr .88fr; min-height: 390px;
    background: linear-gradient(115deg, #091522, #101d2b 60%, #0d1824);
    border: 1px solid rgba(201,151,58,.2); border-radius: 24px; overflow: hidden;
    position: relative; margin-bottom: 28px; transition: var(--transition);
    box-shadow: 0 20px 60px rgba(0,0,0,.18);
}
.treatment-featured:hover { transform: translateY(-5px); border-color: rgba(201,151,58,.5); box-shadow: 0 28px 70px rgba(0,0,0,.32), 0 0 45px rgba(201,151,58,.08); }
.treatment-featured-image { min-height: 390px; position: relative; overflow: hidden; }
.treatment-featured-image img {
    width: 100%; height: 100%; object-fit: cover; display: block; filter: saturate(.85) contrast(1.08) brightness(.78);
    transition: transform 1s var(--ease), filter .6s var(--ease);
}
.treatment-featured:hover .treatment-featured-image img { transform: scale(1.06); filter: saturate(1) contrast(1.08) brightness(.86); }
.treatment-featured-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(90deg, rgba(5,12,19,.04) 12%, rgba(5,12,19,.16) 45%, rgba(9,21,34,.98) 100%),
        linear-gradient(0deg, rgba(5,12,19,.68), transparent 48%);
}
.treatment-featured-index, .treatment-featured-badge {
    position: absolute; z-index: 2; top: 24px; font-size: 10px; letter-spacing: 1.8px; font-weight: 700;
}
.treatment-featured-index { left: 26px; color: rgba(255,255,255,.78); }
.treatment-featured-index i { display: inline-block; width: 28px; height: 1px; background: var(--gold); vertical-align: middle; margin: 0 8px; }
.treatment-featured-badge {
    right: 24px; display: flex; align-items: center; gap: 7px; color: var(--teal);
    padding: 8px 11px; border: 1px solid rgba(59,191,204,.28); border-radius: 50px;
    background: rgba(5,15,23,.64); backdrop-filter: blur(10px); letter-spacing: .8px;
}
.treatment-featured-badge .badge-live { width: 6px; height: 6px; }
.treatment-image-corner { position: absolute; z-index: 2; width: 36px; height: 36px; border-color: var(--gold-light); border-style: solid; opacity: .9; }
.treatment-image-corner.corner-tl { top: 20px; left: 20px; border-width: 2px 0 0 2px; }
.treatment-image-corner.corner-br { bottom: 20px; right: 20px; border-width: 0 2px 2px 0; }
.treatment-featured-content { padding: 52px 54px 42px 30px; display: flex; flex-direction: column; justify-content: center; position: relative; }
.treatment-featured-content::before {
    content: ''; position: absolute; right: 42px; top: 50%; width: 180px; height: 180px; transform: translateY(-50%);
    border: 1px solid rgba(59,191,204,.08); border-radius: 50%; box-shadow: 0 0 0 26px rgba(59,191,204,.025), 0 0 0 52px rgba(59,191,204,.018);
    pointer-events: none;
}
.treatment-eyebrow { color: var(--teal); font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 14px; }
.treatment-featured-content h3 { position: relative; z-index: 1; font-size: clamp(30px, 3vw, 44px); line-height: 1.03; margin-bottom: 16px; }
.treatment-featured-content h3 em { color: var(--gold-light); font-style: normal; }
.treatment-featured-content > p { position: relative; z-index: 1; color: var(--muted); font-size: 14px; line-height: 1.7; max-width: 360px; margin-bottom: 22px; }
.treatment-featured-points { position: relative; z-index: 1; display: flex; flex-wrap: wrap; gap: 8px 18px; margin-bottom: 26px; }
.treatment-featured-points span { color: rgba(255,255,255,.62); font-size: 11px; }
.treatment-featured-points b { color: var(--gold); font-size: 10px; margin-right: 4px; }
.treatment-featured-link { position: relative; z-index: 1; display: inline-flex; align-items: center; gap: 10px; color: var(--gold-light); font-size: 13px; font-weight: 700; }
.treatment-featured-link i { font-size: 18px; font-style: normal; transition: transform .3s ease; }
.treatment-featured:hover .treatment-featured-link i { transform: translate(4px, -4px); }
.treatments-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.treat-card {
    background: rgba(6,12,20,.68);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 16px;
    overflow: hidden;
    display: flex; flex-direction: column;
    transition: var(--transition);
    position: relative;
    cursor: pointer; min-width: 0;
}
.treat-card::after {
    content: '';
    position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--teal));
    transform: scaleX(0);
    transition: transform 0.4s var(--ease);
    transform-origin: left;
}
.treat-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: rgba(201,151,58,0.35); background: rgba(13,27,42,.92); }
.treat-card:hover::after { transform: scaleX(1); }
.treat-card-top { display: flex; align-items: center; justify-content: space-between; padding: 16px 18px 0; position: absolute; top: 0; left: 0; right: 0; z-index: 2; }
.treat-number { font-size: 10px; color: var(--gold-light); font-weight: 700; letter-spacing: 1px; }
.treat-card-arrow { width: 28px; height: 28px; display: grid; place-items: center; color: rgba(255,255,255,.62); border: 1px solid rgba(255,255,255,.14); border-radius: 50%; font-size: 15px; transition: var(--transition); }
.treat-card:hover .treat-card-arrow { color: var(--midnight); background: var(--gold); border-color: var(--gold); transform: rotate(8deg); }
.treat-icon {
    padding: 35px 22px 24px; height: 142px; display: flex; align-items: center; justify-content: center;
    background: linear-gradient(145deg, rgba(59,191,204,.08), rgba(201,151,58,.03));
    position: relative; overflow: hidden;
}
.treat-icon::after {
    content: ''; position: absolute; width: 100px; height: 100px; border: 1px solid rgba(59,191,204,.12);
    border-radius: 50%; box-shadow: 0 0 0 16px rgba(59,191,204,.025); 
}
.treat-icon img { position: relative; z-index: 1; width: 92px; height: 92px; object-fit: contain; filter: saturate(1.2) drop-shadow(0 8px 12px rgba(0,0,0,.3)); transition: transform .6s var(--ease); }
.treat-card:hover .treat-icon img { transform: scale(1.12) rotate(-3deg); }
.treat-body { padding: 20px 20px 23px; flex: 1; display: flex; flex-direction: column; }
.treat-category { color: var(--teal); font-size: 9px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.2px; margin-bottom: 8px; }
.treat-body h3 { font-size: 18px; margin-bottom: 8px; color: var(--white); }
.treat-body p { color: var(--muted); font-size: 12.5px; flex: 1; line-height: 1.6; }
.treat-link {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 13px; font-weight: 600; color: var(--gold);
    margin-top: 18px;
    transition: gap 0.3s;
}
.treat-card:hover .treat-link { gap: 10px; }
.treatments-footer { display: flex; justify-content: center; align-items: center; gap: 10px; margin-top: 32px; color: var(--muted); font-size: 13px; }
.treatments-footer a { display: inline-flex; align-items: center; gap: 7px; color: var(--gold); font-weight: 600; }
.treatments-footer a:hover { color: var(--gold-light); gap: 10px; }

/* ============================================================
   ABOUT DR. NAGPAL
   ============================================================ */
.about-section { padding: 120px 0; background: var(--midnight); }
.about-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 90px; align-items: center; }
.about-img-wrap { position: relative; }
.about-doc-img {
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    width: 100%; max-width: 440px;
    filter: brightness(0.95) contrast(1.05);
}
.about-frame {
    position: absolute; inset: -12px;
    border: 1px solid rgba(201,151,58,0.2);
    border-radius: calc(var(--radius-xl) + 12px);
    pointer-events: none;
}
.about-frame::before {
    content: '';
    position: absolute; top: 20px; right: 20px;
    width: 60px; height: 60px;
    border-top: 2px solid var(--gold);
    border-right: 2px solid var(--gold);
    border-radius: 0 8px 0 0;
}
.about-frame::after {
    content: '';
    position: absolute; bottom: 20px; left: 20px;
    width: 60px; height: 60px;
    border-bottom: 2px solid var(--gold);
    border-left: 2px solid var(--gold);
    border-radius: 0 0 0 8px;
}
.about-exp-badge {
    position: absolute; bottom: -24px; right: -24px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    color: var(--midnight);
    padding: 22px 28px; border-radius: var(--radius-lg);
    text-align: center; box-shadow: var(--shadow-gold);
}
.about-exp-badge strong {
    font-family: var(--heading); font-size: 40px;
    font-weight: 800; display: block; line-height: 1; color: var(--midnight);
}
.about-exp-badge span { font-size: 12px; font-weight: 700; color: var(--midnight); opacity: 0.75; line-height: 1.3; }

.about-text h2 { margin-top: 12px; margin-bottom: 10px; }
.about-title-tag {
    font-size: 14px; color: var(--teal); font-weight: 600;
    margin-bottom: 20px; display: block;
    letter-spacing: 0.5px;
}
.about-text > p { color: var(--muted); margin-bottom: 32px; font-size: 16px; line-height: 1.8; }
.about-credentials { display: flex; flex-direction: column; gap: 14px; margin-bottom: 36px; }
.cred-item {
    display: flex; align-items: center; gap: 14px;
    font-size: 15px; font-weight: 500; color: var(--muted-2);
    padding: 12px 16px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius);
}
.cred-icon {
    width: 36px; height: 36px; border-radius: 8px;
    background: var(--gold-pale);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; color: var(--gold); font-size: 16px;
}

/* ============================================================
   ROBOTIC TECH
   ============================================================ */
.robo-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #060A10 0%, #0D1F35 60%, #0A1520 100%);
    position: relative; overflow: hidden;
}
.robo-section::before {
    content: '';
    position: absolute; inset: 0;
    background-image: radial-gradient(circle at 20% 50%, rgba(59,191,204,0.08) 0%, transparent 50%),
                      radial-gradient(circle at 80% 50%, rgba(201,151,58,0.08) 0%, transparent 50%);
}
.robo-section::after {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Ccircle cx='20' cy='20' r='0.5' fill='%2362B7C1' fill-opacity='0.15'/%3E%3C/g%3E%3C/svg%3E");
}
.robo-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 90px; align-items: center; position: relative; z-index: 1; }
.robo-features { display: flex; flex-direction: column; gap: 20px; margin: 36px 0; }
.robo-feat {
    display: flex; gap: 18px; align-items: flex-start;
    padding: 20px 24px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius);
    transition: var(--transition);
}
.robo-feat:hover { background: rgba(59,191,204,0.06); border-color: rgba(59,191,204,0.2); }
.robo-feat-icon {
    width: 44px; height: 44px; border-radius: 10px;
    background: var(--teal-pale); border: 1px solid rgba(59,191,204,0.2);
    display: flex; align-items: center; justify-content: center;
    font-size: 20px; flex-shrink: 0;
}
.robo-feat strong { display: block; color: var(--white); font-size: 15px; margin-bottom: 4px; font-family: var(--body); }
.robo-feat p { color: var(--muted); font-size: 14px; margin: 0; }

.robo-img-wrap {
    position: relative;
    border-radius: var(--radius-xl);
}
.robo-img-wrap::before {
    content: '';
    position: absolute; inset: -1px;
    border-radius: var(--radius-xl);
    background: linear-gradient(135deg, rgba(59,191,204,0.3), transparent 50%, rgba(201,151,58,0.3));
    z-index: 0;
}
.robo-img-wrap img {
    border-radius: calc(var(--radius-xl) - 1px);
    box-shadow: var(--shadow-lg);
    width: 100%; display: block; position: relative; z-index: 1;
}

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-section { padding: 110px 0; background: var(--navy); }
.why-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.why-card {
    padding: 38px 32px;
    background: var(--midnight);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius-lg);
    transition: var(--transition);
    position: relative; overflow: hidden;
}
.why-card::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    transform: scaleX(0); transform-origin: left;
    transition: transform 0.4s var(--ease);
}
.why-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: rgba(201,151,58,0.15); }
.why-card:hover::before { transform: scaleX(1); }
.why-icon {
    width: 58px; height: 58px; border-radius: var(--radius);
    display: flex; align-items: center; justify-content: center;
    font-size: 26px; margin-bottom: 22px;
    background: var(--gold-pale); border: 1px solid rgba(201,151,58,0.2);
}
.why-card h4 { margin-bottom: 10px; font-size: 18px; color: var(--white); }
.why-card p { color: var(--muted); font-size: 14.5px; margin: 0; line-height: 1.65; }

/* ============================================================
   PATIENT JOURNEY
   ============================================================ */
.journey-section { padding: 110px 0; background: var(--midnight); }
.journey-steps {
    display: grid; grid-template-columns: repeat(4,1fr);
    gap: 0; position: relative;
}
.journey-steps::before {
    content: '';
    position: absolute; top: 44px; left: calc(12.5% + 20px); right: calc(12.5% + 20px);
    height: 1px;
    background: linear-gradient(90deg, var(--gold), rgba(201,151,58,0.2), var(--gold));
    z-index: 0;
}
.journey-step {
    text-align: center; padding: 0 20px;
    position: relative; z-index: 1;
}
.step-num-wrap {
    width: 90px; height: 90px;
    border-radius: 50%;
    background: var(--navy);
    border: 2px solid rgba(201,151,58,0.3);
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    margin: 0 auto 28px;
    position: relative;
    transition: var(--transition);
}
.journey-step:hover .step-num-wrap {
    background: var(--gold-pale);
    border-color: var(--gold);
    box-shadow: 0 0 30px rgba(201,151,58,0.2);
}
.step-num {
    font-family: var(--heading); font-size: 11px;
    font-weight: 700; color: var(--gold);
    line-height: 1; letter-spacing: 1px; text-transform: uppercase;
}
.step-num-big {
    font-family: var(--heading); font-size: 28px;
    font-weight: 700; color: var(--white); line-height: 1;
}
.step-body { text-align: center; }
.step-body h4 { margin-bottom: 8px; font-size: 17px; color: var(--white); }
.step-body p { color: var(--muted); font-size: 13.5px; margin: 0; line-height: 1.65; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section { padding: 110px 0; background: var(--navy); }
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.testi-card {
    background: var(--midnight);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius-lg);
    padding: 36px;
    display: flex; flex-direction: column; gap: 20px;
    transition: var(--transition); position: relative; overflow: hidden;
}
.testi-card::before {
    content: '"';
    position: absolute; top: 20px; right: 24px;
    font-family: var(--heading); font-size: 80px;
    color: var(--gold); opacity: 0.1;
    line-height: 1; pointer-events: none;
}
.testi-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); border-color: rgba(201,151,58,0.15); }
.testi-stars { display: flex; gap: 3px; }
.testi-stars span { color: var(--gold); font-size: 14px; }
.testi-text { color: var(--muted); font-size: 15px; line-height: 1.75; flex: 1; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 14px; }
.testi-avatar {
    width: 46px; height: 46px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--midnight); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 14px; flex-shrink: 0;
}
.testi-avatar.alt1 { background: linear-gradient(135deg, var(--teal), #2aa8b5); }
.testi-avatar.alt2 { background: linear-gradient(135deg, #8B5CF6, #7C3AED); }
.testi-author strong { display: block; font-size: 15px; color: var(--white); }
.testi-author small { color: var(--muted); font-size: 13px; }

/* ============================================================
   AWARDS
   ============================================================ */
.awards-section { padding: 100px 0; background: var(--midnight); }
.awards-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.award-card {
    background: var(--navy);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius-lg);
    padding: 36px 24px; text-align: center;
    transition: var(--transition); position: relative; overflow: hidden;
}
.award-card:hover { transform: translateY(-6px); border-color: rgba(201,151,58,0.25); box-shadow: var(--shadow-gold); }
.award-icon-wrap {
    width: 72px; height: 72px;
    background: var(--gold-pale);
    border: 1px solid rgba(201,151,58,0.25);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 32px; margin: 0 auto 20px;
    transition: var(--transition);
}
.award-card:hover .award-icon-wrap {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
}
.award-card h4 { font-size: 16px; color: var(--white); margin-bottom: 8px; }
.award-card p { color: var(--muted); font-size: 13px; margin: 0; line-height: 1.5; }

/* ============================================================
   FAQs
   ============================================================ */
.faq-section { padding: 110px 0; background: var(--navy); }
.faq-layout { display: grid; grid-template-columns: 1fr 1.7fr; gap: 90px; align-items: start; }
.faq-left { position: sticky; top: 110px; }
.faq-left p { color: var(--muted); font-size: 16px; line-height: 1.75; margin-bottom: 0; }
.faq-item {
    border-bottom: 1px solid rgba(255,255,255,0.06);
    overflow: hidden;
}
.faq-q {
    width: 100%; background: none; border: none; text-align: left; cursor: pointer;
    padding: 22px 0; font-family: var(--body); font-size: 16px; font-weight: 600;
    color: var(--muted-2); display: flex; justify-content: space-between; align-items: center; gap: 16px;
    transition: color 0.3s;
}
.faq-q:hover { color: var(--white); }
.faq-item.open .faq-q { color: var(--gold); }
.faq-arrow-icon {
    width: 28px; height: 28px; border-radius: 50%;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; transition: var(--transition);
}
.faq-arrow-icon svg { transition: transform 0.3s var(--ease); }
.faq-item.open .faq-arrow-icon { background: var(--gold-pale); border-color: var(--gold); }
.faq-item.open .faq-arrow-icon svg { transform: rotate(45deg); color: var(--gold); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease); }
.faq-item.open .faq-a { max-height: 300px; }
.faq-a p { color: var(--muted); padding-bottom: 22px; font-size: 15px; line-height: 1.75; }

/* ============================================================
   BLOG
   ============================================================ */
.blog-section { padding: 110px 0; background: var(--midnight); }
.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.blog-card {
    background: var(--navy);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    display: flex; flex-direction: column;
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(201,151,58,0.2); }
.blog-img {
    height: 210px; overflow: hidden;
    background: var(--midnight);
    display: flex; align-items: center; justify-content: center;
    position: relative;
}
.blog-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.blog-card:hover .blog-img img { transform: scale(1.06); }
.blog-img-placeholder {
    font-size: 52px;
    background: linear-gradient(135deg, rgba(201,151,58,0.08), rgba(59,191,204,0.08));
}
.blog-tag {
    position: absolute; top: 14px; left: 14px;
    background: rgba(8,12,20,0.85);
    border: 1px solid rgba(201,151,58,0.3);
    color: var(--gold); font-size: 10px; font-weight: 700;
    padding: 4px 10px; border-radius: 50px;
    text-transform: uppercase; letter-spacing: 1px;
    backdrop-filter: blur(8px);
}
.blog-body { padding: 26px 28px 30px; flex: 1; display: flex; flex-direction: column; }
.blog-date {
    font-size: 11px; font-weight: 600; text-transform: uppercase;
    letter-spacing: 1.5px; color: var(--muted); margin-bottom: 10px;
}
.blog-body h4 { font-size: 17px; line-height: 1.45; margin-bottom: 14px; color: var(--white); flex: 1; }
.blog-read {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 13px; font-weight: 600; color: var(--gold);
    margin-top: auto; transition: gap 0.3s;
}
.blog-card:hover .blog-read { gap: 10px; }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--navy-2) 0%, #0A1520 100%);
    position: relative; overflow: hidden;
}
.cta-banner::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(201,151,58,0.12) 0%, transparent 60%),
                radial-gradient(circle at 70% 50%, rgba(59,191,204,0.08) 0%, transparent 60%);
}
.cta-inner {
    display: flex; align-items: center;
    justify-content: space-between; gap: 48px; flex-wrap: wrap;
    position: relative; z-index: 1;
}
.cta-inner h2 { color: var(--white); margin-bottom: 10px; }
.cta-inner p { color: var(--muted); margin: 0; font-size: 17px; }
.cta-actions { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
    background: var(--midnight);
    border-top: 1px solid rgba(255,255,255,0.05);
    padding: 90px 0 0;
    position: relative; overflow: hidden;
}
footer::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0.35;
}
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 60px; margin-bottom: 70px; }
.footer-brand p { color: var(--muted); font-size: 15px; line-height: 1.7; margin-bottom: 28px; max-width: 300px; }
.footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.footer-logo img { height: 42px; filter: brightness(0.9); }
.footer-logo-text { }
.footer-logo-name { font-family: var(--heading); font-size: 17px; font-weight: 700; color: var(--white); display: block; }
.footer-logo-tag { font-size: 10px; color: var(--gold); font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; display: block; }

.social-links { display: flex; gap: 10px; }
.social-link {
    width: 38px; height: 38px;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    color: var(--muted); font-size: 15px;
    transition: var(--transition);
}
.social-link:hover { border-color: var(--gold); color: var(--gold); background: var(--gold-pale); }

.footer-col h4 {
    color: var(--white); font-family: var(--body); font-size: 13px;
    font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px;
    margin-bottom: 24px; padding-bottom: 14px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul li a {
    color: var(--muted); font-size: 14.5px;
    display: flex; align-items: center; gap: 7px;
}
.footer-col ul li a::before {
    content: '';
    width: 4px; height: 4px;
    background: var(--gold); border-radius: 50%;
    opacity: 0; flex-shrink: 0;
    transition: opacity 0.2s;
}
.footer-col ul li a:hover { color: var(--gold-light); }
.footer-col ul li a:hover::before { opacity: 1; }

.footer-contact-item {
    display: flex; align-items: flex-start; gap: 12px;
    margin-bottom: 16px;
}
.footer-contact-icon {
    width: 32px; height: 32px; border-radius: 8px;
    background: var(--gold-pale); border: 1px solid rgba(201,151,58,0.2);
    display: flex; align-items: center; justify-content: center;
    color: var(--gold); font-size: 14px; flex-shrink: 0; margin-top: 2px;
}
.footer-contact-item p { color: var(--muted); font-size: 14px; margin: 0; line-height: 1.5; }
.footer-contact-item a { color: var(--muted); font-size: 14px; }
.footer-contact-item a:hover { color: var(--gold); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 28px 0;
    display: flex; justify-content: space-between; align-items: center;
    flex-wrap: wrap; gap: 16px;
    font-size: 13px; color: rgba(255,255,255,0.3);
}
.footer-bottom a { color: rgba(255,255,255,0.3); padding: 0 4px; }
.footer-bottom a:hover { color: var(--gold); }
.footer-legal { display: flex; gap: 24px; align-items: center; }

/* ============================================================
   ROBOT BANNER (full-width)
   ============================================================ */
.robot-banner-section { position: relative; }
.robot-banner-img {
    background-size: cover;
    background-position: center top;
    background-attachment: fixed;
    min-height: 340px;
    display: flex; align-items: center;
    position: relative;
}
.robot-banner-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(90deg,
        rgba(8,12,20,0.92) 0%,
        rgba(8,12,20,0.7) 50%,
        rgba(8,12,20,0.4) 100%);
    display: flex; align-items: center; width: 100%;
}
.robot-banner-overlay .container { width: 100%; }
.robot-banner-content {
    display: flex; align-items: center;
    justify-content: space-between; gap: 40px; flex-wrap: wrap;
    padding: 60px 0;
}
.robot-banner-stats { display: flex; align-items: center; gap: 0; flex-wrap: wrap; }
.rbs-item { text-align: center; padding: 0 40px; }
.rbs-num {
    display: block; font-family: var(--heading);
    font-size: clamp(32px, 4vw, 52px); font-weight: 800;
    color: var(--gold); line-height: 1;
}
.rbs-num sup { font-size: 0.55em; vertical-align: super; }
.rbs-label {
    display: block; font-size: 13px; color: rgba(255,255,255,0.7);
    margin-top: 6px; text-transform: uppercase; letter-spacing: 1px;
}
.rbs-divider { width: 1px; height: 60px; background: rgba(255,255,255,0.15); }
.btn-lg { padding: 18px 40px; font-size: 16px; }

/* ============================================================
   TEAM SECTION
   ============================================================ */
.team-section { padding: 110px 0; background: var(--midnight); }
.team-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.team-img-wrap { position: relative; border-radius: var(--radius-xl); overflow: hidden; }
.team-img-wrap img {
    width: 100%; display: block;
    border-radius: var(--radius-xl);
    filter: brightness(0.95) contrast(1.05);
}
.team-img-badge {
    position: absolute; bottom: 24px; left: 24px;
    background: rgba(8,12,20,0.9);
    border: 1px solid rgba(201,151,58,0.3);
    backdrop-filter: blur(16px);
    border-radius: var(--radius);
    padding: 14px 18px;
    display: flex; align-items: center; gap: 12px;
    font-size: 22px;
}
.team-img-badge strong { display: block; font-size: 14px; color: var(--white); font-family: var(--body); }
.team-img-badge small { color: var(--muted); font-size: 12px; }
.team-features { display: flex; flex-direction: column; gap: 18px; margin: 28px 0; }
.team-feat {
    display: flex; gap: 16px; align-items: flex-start;
    padding: 18px 20px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius);
    transition: var(--transition);
}
.team-feat:hover { background: var(--gold-pale); border-color: rgba(201,151,58,0.2); }
.team-feat-icon { font-size: 20px; flex-shrink: 0; margin-top: 2px; }
.team-feat strong { display: block; color: var(--white); font-size: 15px; margin-bottom: 4px; font-family: var(--body); }
.team-feat p { color: var(--muted); font-size: 14px; margin: 0; }

/* ============================================================
   AWARDS PHOTO GRID
   ============================================================ */
.awards-photo-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.award-photo-card { border-radius: var(--radius-lg); overflow: hidden; }
.award-photo-img { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.award-photo-img img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.6s var(--ease);
    display: block;
}
.award-photo-card:hover .award-photo-img img { transform: scale(1.07); }
.award-photo-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(8,12,20,0.9) 0%, transparent 50%);
    display: flex; flex-direction: column;
    justify-content: flex-end; padding: 20px;
    opacity: 0; transition: opacity 0.4s var(--ease);
}
.award-photo-card:hover .award-photo-overlay { opacity: 1; }
.award-photo-overlay span { color: var(--white); font-size: 15px; font-weight: 700; font-family: var(--heading); }
.award-photo-overlay small { color: var(--gold); font-size: 12px; margin-top: 4px; }

/* ============================================================
   MEDIA SECTION
   ============================================================ */
.media-section { padding: 110px 0; background: var(--navy); }
.media-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.media-card {
    background: var(--midnight);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius-lg); overflow: hidden;
    transition: var(--transition); display: flex; flex-direction: column;
}
.media-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(201,151,58,0.2); }
.media-img { height: 220px; overflow: hidden; position: relative; background: var(--midnight); }
.media-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); display: block; }
.media-card:hover .media-img img { transform: scale(1.04); }
.media-tag {
    position: absolute; top: 14px; left: 14px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--midnight); font-size: 10px; font-weight: 800;
    padding: 5px 12px; border-radius: 50px;
    text-transform: uppercase; letter-spacing: 1px;
}
.media-body { padding: 24px 26px 28px; flex: 1; display: flex; flex-direction: column; }
.media-pub { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--gold); margin-bottom: 8px; }
.media-body h4 { font-size: 17px; line-height: 1.4; color: var(--white); margin-bottom: 10px; }
.media-excerpt { color: var(--muted); font-size: 13.5px; line-height: 1.65; margin: 0; }

/* ============================================================
   SERVICE PAGES
   ============================================================ */
.service-hero {
    padding: 160px 0 100px;
     background: linear-gradient(rgba(8,12,20,0.88), rgba(8,12,20,0.88)), url('../images/user-provided/treatment-5.jpeg') center/cover;
    color: var(--white); text-align: center;
    position: relative; overflow: hidden;
}
.service-hero h1 { color: var(--white); }
.service-content { display: grid; grid-template-columns: 8fr 4fr; gap: 60px; padding: 80px 0; }
.toc-card {
    background: var(--navy); padding: 32px;
    border-radius: var(--radius-lg); position: sticky; top: 120px;
    border: 1px solid rgba(255,255,255,0.06);
}
.toc-card h4 { color: var(--white); margin-bottom: 20px; border-bottom: 1px solid rgba(255,255,255,0.07); padding-bottom: 14px; }
.toc-card ul li { margin-bottom: 10px; }
.toc-card ul li a { font-size: 14.5px; font-weight: 500; color: var(--muted); }
.toc-card ul li a:hover { color: var(--gold); }

/* ============================================================
   ADMIN (keep compatibility)
   ============================================================ */
.admin-body { background: #0F1923; }
.admin-wrapper { display: flex; min-height: 100vh; }
.admin-sidebar { width: 240px; background: var(--navy); padding: 32px 20px; flex-shrink: 0; border-right: 1px solid rgba(255,255,255,0.06); }
.sidebar-header h3 { color: var(--white); margin-bottom: 32px; }
.sidebar-nav ul li { margin-bottom: 4px; }
.sidebar-nav ul li a { display: block; padding: 10px 16px; color: rgba(255,255,255,0.6); border-radius: 8px; font-size: 14px; font-weight: 500; }
.sidebar-nav ul li a:hover { background: rgba(255,255,255,0.07); color: var(--white); }
.admin-content { flex: 1; display: flex; flex-direction: column; overflow: hidden; }
.content-header { background: var(--navy); padding: 20px 32px; border-bottom: 1px solid rgba(255,255,255,0.06); display: flex; justify-content: space-between; align-items: center; }
.content-header h2 { color: var(--white); font-size: 22px; }
.content-body { padding: 32px; flex: 1; }
.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px,1fr)); gap: 20px; margin-bottom: 32px; }
.stat-card { background: var(--navy); padding: 28px; border-radius: var(--radius); border: 1px solid rgba(255,255,255,0.06); }
.stat-card h3 { font-size: 36px; font-weight: 800; margin-bottom: 4px; color: var(--gold); }
.stat-card p { color: var(--muted); font-size: 14px; margin: 0; }
.admin-table { width: 100%; border-collapse: collapse; background: var(--navy); border-radius: var(--radius); overflow: hidden; border: 1px solid rgba(255,255,255,0.06); }
.admin-table th { background: rgba(255,255,255,0.04); padding: 14px 16px; text-align: left; font-size: 12px; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: 0.8px; }
.admin-table td { padding: 14px 16px; border-bottom: 1px solid rgba(255,255,255,0.04); font-size: 14px; color: var(--muted-2); }
.status-badge { display: inline-block; padding: 3px 10px; border-radius: 50px; font-size: 12px; font-weight: 600; background: var(--gold-pale); color: var(--gold); border: 1px solid rgba(201,151,58,0.2); }
.btn-sm.btn-primary { padding: 7px 14px; font-size: 13px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
    .hero-grid { grid-template-columns: 1fr 1fr; gap: 34px; }
    .hero-text h1 { font-size: clamp(42px, 5.5vw, 66px); }
    .hero-text p { font-size: 16px; }
    .hero-treatment-frame { width: min(100%, 470px); }
    .treatments-grid, .why-grid, .testi-grid { grid-template-columns: repeat(2,1fr); }
    .awards-photo-grid, .media-grid { grid-template-columns: repeat(2,1fr); }
    .robo-grid, .about-grid, .team-grid { grid-template-columns: 1fr; gap: 60px; }
    .faq-layout { grid-template-columns: 1fr; gap: 56px; }
    .faq-left { position: static; }
    .footer-top { grid-template-columns: 1fr 1fr; gap: 48px; }
    .mega-panel { min-width: 680px; }
    .mega-inner { grid-template-columns: 1fr 1fr 1fr; }
    .mega-cta { display: none; }
    .appt-inner { grid-template-columns: 1fr; gap: 40px; }
    .journey-steps { grid-template-columns: repeat(2,1fr); gap: 40px; }
    .journey-steps::before { display: none; }
    .robot-banner-content { flex-direction: column; text-align: center; gap: 32px; padding: 48px 0; }
    .rbs-item { padding: 0 24px; }
}

@media (max-width: 768px) {
    .header-utility { display: none; }
    .hero-grid { grid-template-columns: 1fr; gap: 48px; }
    .hero-visual { padding: 0 4px; max-width: 560px; margin: 0 auto; width: 100%; }
    .hero { padding: 130px 0 80px; min-height: auto; }
    .treatments-grid, .why-grid, .testi-grid { grid-template-columns: 1fr; }
    .awards-photo-grid, .media-grid { grid-template-columns: 1fr; }
    .blog-grid { grid-template-columns: 1fr; }
    .stats-grid { flex-direction: column; }
    .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.05); padding: 28px; }
    .stat-item:last-child { border-bottom: none; }
    .journey-steps { grid-template-columns: 1fr; }
    .cta-inner { flex-direction: column; text-align: center; }
    .cta-actions { justify-content: center; }
    .footer-top { grid-template-columns: 1fr; gap: 36px; }
    .footer-bottom { flex-direction: column; text-align: center; gap: 12px; }
    .footer-legal { flex-wrap: wrap; justify-content: center; }
    .appt-card { padding: 36px 24px; }
    .appt-fields { grid-template-columns: 1fr; }
    .robot-banner-img { background-attachment: scroll; }
    .robot-banner-stats { flex-direction: column; gap: 20px; }
    .rbs-divider { width: 60px; height: 1px; }

    /* Mobile Nav */
    .main-nav {
        position: fixed; top: 0; right: -100%; width: 85%; max-width: 340px;
        height: 100vh; background: var(--navy); z-index: 1100; overflow-y: auto;
        padding: 90px 28px 48px;
        transition: right 0.4s var(--ease);
        box-shadow: -20px 0 60px rgba(0,0,0,0.5);
        border-left: 1px solid rgba(201,151,58,0.1);
        margin-left: 0;
    }
    .main-nav.open { right: 0; }
    .nav-list { flex-direction: column; gap: 0; }
    .nav-link {
        padding: 16px 0; font-size: 16px;
        border-bottom: 1px solid rgba(255,255,255,0.06);
        border-radius: 0; width: 100%; color: var(--muted-2);
    }
    .nav-link::after { display: none; }
    .has-mega .mega-panel { display: none !important; }
    .hamburger { display: flex; }
    .call-btn { display: none; }
}

@media (max-width: 480px) {
    h1 { font-size: 36px; }
    h2 { font-size: 28px; }
    .hero-btns { flex-direction: column; align-items: flex-start; }
    .hero-btns .btn { width: 100%; justify-content: center; }
    .hero-visual-kicker { font-size: 8px; letter-spacing: 1.3px; }
    .hero-treatment-frame { border-radius: 2px; }
    .hero-treatment-status { left: 20px; bottom: 21px; }
    .hero-treatment-status strong { font-size: 14px; }
    .hero-precision-tag { right: 17px; top: 18px; font-size: 8px; }
    .hero-treatment-steps { margin-top: 13px; grid-template-columns: repeat(2, 1fr); }
    .treatment-step { padding: 8px 6px; }
    .treatment-step strong { font-size: 11px; }
    .treatment-step small { font-size: 9px; }
    .hero-float-card { display: none; }
    .hero-proof-line { margin-top: -14px; margin-bottom: 28px; }
    .proof-separator { display: none; }
    .hero-live-label { left: 18px; top: 18px; font-size: 8px; }
    .hero-procedure-label { right: 18px; top: 18px; font-size: 8px; }
    .hero-joint-target { left: 58%; width: 74px; height: 74px; }
    .hero-joint-target::before { width: 104px; }
    .hero-joint-target::after { height: 104px; }
    .section-header { margin-bottom: 48px; }
    .team-section, .awards-section, .media-section { padding: 72px 0; }
}

@media (prefers-reduced-motion: reduce) {
    .hero-slide, .hero-scan-line, .hero-crosshair, .hero-precision-tag svg,
    .hero-kicker-dot, .status-pulse { animation: none; }
    .hero-slide { transition: none; }
}

/* ============================================================
   DROPDOWN PANEL (Media / Resources nav)
   ============================================================ */
.has-dropdown { position: relative; }
.dropdown-panel {
    position: absolute; top: calc(100% + 12px); left: 50%;
    transform: translateX(-50%) translateY(8px);
    background: var(--navy);
    min-width: 260px;
    box-shadow: var(--shadow-lg), 0 0 0 1px rgba(201,151,58,0.15);
    border-radius: var(--radius-lg);
    padding: 10px;
    opacity: 0; pointer-events: none;
    transition: opacity 0.25s var(--ease), transform 0.25s var(--ease);
    z-index: 200;
}
.dropdown-panel::before {
    content: '';
    position: absolute;
    top: -1px; left: 50%; transform: translateX(-50%);
    width: 70%; height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.has-dropdown:hover .dropdown-panel {
    opacity: 1; pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}
.dropdown-item {
    display: flex; align-items: center; gap: 14px;
    padding: 12px 14px; border-radius: var(--radius);
    transition: var(--transition); cursor: pointer;
    color: var(--muted-2);
    text-decoration: none;
}
.dropdown-item:hover {
    background: rgba(201,151,58,0.08);
    color: var(--white);
}
.dd-icon {
    width: 36px; height: 36px; border-radius: 9px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    display: flex; align-items: center; justify-content: center;
    color: var(--gold); flex-shrink: 0;
    transition: var(--transition);
}
.dropdown-item:hover .dd-icon {
    background: var(--gold-pale);
    border-color: rgba(201,151,58,0.3);
}
.dropdown-item strong {
    display: block; font-size: 13.5px; font-weight: 600;
    color: var(--white); font-family: var(--body); margin-bottom: 2px;
}
.dropdown-item small {
    display: block; font-size: 11.5px; color: var(--muted);
}
/* Mobile: hide dropdowns on mobile */
@media (max-width: 768px) {
    .has-dropdown .dropdown-panel { display: none !important; }
}

/* ============================================================
   LOGO CROSS (medical cross overlay on logo)
   ============================================================ */
.logo-icon-wrap {
    position: relative; display: flex; align-items: center;
}
.logo-icon-wrap img { height: 44px; width: auto; filter: brightness(1.1); }
.logo-cross {
    position: absolute; top: -3px; right: -5px;
    width: 18px; height: 18px; border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 2px 8px rgba(201,151,58,0.5);
}
.logo-cross svg { color: var(--midnight); }

/* ============================================================
   MEGA HEADING ICONS
   ============================================================ */
.mega-heading-icon {
    width: 26px; height: 26px; border-radius: 6px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.mega-heading-icon.teal {
    background: var(--teal-pale); border: 1px solid rgba(59,191,204,0.25);
    color: var(--teal);
}
.mega-heading-icon.gold {
    background: var(--gold-pale); border: 1px solid rgba(201,151,58,0.25);
    color: var(--gold);
}
.mega-heading-icon.green {
    background: rgba(46,204,138,0.1); border: 1px solid rgba(46,204,138,0.25);
    color: var(--green);
}

/* ============================================================
   INNER HERO (awards / achievement / articles / blog pages)
   ============================================================ */
.inner-hero {
    padding: 160px 0 90px;
    background: linear-gradient(135deg, var(--midnight) 0%, var(--navy-2) 60%, var(--midnight) 100%);
    position: relative; overflow: hidden;
}
.inner-hero::before {
    content: '';
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(201,151,58,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(201,151,58,0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 20%, transparent 100%);
}
.inner-hero-orb {
    position: absolute; border-radius: 50%;
    filter: blur(90px); pointer-events: none;
}
.inner-hero-orb.orb-left {
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(201,151,58,0.12) 0%, transparent 70%);
    top: -150px; left: -100px;
}
.inner-hero-orb.orb-right {
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(59,191,204,0.1) 0%, transparent 70%);
    bottom: -100px; right: -80px;
}
.inner-hero .container { position: relative; z-index: 1; }
.inner-hero-content { max-width: 760px; }
.inner-hero-content h1 {
    margin: 12px 0 20px;
    font-size: clamp(36px, 5vw, 68px);
}
.inner-hero-content h1 em {
    font-style: normal;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}
.inner-hero-content > p {
    font-size: 18px; color: var(--muted); max-width: 600px; line-height: 1.8;
    margin-bottom: 32px;
}
.inner-hero-breadcrumb {
    display: flex; align-items: center; gap: 8px;
    font-size: 12px; color: var(--muted);
    flex-wrap: wrap;
}
.inner-hero-breadcrumb a { color: var(--muted); font-weight: 500; }
.inner-hero-breadcrumb a:hover { color: var(--gold); }
.inner-hero-breadcrumb span { color: var(--gold); font-weight: 600; }
.inner-hero-breadcrumb svg { color: rgba(255,255,255,0.25); flex-shrink: 0; }

/* ============================================================
   INNER CTA SECTION
   ============================================================ */
.inner-cta-section { padding: 80px 0; background: var(--midnight); }
.inner-cta-card {
    background: linear-gradient(135deg, var(--navy-2) 0%, #091520 100%);
    border: 1px solid rgba(201,151,58,0.2);
    border-radius: var(--radius-xl);
    padding: 56px 64px;
    display: flex; align-items: center;
    justify-content: space-between; gap: 40px; flex-wrap: wrap;
    position: relative; overflow: hidden;
}
.inner-cta-card::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0.6;
}
.inner-cta-text { flex: 1; min-width: 260px; }
.inner-cta-text h2 { font-size: clamp(24px, 3vw, 38px); margin-bottom: 10px; }
.inner-cta-text p { color: var(--muted); font-size: 16px; margin: 0; }
.inner-cta-actions { display: flex; gap: 14px; flex-wrap: wrap; }
@media (max-width: 768px) {
    .inner-cta-card { padding: 40px 28px; flex-direction: column; }
    .inner-cta-actions { flex-direction: column; width: 100%; }
    .inner-cta-actions .btn { width: 100%; justify-content: center; }
}

/* ============================================================
   AWARDS PAGE STYLES
   ============================================================ */
.awards-stats-strip { padding: 60px 0; background: var(--navy); }
.astat-grid {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 0; border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius-xl); overflow: hidden;
}
.astat-item {
    text-align: center; padding: 36px 24px;
    border-right: 1px solid rgba(255,255,255,0.05);
    position: relative;
    transition: background 0.3s;
}
.astat-item:last-child { border-right: none; }
.astat-item:hover { background: rgba(201,151,58,0.05); }
.astat-num {
    display: block; font-family: var(--heading);
    font-size: clamp(30px, 3.5vw, 46px); font-weight: 800;
    color: var(--gold); line-height: 1; margin-bottom: 8px;
}
.astat-num sup { font-size: 0.6em; vertical-align: super; }
.astat-label { font-size: 12px; text-transform: uppercase; letter-spacing: 1px; color: var(--muted); }
@media (max-width: 768px) {
    .astat-grid { grid-template-columns: repeat(2,1fr); }
    .astat-item { border-bottom: 1px solid rgba(255,255,255,0.05); }
}

.awards-gallery-section { padding: 100px 0; background: var(--midnight); }

.awards-main-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 28px; align-items: start; }
@media (max-width: 1024px) { .awards-main-grid { grid-template-columns: 1fr; } }

.award-featured-card {
    background: var(--navy);
    border: 1px solid rgba(201,151,58,0.15);
    border-radius: var(--radius-xl); overflow: hidden;
}
.award-featured-img { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.award-featured-img img { width:100%; height:100%; object-fit:cover; transition: transform 0.6s var(--ease); }
.award-featured-card:hover .award-featured-img img { transform: scale(1.04); }
.award-featured-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(13,27,42,0.9) 0%, transparent 50%);
}
.award-featured-img.img-error { background: linear-gradient(135deg, var(--gold-pale), var(--teal-pale)); min-height: 280px; }
.award-featured-body { padding: 32px 36px; }
.award-badge-tag {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 2px;
    color: var(--gold); background: var(--gold-pale);
    border: 1px solid rgba(201,151,58,0.25); padding: 5px 12px; border-radius: 50px;
    margin-bottom: 16px;
}
.award-featured-body h3 { font-size: 26px; margin-bottom: 6px; }
.award-org { color: var(--teal); font-size: 13px; font-weight: 600; margin-bottom: 14px; text-transform: uppercase; letter-spacing: 1px; }
.award-featured-body > p { color: var(--muted); font-size: 15px; line-height: 1.75; margin: 0; }

.awards-sub-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 480px) { .awards-sub-grid { grid-template-columns: 1fr; } }

.award-card-v2 {
    background: var(--navy); border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius-lg); overflow: hidden;
    transition: var(--transition);
}
.award-card-v2:hover { border-color: rgba(201,151,58,0.25); transform: translateY(-4px); box-shadow: var(--shadow-gold); }
.award-card-img { aspect-ratio: 4/3; overflow: hidden; }
.award-card-img img { width:100%; height:100%; object-fit:cover; transition: transform 0.5s var(--ease); }
.award-card-v2:hover .award-card-img img { transform: scale(1.05); }
.award-card-img.img-error { background: linear-gradient(135deg, var(--gold-pale), rgba(59,191,204,0.08)); min-height: 140px; }
.award-card-v2-body { padding: 20px; }
.award-year-tag { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--teal); }
.award-card-v2-body h4 { font-size: 15px; margin: 8px 0 6px; }
.award-card-v2-body p { color: var(--muted); font-size: 13px; line-height: 1.6; margin: 0; }

.awards-more-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
@media (max-width: 1024px) { .awards-more-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 480px) { .awards-more-grid { grid-template-columns: 1fr; } }
.award-mini-card {
    display: flex; align-items: flex-start; gap: 16px;
    background: var(--navy); border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius-lg); padding: 22px;
    transition: var(--transition);
}
.award-mini-card:hover { border-color: rgba(201,151,58,0.2); background: rgba(201,151,58,0.04); }
.award-mini-icon {
    width: 48px; height: 48px; border-radius: var(--radius);
    background: var(--gold-pale); border: 1px solid rgba(201,151,58,0.2);
    display: flex; align-items: center; justify-content: center;
    color: var(--gold); flex-shrink: 0;
}
.award-mini-card h5 { font-size: 14px; font-weight: 700; color: var(--white); margin-bottom: 4px; font-family: var(--body); }
.award-mini-card p { font-size: 12.5px; color: var(--muted); margin: 0; }

/* ============================================================
   ACHIEVEMENT PAGE STYLES
   ============================================================ */
.achievement-timeline-section { padding: 100px 0; background: var(--midnight); }
.achievement-timeline { position: relative; max-width: 900px; margin: 0 auto; }
.achievement-timeline::before {
    content: '';
    position: absolute; top: 0; bottom: 0; left: 88px;
    width: 1px;
    background: linear-gradient(to bottom, var(--gold), rgba(201,151,58,0.1));
}
.timeline-item {
    display: grid; grid-template-columns: 80px 28px 1fr;
    gap: 0 24px; align-items: flex-start;
    margin-bottom: 52px;
}
.timeline-item:last-child { margin-bottom: 0; }
.timeline-year {
    text-align: right; padding-top: 4px;
}
.timeline-year span {
    font-family: var(--heading); font-size: 18px; font-weight: 700;
    color: var(--gold);
}
.timeline-connector { display: flex; flex-direction: column; align-items: center; padding-top: 8px; }
.timeline-dot {
    width: 16px; height: 16px; border-radius: 50%; flex-shrink: 0;
    position: relative; z-index: 1;
}
.gold-dot { background: var(--gold); box-shadow: 0 0 16px rgba(201,151,58,0.5); }
.teal-dot { background: var(--teal); box-shadow: 0 0 16px rgba(59,191,204,0.5); }
.timeline-body {
    background: var(--navy); border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius-lg); padding: 28px 32px;
    transition: var(--transition);
}
.timeline-body:hover { border-color: rgba(201,151,58,0.2); box-shadow: var(--shadow); }
.timeline-tag {
    display: inline-block; font-size: 10px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 1.5px;
    color: var(--teal); background: var(--teal-pale);
    border: 1px solid rgba(59,191,204,0.2);
    padding: 3px 10px; border-radius: 50px; margin-bottom: 12px;
}
.timeline-body h3 { font-size: 20px; margin-bottom: 10px; }
.timeline-body p { color: var(--muted); font-size: 14.5px; line-height: 1.75; margin: 0; }
@media (max-width: 600px) {
    .achievement-timeline::before { left: 0; }
    .timeline-item { grid-template-columns: 0 28px 1fr; gap: 0 16px; }
    .timeline-year { display: none; }
}

.achievement-cards-section { padding: 80px 0; background: var(--navy); }
.achievement-cards-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
@media (max-width: 1024px) { .achievement-cards-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 480px) { .achievement-cards-grid { grid-template-columns: 1fr; } }
.achieve-card {
    background: var(--midnight); border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius-lg); padding: 36px 28px;
    transition: var(--transition); position: relative; overflow: hidden;
}
.achieve-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    transform: scaleX(0); transform-origin: left;
    transition: transform 0.4s var(--ease);
}
.achieve-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.achieve-card:hover::before { transform: scaleX(1); }
.achieve-icon {
    width: 60px; height: 60px; border-radius: var(--radius);
    background: var(--gold-pale); border: 1px solid rgba(201,151,58,0.2);
    display: flex; align-items: center; justify-content: center;
    color: var(--gold); margin-bottom: 22px;
}
.achieve-card h4 { font-size: 17px; margin-bottom: 10px; }
.achieve-card p { color: var(--muted); font-size: 14px; line-height: 1.65; margin: 0; }

/* ============================================================
   ARTICLES PAGE STYLES
   ============================================================ */
.articles-section { padding: 100px 0; background: var(--midnight); }

.article-featured {
    display: grid; grid-template-columns: 1.2fr 1fr; gap: 0;
    background: var(--navy); border: 1px solid rgba(201,151,58,0.15);
    border-radius: var(--radius-xl); overflow: hidden;
    margin-bottom: 48px;
    transition: var(--transition);
}
.article-featured:hover { box-shadow: var(--shadow-lg); }
@media (max-width: 768px) { .article-featured { grid-template-columns: 1fr; } }
.article-featured-img { position: relative; min-height: 320px; overflow: hidden; background: var(--midnight); }
.article-featured-img img { width:100%; height:100%; object-fit:cover; display:block; transition: transform 0.6s var(--ease); }
.article-featured:hover .article-featured-img img { transform: scale(1.04); }
.article-featured-img.img-error { min-height: 280px; background: linear-gradient(135deg, var(--gold-pale), var(--teal-pale)); }
.article-featured-badge {
    position: absolute; top: 20px; left: 20px;
    display: flex; align-items: center; gap: 6px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--midnight); font-size: 11px; font-weight: 800;
    padding: 6px 14px; border-radius: 50px; text-transform: uppercase; letter-spacing: 1px;
}
.article-featured-body { padding: 44px; display: flex; flex-direction: column; justify-content: center; }
.article-publication { font-size: 13px; font-weight: 700; color: var(--gold); text-transform: uppercase; letter-spacing: 1px; }
.article-date { font-size: 12px; color: var(--muted); margin-left: 10px; }
.article-featured-body h2 { font-size: clamp(20px, 2.2vw, 28px); margin: 14px 0 16px; }
.article-featured-body > p { color: var(--muted); font-size: 15px; line-height: 1.8; flex: 1; }
.article-meta-row { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 24px; }
.article-type-chip {
    display: flex; align-items: center; gap: 6px;
    font-size: 12px; font-weight: 600; color: var(--teal);
    background: var(--teal-pale); border: 1px solid rgba(59,191,204,0.2);
    padding: 5px 12px; border-radius: 50px;
}

.articles-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
@media (max-width: 1024px) { .articles-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 600px) { .articles-grid { grid-template-columns: 1fr; } }

.article-card {
    background: var(--navy); border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius-lg); overflow: hidden;
    transition: var(--transition); display: flex; flex-direction: column;
}
.article-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(201,151,58,0.2); }
.article-card-img { aspect-ratio: 16/9; overflow: hidden; position: relative; background: var(--midnight); }
.article-card-img img { width:100%; height:100%; object-fit:cover; transition: transform 0.5s var(--ease); }
.article-card:hover .article-card-img img { transform: scale(1.05); }
.art-placeholder { background: linear-gradient(135deg, rgba(13,27,42,0.9), rgba(8,12,20,0.9)); }
.art-placeholder-inner {
    position: absolute; inset: 0;
    display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px;
    color: var(--gold); opacity: 0.5;
}
.art-placeholder-inner span { font-size: 13px; font-weight: 600; color: var(--muted); }
.article-card-type {
    position: absolute; top: 12px; left: 12px;
    background: var(--gold); color: var(--midnight);
    font-size: 9px; font-weight: 800; text-transform: uppercase; letter-spacing: 1px;
    padding: 4px 10px; border-radius: 50px;
}
.article-card-body { padding: 22px 24px 26px; flex: 1; display: flex; flex-direction: column; }
.article-pub-line { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--gold); margin-bottom: 8px; display: block; }
.article-card-body h4 { font-size: 16px; line-height: 1.4; margin-bottom: 10px; color: var(--white); }
.article-card-body > p { color: var(--muted); font-size: 13.5px; line-height: 1.65; margin: 0; flex: 1; }
.article-card-footer { display: flex; align-items: center; justify-content: space-between; margin-top: 18px; }
.article-date-chip { font-size: 11px; font-weight: 600; color: var(--muted); }
.article-watch-btn {
    display: flex; align-items: center; gap: 5px;
    font-size: 12px; font-weight: 600; color: var(--gold);
    transition: gap 0.2s;
}
.article-card:hover .article-watch-btn { gap: 8px; }

/* ============================================================
   BLOG PAGE STYLES
   ============================================================ */
.blog-cats-strip { padding: 32px 0; background: var(--navy); border-bottom: 1px solid rgba(255,255,255,0.04); }
.blog-cat-pills { display: flex; gap: 10px; flex-wrap: wrap; }
.blog-cat-pill {
    background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
    color: var(--muted); font-size: 13px; font-weight: 600;
    padding: 9px 20px; border-radius: 50px; cursor: pointer;
    transition: var(--transition); font-family: var(--body);
}
.blog-cat-pill:hover { border-color: rgba(201,151,58,0.3); color: var(--gold-light); }
.blog-cat-pill.active { background: var(--gold); color: var(--midnight); border-color: var(--gold); }

.blog-page-section { padding: 80px 0 100px; background: var(--midnight); }
.blog-page-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
@media (max-width: 1024px) { .blog-page-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 600px) { .blog-page-grid { grid-template-columns: 1fr; } }

.blog-page-card {
    background: var(--navy); border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius-lg); overflow: hidden;
    display: flex; flex-direction: column;
    transition: var(--transition); cursor: pointer; text-decoration: none;
}
.blog-page-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: rgba(201,151,58,0.2); }
.blog-page-img {
    height: 220px; overflow: hidden; background: var(--midnight);
    position: relative; display: flex; align-items: center; justify-content: center;
}
.blog-page-img img { width:100%; height:100%; object-fit:cover; transition: transform 0.6s var(--ease); }
.blog-page-card:hover .blog-page-img img { transform: scale(1.06); }
.blog-page-img-placeholder { background: linear-gradient(135deg, rgba(201,151,58,0.07), rgba(59,191,204,0.07)); }
.blog-placeholder-icon { opacity: 0.5; }
.blog-page-tag {
    position: absolute; top: 14px; left: 14px;
    background: rgba(8,12,20,0.85); border: 1px solid rgba(201,151,58,0.3);
    color: var(--gold); font-size: 10px; font-weight: 700;
    padding: 4px 10px; border-radius: 50px; text-transform: uppercase; letter-spacing: 1px;
    backdrop-filter: blur(8px);
}
.blog-page-body { padding: 26px 28px 30px; flex: 1; display: flex; flex-direction: column; }
.blog-page-meta { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.blog-page-cat-chip {
    font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px;
    color: var(--teal); background: var(--teal-pale);
    border: 1px solid rgba(59,191,204,0.2); padding: 3px 9px; border-radius: 50px;
}
.blog-page-date {
    display: flex; align-items: center; gap: 5px;
    font-size: 11.5px; color: var(--muted); font-weight: 500;
}
.blog-page-body h3 { font-size: 18px; line-height: 1.4; margin-bottom: 12px; color: var(--white); }
.blog-page-excerpt { color: var(--muted); font-size: 14px; line-height: 1.65; flex: 1; margin: 0; }
.blog-page-read {
    display: inline-flex; align-items: center; gap: 7px;
    font-size: 13px; font-weight: 600; color: var(--gold);
    margin-top: 18px; transition: gap 0.3s;
}
.blog-page-card:hover .blog-page-read { gap: 11px; }

/* ============================================================
   BLOG DETAIL PAGE
   ============================================================ */
.blog-detail-hero { padding: 160px 0 60px; background: var(--midnight); }
.blog-detail-hero-inner { max-width: 820px; }
.blog-detail-cat {
    display: inline-block; font-size: 10px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 2px;
    color: var(--teal); background: var(--teal-pale);
    border: 1px solid rgba(59,191,204,0.2);
    padding: 5px 14px; border-radius: 50px; margin-bottom: 18px;
}
.blog-detail-title {
    font-size: clamp(28px, 4vw, 52px); line-height: 1.15;
    margin-bottom: 28px; color: var(--white);
}
.blog-detail-meta-row { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.blog-detail-meta-item {
    display: flex; align-items: center; gap: 7px;
    font-size: 13.5px; color: var(--muted); font-weight: 500;
}
.blog-detail-meta-item svg { color: var(--gold); }

.blog-detail-section { padding: 20px 0 100px; background: var(--midnight); }
.blog-detail-layout { display: grid; grid-template-columns: 1fr 320px; gap: 60px; align-items: start; }
@media (max-width: 1024px) { .blog-detail-layout { grid-template-columns: 1fr; } }

.blog-detail-cover-img { border-radius: var(--radius-xl); overflow: hidden; margin-bottom: 44px; }
.blog-detail-cover-img img { width:100%; display:block; max-height: 440px; object-fit: cover; }

.blog-detail-content {
    color: var(--muted-2);
    font-size: 17px; line-height: 1.85;
}
.blog-detail-content h2 { font-size: clamp(22px, 2.5vw, 32px); margin: 40px 0 16px; color: var(--white); }
.blog-detail-content h3 { font-size: clamp(18px, 2vw, 24px); margin: 32px 0 14px; color: var(--white); }
.blog-detail-content p { margin-bottom: 20px; }
.blog-detail-content strong { color: var(--white); }
.blog-detail-content ul, .blog-detail-content ol { padding-left: 20px; margin-bottom: 20px; }
.blog-detail-content ul li, .blog-detail-content ol li { margin-bottom: 8px; }
.blog-detail-content blockquote {
    border-left: 3px solid var(--gold);
    background: var(--gold-pale); padding: 20px 28px;
    border-radius: 0 var(--radius) var(--radius) 0;
    margin: 32px 0; font-style: italic; color: var(--muted-2);
}

.blog-share-bar {
    display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
    padding: 28px 0; border-top: 1px solid rgba(255,255,255,0.06);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    margin: 44px 0;
}
.blog-share-label { font-size: 13px; font-weight: 600; color: var(--muted); }
.blog-share-btns { display: flex; gap: 10px; }
.blog-share-btn {
    display: flex; align-items: center; gap: 8px;
    font-size: 13px; font-weight: 600; padding: 9px 18px; border-radius: 50px;
    transition: var(--transition); text-decoration: none;
}
.blog-share-btn.whatsapp { background: rgba(37,211,102,0.12); color: #25D366; border: 1px solid rgba(37,211,102,0.2); }
.blog-share-btn.whatsapp:hover { background: rgba(37,211,102,0.2); }
.blog-share-btn.facebook { background: rgba(24,119,242,0.12); color: #1877F2; border: 1px solid rgba(24,119,242,0.2); }
.blog-share-btn.facebook:hover { background: rgba(24,119,242,0.2); }

.blog-doctor-cta {
    display: flex; align-items: center; gap: 24px; flex-wrap: wrap;
    background: var(--navy); border: 1px solid rgba(201,151,58,0.15);
    border-radius: var(--radius-lg); padding: 28px 32px;
}
.blog-doctor-cta img {
    width: 72px; height: 72px; border-radius: 50%;
    object-fit: cover; border: 2px solid var(--gold);
    box-shadow: 0 0 20px rgba(201,151,58,0.25); flex-shrink: 0;
}
.blog-doctor-cta-text { flex: 1; min-width: 180px; }
.blog-doctor-cta-text strong { display: block; color: var(--white); font-size: 16px; font-family: var(--body); margin-bottom: 3px; }
.blog-doctor-cta-text span { display: block; font-size: 12px; color: var(--teal); font-weight: 600; margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.5px; }
.blog-doctor-cta-text p { color: var(--muted); font-size: 14px; margin: 0; }

/* Sidebar */
.blog-detail-sidebar { position: sticky; top: 110px; display: flex; flex-direction: column; gap: 24px; }
.sidebar-appt-card {
    background: var(--navy); border: 1px solid rgba(201,151,58,0.15);
    border-radius: var(--radius-lg); padding: 28px;
    text-align: center;
}
.sidebar-appt-icon {
    width: 60px; height: 60px; border-radius: 50%;
    background: var(--gold-pale); border: 1px solid rgba(201,151,58,0.2);
    display: flex; align-items: center; justify-content: center;
    color: var(--gold); margin: 0 auto 18px;
}
.sidebar-appt-card h4 { font-size: 18px; margin-bottom: 10px; }
.sidebar-appt-card p { color: var(--muted); font-size: 14px; line-height: 1.6; margin: 0; }
.sidebar-call-link {
    display: flex; align-items: center; justify-content: center; gap: 7px;
    font-size: 14px; font-weight: 600; color: var(--teal);
    margin-top: 14px; text-decoration: none;
}
.sidebar-call-link:hover { color: var(--gold); }
.sidebar-recent {
    background: var(--navy); border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius-lg); padding: 24px;
}
.sidebar-recent h4 { font-size: 14px; font-weight: 700; color: var(--white); font-family: var(--body); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 18px; padding-bottom: 12px; border-bottom: 1px solid rgba(255,255,255,0.06); }
.sidebar-recent-item {
    display: flex; align-items: flex-start; gap: 10px;
    font-size: 13.5px; font-weight: 500; color: var(--muted);
    padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.04);
    text-decoration: none; transition: color 0.2s;
}
.sidebar-recent-item:last-child { border-bottom: none; padding-bottom: 0; }
.sidebar-recent-item:hover { color: var(--gold); }
.sidebar-recent-item svg { color: var(--gold); flex-shrink: 0; margin-top: 3px; }

/* ============================================================
   REELS SLIDER
   ============================================================ */
.reels-section {
    padding: 110px 0;
    background: var(--navy);
    overflow: hidden;
}
.reels-slider-wrap {
    position: relative;
    margin-top: 56px;
}
.reels-track-outer {
    overflow: hidden;
    padding: 0 60px;
}
.reels-track {
    display: flex;
    gap: 14px;
    transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
    will-change: transform;
}
.reel-card {
    flex: 0 0 calc((100% - 7 * 14px) / 8);
    aspect-ratio: 9/16;
    background: var(--midnight);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: var(--transition);
}
.reel-card:hover { transform: scale(1.04); border-color: rgba(201,151,58,0.35); box-shadow: 0 16px 40px rgba(0,0,0,0.4); z-index: 2; }
.reel-thumb {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, var(--midnight), var(--navy));
}
.reel-thumb img { width:100%; height:100%; object-fit:cover; }
.reel-thumb-placeholder {
    width:100%; height:100%;
    display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px;
    background: linear-gradient(135deg, rgba(201,151,58,0.08), rgba(59,191,204,0.06));
}
.reel-thumb-placeholder svg { color: var(--gold); opacity: 0.5; }
.reel-thumb-placeholder span { font-size: 10px; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; }
.reel-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(8,12,20,0.92) 0%, rgba(8,12,20,0.1) 50%, transparent 100%);
    display: flex; flex-direction: column; justify-content: flex-end;
    padding: 14px 12px;
}
.reel-play-btn {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    width: 40px; height: 40px; border-radius: 50%;
    background: rgba(255,255,255,0.18); backdrop-filter: blur(8px);
    border: 1.5px solid rgba(255,255,255,0.3);
    display: flex; align-items: center; justify-content: center;
    transition: var(--transition);
}
.reel-card:hover .reel-play-btn {
    background: var(--gold);
    border-color: var(--gold);
    transform: translate(-50%, -50%) scale(1.1);
}
.reel-play-btn svg { color: var(--white); margin-left: 2px; }
.reel-card:hover .reel-play-btn svg { color: var(--midnight); }
.reel-info { position: relative; z-index: 1; }
.reel-name { font-size: 11px; font-weight: 700; color: var(--white); display: block; line-height: 1.3; }
.reel-location { font-size: 9.5px; color: rgba(255,255,255,0.55); display: block; margin-top: 2px; }
.reel-duration {
    position: absolute; top: 10px; right: 10px;
    background: rgba(8,12,20,0.75); backdrop-filter: blur(6px);
    color: var(--white); font-size: 9px; font-weight: 600;
    padding: 3px 7px; border-radius: 4px;
}

/* Slider Nav Buttons */
.reels-btn {
    position: absolute; top: 50%; transform: translateY(-50%);
    width: 44px; height: 44px; border-radius: 50%;
    background: rgba(13,27,42,0.92); backdrop-filter: blur(12px);
    border: 1px solid rgba(201,151,58,0.3);
    color: var(--white); cursor: pointer; z-index: 10;
    display: flex; align-items: center; justify-content: center;
    transition: var(--transition); font-family: var(--body);
}
.reels-btn:hover { background: var(--gold); border-color: var(--gold); color: var(--midnight); }
.reels-btn:disabled { opacity: 0.3; cursor: not-allowed; }
.reels-btn.prev { left: 8px; }
.reels-btn.next { right: 8px; }

@media (max-width: 1024px) {
    .reel-card { flex: 0 0 calc((100% - 5 * 14px) / 6); }
}
@media (max-width: 768px) {
    .reel-card { flex: 0 0 calc((100% - 2 * 14px) / 3); }
    .reels-track-outer { padding: 0 48px; }
}
@media (max-width: 480px) {
    .reel-card { flex: 0 0 calc((100% - 14px) / 2); }
    .reels-track-outer { padding: 0 44px; }
}
