/* ══════════════════════════════════════════════════════
   ZAHABIYA MEDICAL CENTRE — style.css
   Navbar + Hero Section (Phase 1)
══════════════════════════════════════════════════════ */

/* ───────────────────────────────────────────────────
   1. CSS CUSTOM PROPERTIES
─────────────────────────────────────────────────── */
:root {
  /* Page background */
  --bg-base:        #EDF2EE;
  --bg-soft:        #F5F8F5;

  /* Sage green scale */
  --sage-50:  #F2F8F4;
  --sage-100: #D6EBDC;
  --sage-200: #AECFB8;
  --sage-300: #7BAE8A;
  --sage-400: #5BA374;
  --sage-500: #3D8A5A;   /* primary */
  --sage-600: #2E6F47;
  --sage-700: #1E5233;
  --sage-800: #133522;
  --sage-900: #0A1F13;

  /* Typography */
  --text-heading: #0F2318;
  --text-body:    #2C4032;
  --text-muted:   #6B8A74;
  --text-white:   #FFFFFF;

  /* Glassmorphism tokens */
  --glass-bg:          rgba(255, 255, 255, 0.62);
  --glass-bg-strong:   rgba(255, 255, 255, 0.82);
  --glass-border:      rgba(255, 255, 255, 0.88);
  --glass-border-dim:  rgba(255, 255, 255, 0.40);
  --glass-shadow:
    0 4px 24px  rgba(30, 82, 51, 0.10),
    0 1px 4px   rgba(0, 0, 0, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
  --glass-shadow-lg:
    0 12px 48px rgba(30, 82, 51, 0.16),
    0 4px 16px  rgba(0, 0, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);

  /* Layout */
  --container-max: 1200px;
  --navbar-height: 130px;

  /* Border radius */
  --r-xs:   8px;
  --r-sm:  14px;
  --r-md:  22px;
  --r-lg:  32px;
  --r-xl:  48px;
  --r-full: 9999px;

  /* Motion */
  --ease:        cubic-bezier(0.4, 0, 0.2, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --t-base:      0.28s var(--ease);
  --t-slow:      0.50s var(--ease);
}

/* ───────────────────────────────────────────────────
   2. RESET & BASE
─────────────────────────────────────────────────── */
*,
*::before,
*::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: linear-gradient(
    135deg,
    #EAF2EC 0%,
    #E3EDE7 22%,
    #EDF2EE 44%,
    #E6F0EA 66%,
    #ECF3EE 88%,
    #EDF2EE 100%
  );
  background-size: 400% 400%;
  animation: bgBreath 24s ease-in-out infinite;
  color: var(--text-body);
  overflow-x: hidden;
  line-height: 1.65;
}

@keyframes bgBreath {
  0%   { background-position:   0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position:   0% 50%; }
}

img  { max-width: 100%; display: block; }
a    { text-decoration: none; color: inherit; }
ul   { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

/* ───────────────────────────────────────────────────
   3. UTILITY — GLASS CARD
─────────────────────────────────────────────────── */
.glass-card {
  background:           var(--glass-bg);
  backdrop-filter:      blur(22px) saturate(190%);
  -webkit-backdrop-filter: blur(22px) saturate(190%);
  border:               1px solid var(--glass-border);
  box-shadow:           var(--glass-shadow);
}

/* ───────────────────────────────────────────────────
   4. UTILITY — BUTTONS
─────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--r-full);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.15px;
  transition: var(--t-base);
  cursor: pointer;
  white-space: nowrap;
  border: none;
}

/* Primary */
.btn-primary {
  background: linear-gradient(135deg, var(--sage-500) 0%, var(--sage-700) 100%);
  color: #fff;
  box-shadow: 0 4px 18px rgba(61, 138, 90, 0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(61, 138, 90, 0.45);
  background: linear-gradient(135deg, var(--sage-400) 0%, var(--sage-600) 100%);
}
.btn-primary:active { transform: translateY(0); }

/* Ghost */
.btn-ghost {
  color: var(--text-body);
  border: 1.5px solid rgba(61, 138, 90, 0.28);
  background: transparent;
}
.btn-ghost:hover {
  background: rgba(61, 138, 90, 0.08);
  border-color: rgba(61, 138, 90, 0.50);
  color: var(--sage-600);
}

/* Size modifier */
.btn-lg {
  padding: 15px 32px;
  font-size: 16px;
}

/* ───────────────────────────────────────────────────
   5. UTILITY — GRADIENT TEXT
─────────────────────────────────────────────────── */
.text-gradient {
  background: linear-gradient(
    135deg,
    var(--sage-500)  0%,
    var(--sage-700) 55%,
    #1C4B2E        100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ───────────────────────────────────────────────────
   6. NAVBAR
─────────────────────────────────────────────────── */
.navbar {
  position: fixed;
  inset-block-start: 0;
  inset-inline: 0;
  z-index: 1000;
  height: var(--navbar-height);
  padding: 0 28px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(210, 230, 216, 0.60);
  box-shadow: 0 1px 20px rgba(30, 82, 51, 0.08);
  transition:
    background var(--t-base),
    backdrop-filter var(--t-base),
    box-shadow var(--t-base),
    border-color var(--t-base);
}

/* Elevated state — applied by JS on scroll */
.navbar.scrolled {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(28px) saturate(220%);
  -webkit-backdrop-filter: blur(28px) saturate(220%);
  border-bottom: 1px solid rgba(195, 222, 204, 0.70);
  box-shadow: 0 2px 32px rgba(30, 82, 51, 0.12);
}

.nav-container {
  max-width: var(--container-max);
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 48px;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 11px;
  flex-shrink: 0;
}

.logo-mark {
  width: 40px;
  height: 40px;
  background: linear-gradient(145deg, var(--sage-400), var(--sage-700));
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -1px;
  box-shadow: 0 4px 14px rgba(61, 138, 90, 0.35);
  flex-shrink: 0;
  transition: var(--t-base);
}
.nav-logo:hover .logo-mark {
  transform: rotate(-4deg) scale(1.05);
}

.logo-text {
  font-size: 15.5px;
  font-weight: 700;
  color: var(--text-heading);
  line-height: 1.25;
  letter-spacing: -0.4px;
}
.logo-text span {
  display: block;
  font-size: 12px;
  font-weight: 400;
  color: var(--text-muted);
  letter-spacing: 0.05px;
}

.site-logo {
  height: 112px;
  max-height: 112px;
  width: auto;
  object-fit: contain;
  display: block;
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-left: auto;
}

.nav-links a {
  padding: 8px 16px;
  border-radius: var(--r-full);
  font-size: 14.5px;
  font-weight: 500;
  color: var(--text-body);
  letter-spacing: -0.15px;
  transition: var(--t-base);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  inset-inline: 16px;
  bottom: 4px;
  height: 1.5px;
  background: var(--sage-500);
  border-radius: 1px;
  transform: scaleX(0);
  transition: transform var(--t-base);
}
.nav-links a:hover {
  color: var(--sage-600);
  background: rgba(61, 138, 90, 0.07);
}
.nav-links a:hover::after {
  transform: scaleX(1);
}

/* CTA */
.nav-cta {
  flex-shrink: 0;
  padding: 10px 22px;
  font-size: 14px;
}

/* Mobile hamburger */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  margin-left: auto;
  padding: 8px 6px;
  border-radius: var(--r-xs);
  transition: var(--t-base);
}
.mobile-menu-btn:hover { background: rgba(61, 138, 90, 0.08); }
.mobile-menu-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-heading);
  border-radius: 2px;
  transition: var(--t-base);
}
/* Hamburger → X when open */
.mobile-menu-btn.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-menu-btn.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.mobile-menu-btn.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile dropdown */
.mobile-menu {
  position: absolute;
  top: calc(var(--navbar-height) + 8px);
  inset-inline: 16px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(28px) saturate(200%);
  -webkit-backdrop-filter: blur(28px) saturate(200%);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-md);
  box-shadow: var(--glass-shadow-lg);
  padding: 12px;
  /* hidden state */
  opacity: 0;
  transform: translateY(-10px) scale(0.98);
  pointer-events: none;
  transition:
    opacity var(--t-base),
    transform var(--t-base);
}
.mobile-menu.open {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.mobile-menu ul { display: flex; flex-direction: column; gap: 4px; }
.mobile-menu ul li a {
  display: block;
  padding: 12px 16px;
  border-radius: var(--r-sm);
  font-size: 15px;
  font-weight: 500;
  color: var(--text-body);
  transition: var(--t-base);
}
.mobile-menu ul li a:hover {
  background: rgba(61, 138, 90, 0.09);
  color: var(--sage-600);
}
.mobile-menu ul li:last-child {
  margin-top: 8px;
  padding: 0 4px 4px;
}
.mobile-menu ul li:last-child a {
  display: flex;
  justify-content: center;
  padding: 13px 24px;
}
.mobile-menu ul li:last-child a.btn-primary {
  color: #fff;
}

/* ───────────────────────────────────────────────────
   7. HERO SECTION
─────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding:
    calc(var(--navbar-height) + 60px) 28px
    90px;
}

/* ── 7a. Gradient mesh blobs ── */
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  z-index: 0;
  will-change: transform;
}

.hero-blob-1 {
  width: 760px; height: 760px;
  background: radial-gradient(circle,
    rgba(139, 191, 152, 0.50) 0%,
    transparent 70%
  );
  top: -220px; right: -120px;
  animation: blob1 13s ease-in-out infinite alternate;
}
.hero-blob-2 {
  width: 520px; height: 520px;
  background: radial-gradient(circle,
    rgba(91, 163, 116, 0.32) 0%,
    transparent 70%
  );
  bottom: -110px; left: -90px;
  animation: blob2 17s ease-in-out infinite alternate;
}
.hero-blob-3 {
  width: 420px; height: 420px;
  background: radial-gradient(circle,
    rgba(179, 218, 194, 0.42) 0%,
    transparent 70%
  );
  top: 42%; left: 38%;
  transform: translate(-50%, -50%);
  animation: blob3 21s ease-in-out infinite alternate;
}

@keyframes blob1 {
  0%   { transform: translate(0, 0)   scale(1);    }
  40%  { transform: translate(-28px, 22px) scale(1.06); }
  100% { transform: translate(18px, -16px) scale(0.96); }
}
@keyframes blob2 {
  0%   { transform: translate(0, 0)   scale(1); }
  100% { transform: translate(28px, -32px) scale(1.10); }
}
@keyframes blob3 {
  0%   { transform: translate(-50%, -50%) scale(1);    opacity: 1; }
  100% { transform: translate(-50%, -50%) scale(1.15); opacity: 0.75; }
}

/* ── 7b. Hero layout — centered single column ── */
.hero-container {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 28px;
}

/* Accepting badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  border-radius: var(--r-full);
  font-size: 13.5px;
  font-weight: 500;
  color: var(--sage-700);
  background: rgba(255, 255, 255, 0.72);
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulseDot 2.4s ease-in-out infinite;
}
@keyframes pulseDot {
  0%, 100% { box-shadow: 0 0 0 0   rgba(34, 197, 94, 0.0);  }
  50%       { box-shadow: 0 0 0 6px rgba(34, 197, 94, 0.22); }
}

/* Headline */
.hero-title {
  font-size: clamp(44px, 6.5vw, 80px);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -3px;
  color: var(--text-heading);
}

/* Subheadline */
.hero-subtitle {
  font-size: 18px;
  line-height: 1.75;
  color: var(--text-muted);
  max-width: 560px;
  font-weight: 400;
  letter-spacing: -0.1px;
}

/* CTA group */
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

/* Stats bar */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 0;
  border-radius: var(--r-xl);
  width: fit-content;
  overflow: hidden;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding: 18px 28px;
}
.stat-item strong {
  font-size: 22px;
  font-weight: 800;
  color: var(--text-heading);
  letter-spacing: -0.6px;
  line-height: 1;
  white-space: nowrap;
}
.stat-item span {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-muted);
  white-space: nowrap;
}

.stat-divider {
  width: 1px;
  height: 32px;
  background: rgba(61, 138, 90, 0.16);
  flex-shrink: 0;
  align-self: center;
}

/* ── 7d. Hero visual (right column) ── */
.hero-visual {
  position: relative;
  display: grid;
  place-items: center;
  /* tall enough for pill below + card above card */
  padding: 40px 0 80px;
}

/* Decorative halo — separate element, no ::before needed */
.doctor-halo {
  position: absolute;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -55%);
  background: radial-gradient(circle,
    rgba(139, 191, 152, 0.42) 0%,
    rgba(179, 218, 194, 0.20) 45%,
    transparent 72%
  );
  filter: blur(12px);
  pointer-events: none;
  animation: haloPulse 8s ease-in-out infinite alternate;
  z-index: 0;
}

@keyframes haloPulse {
  0%   { transform: translate(-50%, -55%) scale(1);    opacity: 1;    }
  100% { transform: translate(-50%, -55%) scale(1.10); opacity: 0.78; }
}

/* ── Wrapper: float cards anchor to this, not the column ── */
.doctor-wrapper {
  position: relative;
  width: 360px;
  height: 520px;
  z-index: 1;
  /* top margin: keeps top-card from clipping hero top */
  /* bottom margin: room for pill below */
}

/* Doctor card fills wrapper completely */
.doctor-card {
  width: 100%;
  height: 100%;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: linear-gradient(
    155deg,
    rgba(255, 255, 255, 0.84) 0%,
    rgba(210, 236, 218, 0.65) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.95);
  box-shadow:
    0 40px 90px rgba(30, 82, 51, 0.26),
    0 14px 32px rgba(0, 0, 0, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 1);
}

.doctor-image-wrap {
  width: 100%;
  height: 100%;
}

.doctor-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 8%;
}

.doctor-img-placeholder {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  gap: 14px;
  color: var(--text-muted);
  text-align: center;
  padding: 24px;
}
.doctor-img-placeholder p {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-body);
}

/* ── Floating cards — positioned relative to .doctor-wrapper ── */
.float-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 18px;
  border-radius: var(--r-md);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(28px) saturate(220%);
  -webkit-backdrop-filter: blur(28px) saturate(220%);
  border: 1px solid rgba(255, 255, 255, 1);
  box-shadow:
    0 16px 44px rgba(30, 82, 51, 0.16),
    0 4px 12px  rgba(0, 0, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 1);
  z-index: 4;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  animation-direction: alternate;
}

/* SVG icon container inside float cards */
.float-icon-wrap {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, var(--sage-400), var(--sage-600));
  box-shadow: 0 4px 12px rgba(61, 138, 90, 0.32);
  flex-shrink: 0;
}

.float-label {
  font-size: 10.5px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.7px;
}
.float-value {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--text-heading);
  margin-top: 3px;
  letter-spacing: -0.2px;
  white-space: nowrap;
}

/*
  TOP-RIGHT card:
  - hangs off the top-right corner of the doctor card
  - mostly ABOVE the card (translated up by ~55%)
  - right edge aligns with card's right edge
*/
.float-top-right {
  top: 0;
  right: -8px;
  transform: translateY(-58%);
  animation: floatA 4.2s ease-in-out infinite alternate;
}

/*
  BOTTOM-LEFT card:
  - hangs off the bottom-left corner of the doctor card
  - mostly BELOW the card (translated down by ~55%)
  - left edge aligns with card's left edge
*/
.float-bottom-left {
  bottom: 0;
  left: -8px;
  transform: translateY(58%);
  animation: floatA 5.0s ease-in-out infinite alternate;
  animation-delay: 0.7s;
}

@keyframes floatA {
  0%   { transform: translateY(-58%);         }
  100% { transform: translateY(calc(-58% - 9px)); }
}

/* Bottom-left card floats DOWN instead */
.float-bottom-left {
  animation-name: floatB;
}
@keyframes floatB {
  0%   { transform: translateY(58%);         }
  100% { transform: translateY(calc(58% + 9px)); }
}

/* Verified pill — centered directly below the card */
.float-pill {
  position: absolute;
  bottom: -52px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 20px;
  border-radius: var(--r-full);
  font-size: 12.5px;
  font-weight: 600;
  color: var(--sage-700);
  white-space: nowrap;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px) saturate(200%);
  -webkit-backdrop-filter: blur(20px) saturate(200%);
  border: 1px solid rgba(255, 255, 255, 1);
  box-shadow:
    0 10px 28px rgba(30, 82, 51, 0.16),
    0 2px 6px rgba(0, 0, 0, 0.06);
  z-index: 4;
  animation: floatPill 4s ease-in-out infinite alternate;
  animation-delay: 1.4s;
}

@keyframes floatPill {
  0%   { transform: translateX(-50%) translateY(0);   }
  100% { transform: translateX(-50%) translateY(-7px); }
}

.pill-dot {
  width: 8px;
  height: 8px;
  background: var(--sage-400);
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(91, 163, 116, 0.22);
}

/* ───────────────────────────────────────────────────
   8. RESPONSIVE
─────────────────────────────────────────────────── */

/* Tablet */
@media (max-width: 768px) {
  :root { --navbar-height: 112px; }

  .navbar { padding: 0 20px; }
  .site-logo {
    height: 92px;
    max-height: 92px;
  }

  .hero { padding: calc(var(--navbar-height) + 48px) 24px 80px; }
  .hero-title { letter-spacing: -2px; }
}

/* Mobile */
@media (max-width: 640px) {
  :root { --navbar-height: 104px; }

  .navbar { padding: 0 16px; }
  .nav-links, .nav-cta { display: none; }
  .mobile-menu-btn    { display: flex; }
  .site-logo {
    height: 78px;
    max-height: 78px;
  }

  .hero {
    min-height: auto;
    padding: calc(var(--navbar-height) + 34px) 20px 42px;
  }
  .hero-container { gap: 22px; }
  .hero-title {
    font-size: clamp(36px, 12vw, 48px);
    letter-spacing: 0;
  }
  .hero-subtitle {
    font-size: 15.5px;
    line-height: 1.7;
  }
  .specialty-tag {
    font-size: 13px;
    line-height: 1.45;
  }

  .hero-stats {
    flex-wrap: nowrap;
    border-radius: 26px;
    width: min(100%, 390px);
    justify-content: center;
  }
  .stat-item {
    flex: 1 1 0;
    min-width: 0;
    padding: 14px 7px;
  }
  .stat-item strong { font-size: 20px; }
  .stat-item span {
    white-space: normal;
    text-align: center;
    line-height: 1.25;
  }
  .stat-divider {
    display: block;
    height: 38px;
  }
}

/* Extra small */
@media (max-width: 380px) {
  :root { --navbar-height: 94px; }

  .site-logo {
    height: 68px;
    max-height: 68px;
  }
  .hero-title { font-size: 32px; letter-spacing: 0; }
  .stat-item { padding: 12px 5px; }
  .stat-item strong { font-size: 18px; }
  .stat-item span { font-size: 10px; }
  .btn-lg     { padding: 13px 22px; font-size: 15px; }
}

/* ═════════════════════════════════════════════════════
   9. SHARED SECTION SCAFFOLDING
═════════════════════════════════════════════════════ */
.section {
  position: relative;
  padding: 64px 28px;
  scroll-margin-top: calc(var(--navbar-height) + 16px);
}

.section-container {
  position: relative;
  max-width: var(--container-max);
  margin: 0 auto;
}

.section-header {
  max-width: 720px;
  margin: 0 auto 38px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--sage-600);
  text-transform: uppercase;
  letter-spacing: 1.8px;
}
.eyebrow-center {
  align-self: center;
}
.eyebrow-dash {
  width: 28px;
  height: 1.5px;
  background: linear-gradient(90deg, transparent, var(--sage-500));
  border-radius: 2px;
}
.eyebrow-center .eyebrow-dash:last-child {
  background: linear-gradient(90deg, var(--sage-500), transparent);
}

.section-title {
  font-size: clamp(34px, 3.8vw, 52px);
  font-weight: 800;
  line-height: 1.10;
  letter-spacing: -1.6px;
  color: var(--text-heading);
}

.section-lede {
  font-size: 17px;
  line-height: 1.75;
  color: var(--text-muted);
  max-width: 560px;
  font-weight: 400;
}

.text-center { text-align: center; }
.section-header.reveal .section-title,
.section-header.reveal .section-lede {
  align-self: center;
}

/* ═════════════════════════════════════════════════════
   10. SCROLL REVEAL
═════════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.85s var(--ease),
    transform 0.85s var(--ease);
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
  .hero-blob, .services-blob-1 { animation: none; }
}

/* ═════════════════════════════════════════════════════
   11. ABOUT SECTION
═════════════════════════════════════════════════════ */
.about {
  background: linear-gradient(
    180deg,
    var(--bg-base) 0%,
    #E8EFE9 55%,
    var(--bg-base) 100%
  );
}

.about-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 48px;
  align-items: center;
}

/* Visual */
.about-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-image-card {
  width: 100%;
  max-width: 440px;
  margin-inline: auto;
  aspect-ratio: 3 / 4;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: linear-gradient(160deg,
    rgba(255,255,255,0.8) 0%,
    rgba(210, 236, 218, 0.55) 100%
  );
  border: 1px solid rgba(255,255,255,0.92);
  box-shadow:
    0 30px 80px rgba(30, 82, 51, 0.22),
    0 10px 28px rgba(0,0,0,0.10),
    inset 0 1px 0 rgba(255,255,255,1);
}
.about-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 10%;
}
.about-image-accent {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 55%,
    rgba(30, 82, 51, 0.14) 100%
  );
  pointer-events: none;
}

/* Floating credential badge */
.credential-float {
  position: absolute;
  top: 44px;
  right: -18px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border-radius: var(--r-md);
  color: var(--text-heading);
  animation: floatA 4.5s ease-in-out infinite alternate;
  z-index: 2;
}
.credential-icon {
  width: 42px;
  height: 42px;
  border-radius: var(--r-sm);
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, var(--sage-500), var(--sage-700));
  box-shadow: 0 4px 14px rgba(61,138,90,0.35);
  flex-shrink: 0;
}
.credential-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.credential-value {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-heading);
  margin-top: 2px;
  letter-spacing: -0.2px;
}

/* Floating experience card */
.experience-float {
  position: absolute;
  bottom: 30px;
  left: -28px;
  padding: 18px 22px;
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  gap: 12px;
  animation: floatA 5s ease-in-out infinite alternate;
  animation-delay: 0.8s;
  z-index: 2;
}
.experience-float strong {
  font-size: 34px;
  font-weight: 800;
  color: var(--sage-600);
  letter-spacing: -1px;
  line-height: 1;
}
.experience-float span {
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 500;
  line-height: 1.4;
  border-left: 1.5px solid rgba(61,138,90,0.25);
  padding-left: 10px;
}

/* About content */
.about-content {
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: flex-start;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 6px;
  width: 100%;
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 20px;
  border-radius: var(--r-md);
  background: rgba(255,255,255,0.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.7);
  transition: var(--t-base);
}
.about-feature:hover {
  transform: translateX(4px);
  background: rgba(255,255,255,0.8);
  box-shadow: 0 8px 24px rgba(30,82,51,0.08);
}

.feature-icon-wrap {
  width: 40px;
  height: 40px;
  border-radius: var(--r-sm);
  display: grid;
  place-items: center;
  color: var(--sage-600);
  background: linear-gradient(135deg,
    rgba(91,163,116,0.18),
    rgba(61,138,90,0.08)
  );
  border: 1px solid rgba(61,138,90,0.14);
  flex-shrink: 0;
}

.feature-body h3 {
  font-size: 15.5px;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 4px;
  letter-spacing: -0.2px;
}
.feature-body p {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ═════════════════════════════════════════════════════
   12. SERVICES SECTION
═════════════════════════════════════════════════════ */
.services {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, var(--bg-base) 0%, var(--bg-soft) 100%);
}

.services-blob-1 {
  position: absolute;
  width: 600px;
  height: 600px;
  top: 20%;
  left: -200px;
  background: radial-gradient(circle,
    rgba(139, 191, 152, 0.25) 0%, transparent 70%);
  filter: blur(100px);
  border-radius: 50%;
  pointer-events: none;
  animation: blob2 20s ease-in-out infinite alternate;
}

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

.service-card {
  padding: 32px 28px;
  border-radius: var(--r-lg);
  background: rgba(255,255,255,0.65);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255,255,255,0.85);
  box-shadow:
    0 4px 20px rgba(30,82,51,0.06),
    inset 0 1px 0 rgba(255,255,255,0.9);
  transition: var(--t-slow);
  display: flex;
  flex-direction: column;
  gap: 14px;
  cursor: default;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(91,163,116,0.08) 0%,
    transparent 50%
  );
  opacity: 0;
  transition: opacity var(--t-slow);
  pointer-events: none;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow:
    0 24px 60px rgba(30,82,51,0.16),
    0 6px 16px rgba(0,0,0,0.06),
    inset 0 1px 0 rgba(255,255,255,1);
  border-color: rgba(91,163,116,0.35);
}
.service-card:hover::before { opacity: 1; }

.service-icon {
  width: 54px;
  height: 54px;
  border-radius: var(--r-sm);
  display: grid;
  place-items: center;
  color: var(--sage-600);
  background: linear-gradient(135deg,
    rgba(139,191,152,0.22),
    rgba(61,138,90,0.10)
  );
  border: 1px solid rgba(61,138,90,0.16);
  transition: var(--t-slow);
}
.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--sage-400), var(--sage-600));
  color: #fff;
  box-shadow: 0 6px 18px rgba(61,138,90,0.35);
  transform: rotate(-4deg) scale(1.05);
}

.service-title {
  font-size: 19px;
  font-weight: 700;
  color: var(--text-heading);
  letter-spacing: -0.3px;
}

.service-text {
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.65;
  flex-grow: 1;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--sage-600);
  letter-spacing: -0.1px;
  margin-top: 4px;
  transition: var(--t-base);
}
.service-card:hover .service-link {
  gap: 10px;
  color: var(--sage-700);
}

/* ═════════════════════════════════════════════════════
   13. TESTIMONIALS + STATS
═════════════════════════════════════════════════════ */
.testimonials {
  background: var(--bg-base);
}

/* Big stats row */
.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  padding: 44px 28px;
  margin: 0 auto 42px;
  max-width: 1040px;
  border-radius: var(--r-lg);
  background: var(--glass-bg-strong);
  backdrop-filter: blur(22px) saturate(200%);
  -webkit-backdrop-filter: blur(22px) saturate(200%);
  border: 1px solid var(--glass-border);
  box-shadow:
    0 20px 60px rgba(30,82,51,0.10),
    inset 0 1px 0 rgba(255,255,255,0.95);
  position: relative;
}

.stat-block {
  text-align: center;
  padding: 8px 12px;
  position: relative;
}
.stat-block::after {
  content: '';
  position: absolute;
  top: 15%;
  right: 0;
  height: 70%;
  width: 1px;
  background: rgba(61,138,90,0.16);
}
.stat-block:last-child::after { display: none; }

.stat-block strong {
  display: block;
  font-size: clamp(32px, 3.5vw, 46px);
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1;
  background: linear-gradient(135deg, var(--sage-500), var(--sage-700));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 10px;
}

.stat-block span {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.1px;
}

/* ── Testimonial Carousel ── */
.testimonial-carousel {
  position: relative;
}

.carousel-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  scroll-behavior: smooth;
  padding-bottom: 4px;
}
.carousel-track::-webkit-scrollbar { display: none; }

.testimonial-card {
  flex: 0 0 calc(50% - 12px);
  scroll-snap-align: start;
  padding: 32px 28px;
  border-radius: var(--r-lg);
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: var(--t-slow);
}
.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--glass-shadow-lg);
}

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 36px;
}

.carousel-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.88);
  border: 1.5px solid rgba(61, 138, 90, 0.22);
  display: grid;
  place-items: center;
  color: var(--sage-600);
  cursor: pointer;
  transition: var(--t-base);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  flex-shrink: 0;
  box-shadow: 0 2px 10px rgba(30, 82, 51, 0.08);
}
.carousel-btn:hover {
  background: var(--sage-500);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 4px 16px rgba(61, 138, 90, 0.38);
}
.carousel-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}
.carousel-btn:disabled:hover {
  background: rgba(255, 255, 255, 0.88);
  color: var(--sage-600);
  border-color: rgba(61, 138, 90, 0.22);
  box-shadow: 0 2px 10px rgba(30, 82, 51, 0.08);
}

.carousel-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 4px;
  background: rgba(61, 138, 90, 0.25);
  cursor: pointer;
  transition: all 0.3s var(--ease);
  border: none;
  padding: 0;
}
.carousel-dot.active {
  background: var(--sage-500);
  width: 24px;
}

@media (max-width: 768px) {
  .testimonial-card { flex: 0 0 80%; }
}
@media (max-width: 480px) {
  .testimonial-card { flex: 0 0 88%; padding: 26px 22px; }
}


.testimonial-stars {
  font-size: 16px;
  color: #F59E0B;
  letter-spacing: 2px;
}

.testimonial-quote {
  font-size: 15.5px;
  line-height: 1.70;
  color: var(--text-body);
  font-weight: 400;
  flex-grow: 1;
  letter-spacing: -0.1px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid rgba(61,138,90,0.12);
}

.author-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--sage-300), var(--sage-500));
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  border: 2px solid rgba(255,255,255,0.8);
  letter-spacing: 0.3px;
  flex-shrink: 0;
}

.testimonial-author strong {
  display: block;
  font-size: 14.5px;
  font-weight: 700;
  color: var(--text-heading);
  letter-spacing: -0.1px;
}
.testimonial-author span {
  font-size: 12.5px;
  color: var(--text-muted);
}

/* ═════════════════════════════════════════════════════
   14. APPOINTMENT CTA BANNER
═════════════════════════════════════════════════════ */
.cta-banner {
  padding: 56px 28px;
}

.cta-wrap {
  position: relative;
  max-width: var(--container-max);
  margin: 0 auto;
  border-radius: var(--r-xl);
  overflow: hidden;
  padding: 56px 40px;
  background:
    radial-gradient(ellipse at top right, rgba(91,163,116,0.45) 0%, transparent 55%),
    radial-gradient(ellipse at bottom left, rgba(139,191,152,0.35) 0%, transparent 55%),
    linear-gradient(135deg, #0F2318 0%, #1E5233 55%, #0A1F13 100%);
  box-shadow:
    0 30px 80px rgba(30,82,51,0.35),
    inset 0 1px 0 rgba(255,255,255,0.08);
}

.cta-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  pointer-events: none;
}
.cta-blob-1 {
  width: 420px; height: 420px;
  top: -120px; right: -80px;
  background: radial-gradient(circle, rgba(139,191,152,0.50) 0%, transparent 70%);
  animation: blob1 14s ease-in-out infinite alternate;
}
.cta-blob-2 {
  width: 360px; height: 360px;
  bottom: -100px; left: -60px;
  background: radial-gradient(circle, rgba(61,138,90,0.45) 0%, transparent 70%);
  animation: blob2 18s ease-in-out infinite alternate;
}

.cta-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(rgba(255,255,255,0.07) 1px, transparent 1px);
  background-size: 32px 32px;
  opacity: 0.6;
  pointer-events: none;
  mask-image: radial-gradient(ellipse at center, black 0%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 0%, transparent 80%);
}

.cta-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  max-width: 720px;
  margin: 0 auto;
}

.cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: var(--r-full);
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.92);
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.20);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  letter-spacing: 0.1px;
}

.cta-title {
  font-size: clamp(36px, 4.5vw, 58px);
  font-weight: 800;
  line-height: 1.08;
  color: #fff;
  letter-spacing: -1.8px;
}

.cta-title-accent {
  background: linear-gradient(135deg, #B3D9C0, #7BAE8A);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta-subtitle {
  font-size: 17px;
  color: rgba(255,255,255,0.72);
  line-height: 1.65;
  max-width: 520px;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 6px;
}

.btn-white {
  background: #fff;
  color: var(--sage-700);
  box-shadow: 0 6px 20px rgba(0,0,0,0.20);
  font-weight: 700;
}
.btn-white:hover {
  transform: translateY(-2px);
  background: var(--bg-soft);
  box-shadow: 0 12px 30px rgba(0,0,0,0.25);
  color: var(--sage-800);
}

.btn-outline-white {
  background: rgba(255,255,255,0.08);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.30);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  font-weight: 600;
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.16);
  border-color: rgba(255,255,255,0.50);
  transform: translateY(-2px);
}

.cta-info-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 18px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.14);
  width: 100%;
}

.cta-info-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.78);
  font-size: 14px;
  font-weight: 500;
}
.cta-info-item svg { color: #B3D9C0; flex-shrink: 0; }

.cta-info-divider {
  width: 1px;
  height: 20px;
  background: rgba(255,255,255,0.18);
}

/* ═════════════════════════════════════════════════════
   15. FOOTER
═════════════════════════════════════════════════════ */
.footer {
  padding: 54px 28px 28px;
  background: var(--bg-base);
  border-top: 1px solid rgba(61,138,90,0.10);
}

.footer-container {
  max-width: var(--container-max);
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 34px;
  padding-bottom: 34px;
  border-bottom: 1px solid rgba(61,138,90,0.12);
}

.footer-brand .nav-logo {
  margin-bottom: 18px;
}

.footer-tagline {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-muted);
  max-width: 320px;
}

.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-heading);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 18px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul li,
.footer-col ul li a {
  font-size: 14px;
  color: var(--text-muted);
  transition: var(--t-base);
  line-height: 1.55;
}

.footer-col ul li a:hover {
  color: var(--sage-600);
  transform: translateX(3px);
  display: inline-block;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: 13px;
  color: var(--text-muted);
}
.footer-meta {
  font-style: italic;
  color: var(--sage-600) !important;
  opacity: 0.8;
}

/* ═════════════════════════════════════════════════════
   16. RESPONSIVE — New Sections
═════════════════════════════════════════════════════ */

@media (max-width: 1024px) {
  .section { padding: 56px 28px; }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .about-visual { min-height: 0; }
  .about-content { align-items: center; text-align: center; }
  .about-content .section-title { text-align: center; }
  .about-features { max-width: 520px; }

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

  .stats-row { grid-template-columns: repeat(3, 1fr); gap: 0; }
  .stat-block::after { display: none; }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 640px) {
  .section { padding: 42px 20px; }

  .section-header { margin-bottom: 30px; }

  .about-visual { min-height: 0; }
  .about-image-card {
    width: min(100%, 320px);
    max-width: 320px;
  }

  .about-feature {
    padding: 14px 16px;
    gap: 12px;
    text-align: left;
    align-items: center;
  }
  .feature-body { text-align: left; }
  .feature-icon-wrap { width: 36px; height: 36px; }

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

  .service-card { padding: 26px 22px; }

  .stats-row {
    grid-template-columns: repeat(3, 1fr);
    padding: 24px 12px;
    margin-bottom: 34px;
    border-radius: 24px;
  }
  .stat-block { padding: 4px 6px; }
  .stat-block strong {
    font-size: clamp(24px, 8vw, 32px);
    letter-spacing: -0.6px;
    margin-bottom: 7px;
  }
  .stat-block span {
    display: block;
    font-size: 11.5px;
    line-height: 1.35;
  }

  .cta-info-divider { display: none; }

  .cta-banner { padding: 42px 20px; }
  .cta-wrap {
    padding: 44px 22px;
    border-radius: 28px;
  }

  .footer { padding: 42px 20px 22px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; padding-bottom: 30px; }
  .footer-bottom { justify-content: center; text-align: center; }
  .footer-bottom p { width: 100%; text-align: center; }
}

@media (max-width: 420px) {
  .stats-row { padding: 24px 10px; }
  .stat-block { padding: 2px 4px; }
  .stat-block strong { font-size: 25px; }
  .stat-block span { font-size: 10.5px; }
}

/* ═════════════════════════════════════════════════════
   INTERACTIVE & ENERGY LAYER
═════════════════════════════════════════════════════ */

/* ── Scroll progress bar ── */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--sage-400), var(--sage-600), var(--sage-400));
  background-size: 200% 100%;
  animation: progressShimmer 2s linear infinite;
  z-index: 9999;
  transition: width 0.1s linear;
  border-radius: 0 2px 2px 0;
}
@keyframes progressShimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ── Hero entrance animation ── */
.hero-container > * {
  animation: heroIn 0.75s var(--ease) both;
}
.hero-container > *:nth-child(1) { animation-delay: 0.05s; }
.hero-container > *:nth-child(2) { animation-delay: 0.18s; }
.hero-container > *:nth-child(3) { animation-delay: 0.32s; }
.hero-container > *:nth-child(4) { animation-delay: 0.46s; }
.hero-container > *:nth-child(5) { animation-delay: 0.60s; }

@keyframes heroIn {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0);    }
}

/* ── Specialty rotator ── */
.specialty-tag {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.1px;
}

.specialty-highlight {
  color: var(--sage-600);
  font-weight: 700;
  display: inline-block;
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease);
}
.specialty-highlight.fade-out {
  opacity: 0;
  transform: translateY(-6px);
}

/* ── Button shimmer on primary CTA ── */
.btn-primary {
  position: relative;
  overflow: hidden;
}
.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 35%,
    rgba(255, 255, 255, 0.28) 50%,
    transparent 65%
  );
  transform: translateX(-100%);
  animation: btnShimmer 3.5s ease-in-out infinite;
}
@keyframes btnShimmer {
  0%        { transform: translateX(-100%); }
  30%, 100% { transform: translateX(200%);  }
}

/* ── Ambient floating cards (wide desktop only) ── */
.hero-ambient {
  display: none;
}

@media (min-width: 1380px) {
  .hero-ambient {
    display: block;
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 2;
  }

  .ambient-card {
    position: absolute;
    pointer-events: auto;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 18px 20px;
    border-radius: var(--r-md);
    width: 210px;
  }

  /* Shared ambient elements */
  .ambient-label {
    font-size: 10.5px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.7px;
  }
  .ambient-value {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-heading);
    letter-spacing: -0.2px;
  }
  .ambient-icon-wrap {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    color: #fff;
    background: linear-gradient(135deg, var(--sage-400), var(--sage-600));
    box-shadow: 0 4px 12px rgba(61,138,90,0.30);
    margin-bottom: 4px;
  }
  .ambient-cta {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 12.5px;
    font-weight: 700;
    color: var(--sage-600);
    margin-top: 4px;
    transition: gap var(--t-base);
    pointer-events: auto;
  }
  .ambient-cta:hover { gap: 8px; }

  /* Left card — appointment */
  .ambient-left {
    left: 48px;
    top: 50%;
    transform: translateY(-60%);
    animation: floatA 5s ease-in-out infinite alternate;
  }

  /* Open pill — top right */
  .ambient-open {
    position: absolute;
    top: 30%;
    right: 52px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: var(--r-full);
    font-size: 13px;
    font-weight: 600;
    color: var(--sage-700);
    pointer-events: none;
    white-space: nowrap;
    animation: floatA 4s ease-in-out infinite alternate;
    animation-delay: 0.5s;
  }
  .live-dot {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    flex-shrink: 0;
    animation: pulseDot 2s ease-in-out infinite;
  }

  /* Right card — review */
  .ambient-right {
    right: 44px;
    top: 50%;
    transform: translateY(-30%);
    animation: floatA 6s ease-in-out infinite alternate;
    animation-delay: 1s;
  }
  .ambient-stars {
    font-size: 14px;
    color: #F59E0B;
    letter-spacing: 2px;
    margin-bottom: 2px;
  }
  .ambient-quote {
    font-size: 13px;
    line-height: 1.55;
    color: var(--text-body);
    font-style: italic;
  }
  .ambient-author {
    font-size: 11.5px;
    font-weight: 600;
    color: var(--text-muted);
    margin-top: 4px;
  }
}

/* ── Service card 3-D tilt — set perspective on grid ── */
.services-grid {
  perspective: 1200px;
}
.service-card {
  transform-style: preserve-3d;
  will-change: transform;
}

/* ── Reduced-motion safety net ── */
@media (prefers-reduced-motion: reduce) {
  body { animation: none; }
  .hero-container > * { animation: none; opacity: 1; transform: none; }
  .btn-primary::after { animation: none; }
  .scroll-progress    { animation: none; }
  .specialty-highlight { transition: none; }
}

/* ═════════════════════════════════════════════════════
   BOOKING MODAL
═════════════════════════════════════════════════════ */

/* ── Overlay ── */
/* ══════════════════════════════════════════════════
   BOOKING MODAL — premium single-screen design
══════════════════════════════════════════════════ */

/* ── Overlay ── */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(10, 26, 16, 0.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.32s var(--ease);
}
.modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

/* ── Panel ── */
.modal-panel {
  position: relative;
  width: 100%;
  max-width: 880px;
  max-height: 92svh;
  overflow-y: auto;
  background: rgba(255, 255, 255, 0.985);
  backdrop-filter: blur(28px) saturate(180%);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.95);
  border-radius: 28px;
  box-shadow:
    0 40px 100px rgba(10, 26, 16, 0.30),
    0 12px 32px rgba(0, 0, 0, 0.10);
  transform: scale(0.96) translateY(14px);
  transition: transform 0.36s var(--ease-spring);
  scrollbar-width: none;
}
.modal-panel::-webkit-scrollbar { display: none; }
.modal-overlay.open .modal-panel { transform: scale(1) translateY(0); }

/* ── Step visibility ── */
.modal-step { display: none; }
.modal-step.active { display: block; animation: stepFade 0.4s var(--ease) both; }
@keyframes stepFade {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Close button ── */
.modal-close-btn {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.05);
  display: grid;
  place-items: center;
  color: var(--text-muted);
  transition: var(--t-base);
  z-index: 10;
  cursor: pointer;
  border: none;
}
.modal-close-btn:hover {
  background: rgba(0, 0, 0, 0.10);
  color: var(--text-heading);
  transform: rotate(90deg);
}

/* ──────────────────────────────────────────────
   BOOKING SCREEN
───────────────────────────────────────────────── */

/* Header */
.booking-header {
  padding: 38px 40px 22px;
  text-align: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.booking-title {
  font-size: 26px;
  font-weight: 800;
  color: var(--text-heading);
  letter-spacing: -0.6px;
  line-height: 1.15;
}
.booking-doctor {
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 6px;
  font-weight: 500;
}
.booking-info-pills {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  flex-wrap: wrap;
}
.info-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: rgba(61, 138, 90, 0.10);
  color: var(--sage-700);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1px;
}
.info-pill svg { opacity: 0.85; flex-shrink: 0; }

/* Body */
.booking-body {
  padding: 28px 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 26px;
}

/* Calendar | Times grid */
.booking-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: start;
}

/* ── Calendar ── */
.cal-section {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cal-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 4px;
}
.cal-nav-btn {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  border: 1.5px solid rgba(0, 0, 0, 0.07);
  background: white;
  color: var(--text-body);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: var(--t-base);
  font-family: inherit;
}
.cal-nav-btn:hover:not(:disabled) {
  border-color: var(--sage-400);
  color: var(--sage-700);
  background: var(--sage-50);
  transform: translateY(-1px);
}
.cal-nav-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}
.cal-month-label {
  font-size: 16px;
  font-weight: 800;
  color: var(--text-heading);
  letter-spacing: -0.3px;
}

.cal-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  text-align: center;
}
.cal-weekdays span {
  font-size: 10.5px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.6px;
  padding: 6px 0;
}

.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}

.cal-cell {
  aspect-ratio: 1;
  border-radius: 10px;
  background: transparent;
  border: 1.5px solid transparent;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-body);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--t-base);
  font-family: inherit;
  padding: 0;
}
.cal-cell.empty {
  cursor: default;
  pointer-events: none;
}
.cal-cell.disabled {
  color: rgba(0, 0, 0, 0.18);
  cursor: not-allowed;
  background: transparent;
}
.cal-cell.available {
  background: rgba(61, 138, 90, 0.06);
  color: var(--text-heading);
}
.cal-cell.available:hover {
  background: rgba(61, 138, 90, 0.18);
  border-color: rgba(61, 138, 90, 0.32);
  transform: translateY(-1px);
}
.cal-cell.today.available {
  border-color: rgba(61, 138, 90, 0.50);
  font-weight: 800;
}
.cal-cell.selected {
  background: linear-gradient(135deg, var(--sage-500), var(--sage-700)) !important;
  color: #fff !important;
  border-color: transparent !important;
  box-shadow: 0 6px 16px rgba(61, 138, 90, 0.42);
  transform: translateY(-1px);
}

.cal-hint {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11.5px;
  color: var(--text-muted);
  font-weight: 500;
  margin-top: 4px;
}
.cal-hint-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(61, 138, 90, 0.45);
}

/* ── Times section ── */
.times-section {
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 0;
}

.times-header {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.times-label {
  font-size: 10.5px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1.1px;
}
.times-sub {
  font-size: 17px;
  font-weight: 800;
  color: var(--text-heading);
  letter-spacing: -0.3px;
  line-height: 1.2;
}

.times-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  align-content: start;
}

.times-placeholder {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 13px;
  color: var(--text-muted);
  text-align: center;
  padding: 36px 20px;
  background: rgba(0, 0, 0, 0.025);
  border-radius: 14px;
  border: 1.5px dashed rgba(0, 0, 0, 0.10);
  line-height: 1.5;
  max-width: 100%;
}
.times-placeholder svg {
  color: rgba(0, 0, 0, 0.28);
  flex-shrink: 0;
}

.time-slot {
  padding: 12px 6px;
  border-radius: 10px;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--text-body);
  background: rgba(0, 0, 0, 0.04);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: var(--t-base);
  text-align: center;
  font-family: inherit;
  white-space: nowrap;
  letter-spacing: -0.1px;
}
.time-slot:hover {
  background: rgba(61, 138, 90, 0.10);
  border-color: rgba(61, 138, 90, 0.30);
  color: var(--sage-700);
  transform: translateY(-1px);
}
.time-slot.booked,
.time-slot.booked:hover {
  background: rgba(0, 0, 0, 0.075);
  border-color: rgba(0, 0, 0, 0.08);
  color: rgba(0, 0, 0, 0.34);
  cursor: not-allowed;
  box-shadow: none;
  transform: none;
  text-decoration: line-through;
}
.time-slot.loading,
.time-slot.loading:hover {
  opacity: 0.86;
}
.time-slot.active {
  background: linear-gradient(135deg, var(--sage-500), var(--sage-700));
  border-color: transparent;
  color: #fff;
  box-shadow: 0 6px 16px rgba(61, 138, 90, 0.36);
  transform: translateY(-1px);
}

/* ── Form ── */
.booking-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  padding-top: 24px;
}

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

.form-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.form-field label {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--text-body);
  letter-spacing: 0.1px;
}
.form-field input {
  width: 100%;
  padding: 13px 16px;
  border-radius: 10px;
  border: 1.5px solid rgba(0, 0, 0, 0.10);
  background: rgba(0, 0, 0, 0.025);
  font-size: 15px;
  font-family: inherit;
  color: var(--text-heading);
  outline: none;
  transition: var(--t-base);
  -webkit-appearance: none;
  appearance: none;
}
.form-field input:focus {
  border-color: var(--sage-500);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(61, 138, 90, 0.14);
}
.form-field input.is-invalid {
  border-color: #dc2626;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.10);
}
.form-field input::placeholder {
  color: var(--text-muted);
  opacity: 0.65;
}
.form-field input:invalid:not(:placeholder-shown) {
  border-color: #e74c3c;
  box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.10);
}

.field-hint {
  font-size: 11.5px;
  color: var(--text-muted);
  font-weight: 500;
  padding-left: 2px;
  opacity: 0.85;
}
.field-error {
  display: none;
  font-size: 11.5px;
  color: #dc2626;
  font-weight: 600;
  line-height: 1.35;
  padding-left: 2px;
}
.field-error.visible {
  display: block;
}

/* ── Submit button ── */
.btn-confirm {
  width: 100%;
  padding: 16px 24px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--sage-500), var(--sage-700));
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  font-family: inherit;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  letter-spacing: 0.1px;
  box-shadow: 0 8px 22px rgba(61, 138, 90, 0.36);
  transition: var(--t-base);
  margin-top: 4px;
}
.btn-confirm:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(61, 138, 90, 0.45);
}
.btn-confirm:active:not(:disabled) { transform: translateY(0); }
.btn-confirm:disabled {
  background: rgba(0, 0, 0, 0.08);
  color: rgba(0, 0, 0, 0.40);
  cursor: not-allowed;
  box-shadow: none;
}
.btn-confirm:disabled svg { opacity: 0.45; }

/* ──────────────────────────────────────────────
   CONFIRMATION SCREEN
───────────────────────────────────────────────── */
.confirm-body {
  padding: 56px 40px 44px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
  max-width: 480px;
  margin: 0 auto;
}
.confirm-check {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sage-400), var(--sage-600));
  display: grid;
  place-items: center;
  color: #fff;
  box-shadow: 0 12px 32px rgba(61, 138, 90, 0.42);
  margin-bottom: 6px;
  animation: confirmPop 0.5s var(--ease-spring) both;
}
@keyframes confirmPop {
  from { transform: scale(0.55); opacity: 0; }
  to   { transform: scale(1);    opacity: 1; }
}
.confirm-title {
  font-size: 24px;
  font-weight: 800;
  color: var(--text-heading);
  letter-spacing: -0.5px;
}
.confirm-text {
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 340px;
}
.confirm-slot-card {
  width: 100%;
  padding: 16px 20px;
  background: linear-gradient(135deg, rgba(61,138,90,0.10), rgba(91,163,116,0.06));
  border: 1px solid rgba(61, 138, 90, 0.22);
  border-radius: 14px;
  font-size: 14.5px;
  font-weight: 800;
  color: var(--sage-700);
  text-align: center;
  letter-spacing: -0.1px;
  margin-top: 4px;
}
.btn-confirm-done {
  width: 100%;
  padding: 14px 24px;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.05);
  color: var(--text-body);
  font-size: 14.5px;
  font-weight: 700;
  font-family: inherit;
  border: none;
  cursor: pointer;
  transition: var(--t-base);
  margin-top: 8px;
}
.btn-confirm-done:hover {
  background: rgba(0, 0, 0, 0.10);
  color: var(--text-heading);
}

/* ──────────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────────────── */
@media (max-width: 760px) {
  .modal-overlay { padding: 0; align-items: flex-end; }
  .modal-panel {
    max-height: 96svh;
    border-radius: 22px 22px 0 0;
    border-bottom: none;
  }
  .booking-header {
    padding: 32px 24px 18px;
  }
  .booking-title { font-size: 22px; }
  .booking-doctor { font-size: 13px; }
  .booking-body {
    padding: 24px 22px 30px;
    gap: 22px;
  }
  .booking-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .form-row {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .modal-close-btn {
    top: 14px; right: 14px;
    width: 32px; height: 32px;
  }
  .confirm-body {
    padding: 44px 28px 36px;
  }
}

@media (max-width: 420px) {
  .booking-body { padding: 20px 18px 26px; }
  .booking-header { padding: 26px 22px 16px; }
  .info-pill { font-size: 11px; padding: 5px 10px; }
  .cal-cell { font-size: 13px; border-radius: 8px; }
  .cal-weekdays span { font-size: 10px; }
  .time-slot { font-size: 12.5px; padding: 11px 4px; }
  .modal-panel { border-radius: 18px 18px 0 0; }
  .booking-title { font-size: 20px; }
  .times-sub { font-size: 15px; }
}

/* ══════════════════════════════════════════════════
   VIDEOS SECTION — YouTube cards + lightbox
══════════════════════════════════════════════════ */

.section.videos {
  position: relative;
}

/* Channel link button (under section header) */
.channel-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 18px auto 0;
  padding: 10px 20px;
  background: white;
  border: 1.5px solid var(--border-strong, rgba(0,0,0,0.10));
  border-radius: 100px;
  color: var(--text-body);
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.1px;
  text-decoration: none;
  transition: var(--t-base);
}
.channel-link:hover {
  border-color: #FF0000;
  color: #FF0000;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(255, 0, 0, 0.18);
}
.channel-link svg {
  width: 18px; height: 18px;
  color: #FF0000;
  flex-shrink: 0;
}

/* Carousel */
.video-carousel {
  margin-top: 28px;
  position: relative;
}

.video-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 8px 4px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.video-track::-webkit-scrollbar { display: none; }

.video-card {
  flex: 0 0 calc(33.333% - 14px);
  scroll-snap-align: start;
  background: white;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(15, 35, 24, 0.04), 0 8px 28px rgba(15, 35, 24, 0.06);
  cursor: pointer;
  transition: transform 0.32s var(--ease), box-shadow 0.32s var(--ease);
  border: none;
  position: relative;
  appearance: none;
  text-align: left;
  font-family: inherit;
  padding: 0;
}
.video-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 12px rgba(15, 35, 24, 0.06), 0 18px 48px rgba(15, 35, 24, 0.14);
}

/* Thumbnail */
.video-thumb-wrap {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #0F2318;
}
.video-thumb {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
  display: block;
}
.video-card:hover .video-thumb {
  transform: scale(1.06);
}

.video-play-overlay {
  position: absolute;
  inset: 0;
  display: grid; place-items: center;
  background: linear-gradient(180deg, rgba(0,0,0,0.10) 0%, rgba(0,0,0,0.45) 100%);
  transition: background 0.3s var(--ease);
}
.video-card:hover .video-play-overlay {
  background: linear-gradient(180deg, rgba(15,35,24,0.20) 0%, rgba(15,35,24,0.60) 100%);
}

.video-play-btn {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.96);
  display: grid; place-items: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.30);
  transition: transform 0.32s var(--ease-spring), background 0.2s;
}
.video-card:hover .video-play-btn {
  transform: scale(1.12);
  background: var(--sage-500);
}
.video-play-btn svg {
  width: 26px; height: 26px;
  fill: var(--sage-700);
  margin-left: 3px;
  transition: fill 0.2s;
}
.video-card:hover .video-play-btn svg {
  fill: white;
}

/* "Watch on YouTube" hint label */
.video-meta {
  position: absolute;
  top: 12px; left: 12px;
  display: inline-flex; align-items: center; gap: 5px;
  padding: 4px 9px;
  background: rgba(0, 0, 0, 0.62);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: white;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.4px;
  border-radius: 6px;
  text-transform: uppercase;
}
.video-meta svg {
  width: 11px; height: 11px;
  fill: #FF0000;
}

/* Carousel controls */
.video-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 28px;
}
.video-nav-btn {
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1.5px solid var(--border-strong, rgba(0,0,0,0.10));
  background: white;
  color: var(--text-body);
  display: grid; place-items: center;
  cursor: pointer;
  transition: var(--t-base);
}
.video-nav-btn:hover:not(:disabled) {
  border-color: var(--sage-500);
  color: var(--sage-700);
  background: var(--sage-50);
  transform: translateY(-1px);
}
.video-nav-btn:disabled {
  opacity: 0.30;
  cursor: not-allowed;
}

.video-dots {
  display: flex;
  gap: 7px;
}
.video-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(15, 35, 24, 0.20);
  border: none;
  cursor: pointer;
  transition: var(--t-base);
  padding: 0;
}
.video-dot:hover { background: rgba(15, 35, 24, 0.35); }
.video-dot.active {
  width: 26px;
  border-radius: 100px;
  background: var(--sage-500);
}

/* ── Video Lightbox ── */
.video-lightbox {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  background: rgba(5, 16, 10, 0.90);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease);
}
.video-lightbox.open {
  opacity: 1;
  pointer-events: auto;
}

.video-lightbox-inner {
  position: relative;
  width: 100%;
  max-width: 1100px;
  aspect-ratio: 16 / 9;
  background: #000;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.50);
  transform: scale(0.92);
  transition: transform 0.4s var(--ease-spring);
}
.video-lightbox.open .video-lightbox-inner {
  transform: scale(1);
}

.video-lightbox-inner iframe {
  width: 100%; height: 100%;
  display: block;
  border: 0;
}

.video-lightbox-close {
  position: absolute;
  top: 22px; right: 22px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  border: 1.5px solid rgba(255, 255, 255, 0.22);
  color: white;
  display: grid; place-items: center;
  cursor: pointer;
  transition: var(--t-base);
  z-index: 10;
}
.video-lightbox-close:hover {
  background: rgba(255, 255, 255, 0.28);
  transform: rotate(90deg);
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .video-card { flex: 0 0 calc(50% - 10px); }
}
@media (max-width: 600px) {
  .video-card { flex: 0 0 85%; }
  .video-track { gap: 14px; }
  .video-carousel { margin-top: 24px; }
  .video-controls { margin-top: 20px; gap: 14px; }
  .video-play-btn { width: 54px; height: 54px; }
  .video-play-btn svg { width: 22px; height: 22px; }
  .video-lightbox { padding: 12px; }
  .video-lightbox-close {
    top: 14px; right: 14px;
    width: 38px; height: 38px;
  }
}
