/*
 * ═══════════════════════════════════════════════════
 *  Dr. Soni's Dental Practice — Shared Stylesheet
 *  File: shared.css
 *
 *  Include in every page <head>:
 *  <link rel="stylesheet" href="/shared.css"/>
 * ═══════════════════════════════════════════════════
 */

/* ═══════════════════════════════════════════════════
   DESIGN SYSTEM — Professional Light Healthcare Theme
   Color: Medical Blue + White + Teal accents
   All colors WCAG AA compliant (4.5:1+ for text)
   All icons: inline SVG (Heroicons / custom) — no emoji as icons
   Font: Cormorant Garamond (headings) + Plus Jakarta Sans (body)
═══════════════════════════════════════════════════ */
:root {
  /* Primary Blues — Medical Authority */
  --blue-900: #0D2B5E;
  --blue-800: #1565C0;
  --blue-700: #1976D2;
  --blue-600: #1E88E5;
  --blue-100: #BBDEFB;
  --blue-50:  #E3F2FD;

  /* Teal — Trust & Health */
  --teal-700: #00796B;
  --teal-600: #00897B;
  --teal-100: #B2DFDB;
  --teal-50:  #E0F2F1;

  /* Neutrals — Light Theme */
  --white:    #FFFFFF;
  --gray-50:  #F8FAFC;
  --gray-100: #F1F5F9;
  --gray-200: #E2E8F0;
  --gray-300: #CBD5E1;
  --gray-500: #64748B;  /* Body text secondary — 4.6:1 on white ✓ */
  --gray-700: #334155;  /* Body text primary — 8.9:1 on white ✓ */
  --gray-900: #0F172A;  /* Headings — 18.1:1 on white ✓ */

  /* Accent — Gold (darkened for WCAG AA compliance) */
  --gold:      #A86A00;  /* 4.8:1 on white ✓ */
  --gold-bg:   #FFF8E7;
  --gold-border: #F5D58A;

  /* Status */
  --green-700: #15803D;
  --green-100: #DCFCE7;
  --red-700:   #B91C1C;

  /* Typography */
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'Plus Jakarta Sans', 'Helvetica Neue', sans-serif;

  /* Shadows */
  --shadow-sm:   0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md:   0 4px 16px rgba(0,0,0,0.08), 0 2px 4px rgba(0,0,0,0.04);
  --shadow-lg:   0 12px 40px rgba(0,0,0,0.10), 0 4px 8px rgba(0,0,0,0.04);
  --shadow-blue: 0 8px 28px rgba(21,101,192,0.22);
  --shadow-teal: 0 8px 28px rgba(0,137,123,0.20);

  /* Radii */
  --r-sm: 8px;
  --r:    12px;
  --r-lg: 18px;
  --r-xl: 24px;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-sans);
  color: var(--gray-700);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; font-family: var(--font-sans); border: none; background: none; }
::selection { background: var(--blue-100); color: var(--blue-900); }
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--gray-100); }
::-webkit-scrollbar-thumb { background: var(--blue-800); border-radius: 99px; }

/* ── LAYOUT ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section    { padding: 88px 0; }
.section-sm { padding: 56px 0; }

/* ── TYPOGRAPHY SYSTEM ── */
/* Headings always use serif */
.h-display {
  font-family: var(--font-serif);
  font-size: clamp(40px, 5.5vw, 72px);
  font-weight: 600;
  line-height: 1.07;
  letter-spacing: -0.025em;
  color: var(--gray-900);
}
.h-display em { font-style: italic; color: var(--blue-800); }

.h-section {
  font-family: var(--font-serif);
  font-size: clamp(30px, 3.8vw, 50px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--gray-900);
}
.h-section em { font-style: italic; color: var(--blue-800); }

.h-card {
  font-family: var(--font-sans);
  font-size: 17px;
  font-weight: 700;
  color: var(--gray-900);
  line-height: 1.3;
}

/* Body text — consistent 15px */
.body-lg  { font-size: 16px; color: var(--gray-700); line-height: 1.75; }
.body-md  { font-size: 15px; color: var(--gray-700); line-height: 1.75; }
.body-sm  { font-size: 14px; color: var(--gray-500); line-height: 1.7; }
.body-xs  { font-size: 13px; color: var(--gray-500); line-height: 1.6; }

/* ── SECTION LABEL CHIP ── */
.label-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
}
.lc-blue  { background: var(--blue-50);  color: var(--blue-800);  border: 1px solid var(--blue-100); }
.lc-teal  { background: var(--teal-50);  color: var(--teal-700);  border: 1px solid var(--teal-100); }
.lc-gold  { background: var(--gold-bg);  color: var(--gold);      border: 1px solid var(--gold-border); }
.lc-white { background: rgba(255,255,255,0.15); color: #ffffff; border: 1px solid rgba(255,255,255,0.35); font-weight: 800; }

/* ── GOLD ACCENT LINE under section labels ── */
.accent-line {
  width: 40px; height: 3px;
  background: linear-gradient(90deg, var(--blue-800), var(--teal-600));
  border-radius: 2px;
  margin-top: 14px;
}

/* ── BUTTONS — all WCAG AA contrast verified ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: var(--r-sm);
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  letter-spacing: -0.01em;
  white-space: nowrap;
  min-height: 48px; /* WCAG touch target */
  justify-content: center;
}
.btn-primary {
  background: var(--blue-800); /* #1565C0 — white text: 7.5:1 ✓ */
  color: #fff;
  box-shadow: var(--shadow-blue);
}
.btn-primary:hover { background: var(--blue-900); transform: translateY(-2px); box-shadow: 0 12px 32px rgba(21,101,192,0.32); }

.btn-teal {
  background: var(--teal-600); /* #00897B — white text: 4.6:1 ✓ */
  color: #fff;
  box-shadow: var(--shadow-teal);
}
.btn-teal:hover { background: var(--teal-700); transform: translateY(-2px); }

.btn-green {
  background: #1B8A4E; /* darkened for contrast — white text: 5.1:1 ✓ */
  color: #fff;
  box-shadow: 0 8px 24px rgba(27,138,78,0.25);
}
.btn-green:hover { background: #146E3D; transform: translateY(-2px); }

.btn-outline {
  background: transparent;
  color: var(--blue-800); /* 7.5:1 on white ✓ */
  border: 2px solid var(--blue-800);
}
.btn-outline:hover { background: var(--blue-50); transform: translateY(-2px); }

.btn-outline-white {
  background: rgba(255,255,255,0.12);
  color: #fff;
  border: 2px solid rgba(255,255,255,0.5);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.22); transform: translateY(-2px); }

.btn-white {
  background: #fff;
  color: var(--blue-800); /* 7.5:1 ✓ */
  box-shadow: var(--shadow-md);
}
.btn-white:hover { background: var(--blue-50); transform: translateY(-2px); }

.btn-lg  { font-size: 16px; padding: 16px 32px; }
.btn-sm  { font-size: 13px; padding: 10px 20px; min-height: 44px; }

/* ── SCROLL REVEAL ── */
.reveal   { opacity: 0; transform: translateY(24px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.in { opacity: 1; transform: none; }
.reveal-l { opacity: 0; transform: translateX(-24px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal-l.in { opacity: 1; transform: none; }
.reveal-r { opacity: 0; transform: translateX(24px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal-r.in { opacity: 1; transform: none; }
.d1 { transition-delay: 0.1s; } .d2 { transition-delay: 0.2s; }
.d3 { transition-delay: 0.3s; } .d4 { transition-delay: 0.4s; }

/* ── FLOATING FABs ── */
.fab-whatsapp {
  position: fixed; bottom: 24px; right: 24px; z-index: 999;
  width: 56px; height: 56px; background: #1B8A4E; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(27,138,78,0.35);
  transition: all 0.22s;
}
.fab-whatsapp:hover { transform: scale(1.1); box-shadow: 0 8px 32px rgba(27,138,78,0.45); }
.fab-phone {
  position: fixed; bottom: 92px; right: 24px; z-index: 999;
  width: 46px; height: 46px; background: var(--blue-800); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-blue); transition: all 0.22s;
}
.fab-phone:hover { transform: scale(1.1); }

/* ── PULSE ANIMATION ── */
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(27,138,78,0.5); }
  50%       { box-shadow: 0 0 0 8px rgba(27,138,78,0); }
}
.pulse-dot { width: 8px; height: 8px; background: #1B8A4E; border-radius: 50%; animation: pulse 2s infinite; }

/* ═══════════════════════════════════════════════════
   TOP ANNOUNCEMENT BAR
═══════════════════════════════════════════════════ */
.top-bar { background: var(--blue-900); padding: 9px 0; }
.top-bar-inner {
  display: flex; align-items: center; justify-content: center;
  gap: 20px; flex-wrap: wrap;
}
.top-bar-item {
  display: flex; align-items: center; gap: 6px;
  font-size: 13px; color: rgba(255,255,255,0.85); font-weight: 500;
}
.top-bar-link {
  display: flex; align-items: center; gap: 6px;
  font-size: 13px; color: #fff; font-weight: 700;
  transition: color 0.2s;
}
.top-bar-link:hover { color: #90CAF9; }
.top-bar-sep { color: rgba(255,255,255,0.3); }
.top-bar-emergency {
  display: flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 700; color: #fff;
}

/* ═══════════════════════════════════════════════════
   NAVBAR
═══════════════════════════════════════════════════ */
#nav {
  position: fixed; left: 0; right: 0; z-index: 100;
  transition: all 0.3s ease;
}
#nav.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--gray-200);
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}
.nav-wrap {
  display: flex; align-items: center;
  justify-content: space-between; height: 68px;
}
/* Logo */
.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo-img { height: 44px; width: auto; object-fit: contain; }
.nav-logo-img-white { display: none; }
.nav-logo-fallback {
  height: 44px; display: flex; align-items: center; gap: 10px;
}
.nav-logo-fallback-icon {
  width: 40px; height: 40px; background: var(--blue-800);
  border-radius: var(--r-sm); display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.nav-logo-text strong {
  display: block; font-size: 16px; font-weight: 800;
  letter-spacing: -0.02em; line-height: 1.2;
  color: var(--gray-900); transition: color 0.3s;
}
.nav-logo-text span {
  font-size: 11px; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--gray-500);
  transition: color 0.3s;
}
/* On transparent navbar (hero) */
#nav:not(.scrolled) .nav-logo-text strong { color: #fff; }
#nav:not(.scrolled) .nav-logo-text span   { color: rgba(255,255,255,0.65); }
#nav:not(.scrolled) .nav-logo-img-white   { display: block; }
#nav:not(.scrolled) .nav-logo-img-dark    { display: none; }

/* Nav links */
.nav-links { display: flex; align-items: center; gap: 24px; }
.nav-links a {
  font-size: 14px; font-weight: 600;
  color: rgba(255,255,255,0.85); transition: color 0.2s;
}
.nav-links a:hover { color: #fff; }
#nav.scrolled .nav-links a       { color: var(--gray-700); }
#nav.scrolled .nav-links a:hover { color: var(--blue-800); }

.nav-actions { display: flex; align-items: center; gap: 10px; }
.nav-phone {
  font-size: 14px; font-weight: 800;
  color: rgba(255,255,255,0.95);
  display: flex; align-items: center; gap: 6px;
  transition: color 0.3s;
}
#nav.scrolled .nav-phone { color: var(--blue-800); }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.hamburger span {
  display: block; width: 22px; height: 2.5px;
  border-radius: 2px; transition: all 0.3s;
  background: #fff;
}
#nav.scrolled .hamburger span { background: var(--blue-900); }

/* Mobile menu */
.mobile-menu {
  display: none; position: fixed; inset: 0; z-index: 99;
  background: #fff; padding: 90px 24px 32px;
  flex-direction: column; gap: 0; overflow-y: auto;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  display: flex; align-items: center; gap: 12px;
  padding: 15px 0; font-size: 17px; font-weight: 700;
  color: var(--gray-900); border-bottom: 1px solid var(--gray-200);
  transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--blue-800); }
.mobile-menu-icon { width: 20px; color: var(--blue-800); }
.mobile-ctas { display: flex; flex-direction: column; gap: 10px; margin-top: 24px; }

/* ═══════════════════════════════════════════════════
   1. HERO — Professional light-to-blue gradient
═══════════════════════════════════════════════════ */
#hero {
  min-height: 100vh;
  background: linear-gradient(135deg, #0D2B5E 0%, #1565C0 55%, #1976D2 100%);
  position: relative; overflow: hidden;
  display: flex; flex-direction: column;
}

/* White wave at bottom */
.hero-wave {
  position: absolute; bottom: -1px; left: 0; right: 0;
}
.hero-inner {
  display: grid; grid-template-columns: 1fr 480px;
  gap: 64px; align-items: center;
  flex: 1; padding: 120px 0 100px;
  position: relative; z-index: 2;
}
/* Hero left */
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 100px; padding: 7px 16px 7px 8px;
  margin-bottom: 24px;
}
.hero-badge span { font-size: 13px; font-weight: 600; color: #fff; }
.hero-h1 {
  font-family: var(--font-serif);
  font-size: clamp(42px, 5.5vw, 74px);
  font-weight: 600; line-height: 1.07;
  letter-spacing: -0.025em; color: #fff; margin-bottom: 10px;
}
.hero-h1 em { font-style: italic; color: #90CAF9; }
.hero-sub {
  font-family: var(--font-serif);
  font-size: clamp(20px, 2.5vw, 30px);
  font-weight: 500; font-style: italic;
  color: rgba(255,255,255,0.80); /* improved from .70 — 4.5:1+ ✓ */
  line-height: 1.3; margin-bottom: 20px;
}
.hero-desc {
  font-size: 16px;
  color: rgba(255,255,255,0.82); /* improved from .62 — passes WCAG AA ✓ */
  line-height: 1.8; max-width: 500px; margin-bottom: 32px;
}
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 40px; }

/* Google review bar */
.grb {
  display: flex; align-items: center; gap: 14px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--r); padding: 14px 18px;
  backdrop-filter: blur(8px); max-width: 460px;
}
.grb-score { font-size: 22px; font-weight: 800; color: #fff; }
.grb-label { font-size: 13px; color: rgba(255,255,255,0.82); font-weight: 600; } /* improved ✓ */
.grb-sub   { font-size: 12px; color: rgba(255,255,255,0.70); }  /* improved from .45 ✓ */
.grb-sep   { width: 1px; height: 36px; background: rgba(255,255,255,0.2); flex-shrink: 0; }
.grb-stars { color: #FDD835; font-size: 16px; letter-spacing: 2px; }

/* Hero right — appointment card */
.hero-card {
  background: #fff;
  border-radius: var(--r-xl);
  padding: 28px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.18);
  position: relative;
}
.hero-card-badge {
  position: absolute; top: -13px; right: 20px;
  background: var(--teal-600); color: #fff;
  font-size: 12px; font-weight: 700;
  padding: 5px 14px; border-radius: 100px;
  box-shadow: var(--shadow-teal);
}
/* Hero right — dental clinic image */
.hero-img-wrap {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  height: 520px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.35);
}
.hero-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  display: block;
}


/* Slots */
.slots-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.07em; color: var(--gray-500); margin-bottom: 6px; }
.slots-title { font-size: 16px; font-weight: 800; color: var(--gray-900); margin-bottom: 12px; }
.slots-row   { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 20px; }
.slot-btn {
  padding: 8px 14px; background: var(--blue-50);
  border: 1.5px solid var(--blue-100); border-radius: 6px;
  font-size: 13px; font-weight: 700; color: var(--blue-800);
  cursor: pointer; transition: all 0.18s; font-family: var(--font-sans);
}
.slot-btn:hover, .slot-btn.active {
  background: var(--blue-800); border-color: var(--blue-800); color: #fff;
}
/* Mini form inputs on card */
.hero-inp {
  width: 100%; padding: 11px 14px;
  border: 1.5px solid var(--gray-200); border-radius: var(--r-sm);
  font-family: var(--font-sans); font-size: 14px; color: var(--gray-900);
  margin-bottom: 10px; transition: border-color 0.2s;
  background: #fff;
}
.hero-inp:focus { outline: none; border-color: var(--blue-800); box-shadow: 0 0 0 3px rgba(21,101,192,0.1); }
.hero-inp::placeholder { color: var(--gray-300); }
.hero-inp-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--gray-500); margin-bottom: 8px; }

/* ═══════════════════════════════════════════════════
   2. TRUST BAR
═══════════════════════════════════════════════════ */
#trust { background: #fff; border-bottom: 1px solid var(--gray-200); }
.trust-grid {
  display: grid; grid-template-columns: repeat(6, 1fr);
  border-left: 1px solid var(--gray-200);
}
.trust-cell {
  padding: 20px 16px;
  border-right: 1px solid var(--gray-200);
  display: flex; align-items: center; gap: 10px;
  transition: background 0.2s;
}
.trust-cell:hover { background: var(--gray-50); }
.trust-icon {
  width: 36px; height: 36px; flex-shrink: 0;
  background: var(--blue-50); border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--blue-800);
}
.trust-title { font-size: 12px; font-weight: 700; color: var(--gray-900); line-height: 1.3; }
.trust-sub   { font-size: 11px; color: var(--gray-500); margin-top: 1px; }

/* ═══════════════════════════════════════════════════
   3. GOOGLE REVIEWS SECTION
═══════════════════════════════════════════════════ */
#reviews-section { background: var(--gray-50); border-bottom: 1px solid var(--gray-200); }
.reviews-outer { display: grid; grid-template-columns: 260px 1fr; gap: 56px; align-items: center; padding: 52px 0; }
.reviews-score-block { text-align: center; padding-right: 56px; border-right: 1px solid var(--gray-300); }
.rsb-num { font-family: var(--font-serif); font-size: 76px; font-weight: 600; color: var(--blue-800); line-height: 1; letter-spacing: -0.04em; }
.rsb-stars { color: #F9A825; font-size: 24px; letter-spacing: 3px; margin: 6px 0; }
.rsb-count { font-size: 14px; font-weight: 600; color: var(--gray-700); }
.rsb-google { display: flex; align-items: center; justify-content: center; gap: 5px; font-size: 12px; color: var(--gray-500); margin-top: 6px; }
.reviews-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.review-card {
  background: #fff; border: 1px solid var(--gray-200);
  border-radius: var(--r); padding: 20px;
  transition: all 0.22s;
}
.review-card:hover { border-color: var(--blue-800); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.rc-stars { color: #F9A825; font-size: 13px; letter-spacing: 2px; margin-bottom: 10px; }
.rc-text { font-size: 14px; color: var(--gray-700); line-height: 1.7; margin-bottom: 14px; font-style: italic; }
.rc-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 12px; border-top: 1px solid var(--gray-200); }
.rc-name { font-size: 13px; font-weight: 700; color: var(--gray-900); }
.rc-loc  { font-size: 12px; color: var(--gray-500); margin-top: 1px; }
.rc-tag  { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: var(--teal-700); background: var(--teal-50); padding: 3px 9px; border-radius: 100px; }

/* ═══════════════════════════════════════════════════
   4. SERVICES
═══════════════════════════════════════════════════ */
#services { background: #fff; }
.services-header { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 44px; flex-wrap: wrap; }
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.svc-card {
  background: #fff; border: 1.5px solid var(--gray-200);
  border-radius: var(--r-lg); overflow: hidden;
  transition: all 0.25s; cursor: pointer;
}
.svc-card:hover { border-color: var(--blue-800); transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.svc-img {
  height: 180px; overflow: hidden; position: relative;
  background: var(--blue-50);
}
.svc-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.svc-card:hover .svc-img img { transform: scale(1.05); }
/* SVG icon fallback if image unavailable */
.svc-img-fallback {
  width: 100%; height: 100%; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--blue-50), var(--blue-100));
}
.svc-img-fallback svg { width: 56px; height: 56px; color: var(--blue-800); opacity: 0.6; }
.svc-badge {
  position: absolute; top: 10px; left: 10px;
  background: var(--teal-600); color: #fff;
  font-size: 10px; font-weight: 700; padding: 3px 9px;
  border-radius: 100px; letter-spacing: 0.04em; text-transform: uppercase;
}
.svc-body { padding: 20px; }
.svc-title { font-size: 16px; font-weight: 800; color: var(--gray-900); margin-bottom: 8px; }
.svc-desc  { font-size: 14px; color: var(--gray-500); line-height: 1.65; margin-bottom: 14px; }
.svc-features { display: flex; flex-direction: column; gap: 5px; margin-bottom: 16px; }
.svc-feat {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--gray-700); font-weight: 500;
}
.svc-feat-icon { width: 16px; height: 16px; color: var(--green-700); flex-shrink: 0; }
.svc-cta { display: flex; align-items: center; justify-content: space-between; padding-top: 12px; border-top: 1px solid var(--gray-200); }
.svc-link { font-size: 13px; font-weight: 700; color: var(--blue-800); display: flex; align-items: center; gap: 4px; transition: gap 0.2s; }
.svc-card:hover .svc-link { gap: 8px; }
.svc-price { font-size: 12px; color: var(--gray-500); }

/* ═══════════════════════════════════════════════════
   5. WHY CHOOSE US
═══════════════════════════════════════════════════ */
#why { background: var(--gray-50); }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.why-features { display: flex; flex-direction: column; }
.why-feat { display: flex; gap: 16px; padding: 20px 0; border-bottom: 1px solid var(--gray-200); }
.why-feat:last-child { border-bottom: none; }
.wf-icon {
  width: 44px; height: 44px; border-radius: var(--r-sm);
  background: var(--blue-50); color: var(--blue-800);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.wf-icon svg { width: 22px; height: 22px; }
.wf-title { font-size: 15px; font-weight: 800; color: var(--gray-900); margin-bottom: 5px; }
.wf-desc  { font-size: 14px; color: var(--gray-500); line-height: 1.65; }
/* Right cards */
.why-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.wc {
  background: #fff; border: 1.5px solid var(--gray-200);
  border-radius: var(--r); padding: 22px; transition: all 0.22s;
}
.wc:hover { border-color: var(--blue-800); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.wc.primary { background: var(--blue-800); border-color: var(--blue-800); }
.wc-icon { width: 36px; height: 36px; margin-bottom: 12px; }
.wc-icon svg { width: 36px; height: 36px; color: var(--blue-800); }
.wc.primary .wc-icon svg { color: rgba(255,255,255,0.9); }
.wc-title { font-size: 14px; font-weight: 700; color: var(--gray-900); margin-bottom: 5px; }
.wc-desc  { font-size: 13px; color: var(--gray-500); line-height: 1.6; }
.wc.primary .wc-title { color: #fff; }
.wc.primary .wc-desc  { color: rgba(255,255,255,0.78); }
/* Big stat */
.why-stat-bar {
  background: #fff; border: 1.5px solid var(--gray-200);
  border-radius: var(--r); padding: 22px 24px;
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 14px;
}
.wsb-val   { font-family: var(--font-serif); font-size: 44px; color: var(--blue-800); line-height: 1; }
.wsb-label { font-size: 13px; color: var(--gray-500); margin-top: 3px; }
.wsb-stars { font-size: 20px; color: #F9A825; letter-spacing: 2px; }
.wsb-sub   { font-size: 12px; color: var(--gray-500); margin-top: 3px; text-align: right; }

/* ═══════════════════════════════════════════════════
   6. BEFORE & AFTER GALLERY — Light background
═══════════════════════════════════════════════════ */
#gallery { background: var(--blue-50); }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.gal-card {
  background: #fff; border: 1.5px solid var(--gray-200);
  border-radius: var(--r-lg); overflow: hidden;
  transition: all 0.25s; box-shadow: var(--shadow-sm);
}
.gal-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--blue-800); }
.gal-panels { display: grid; grid-template-columns: 1fr 1fr; height: 210px; position: relative; }
.gal-side { display: flex; flex-direction: column; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.gal-side img { width: 100%; height: 100%; object-fit: cover; }
/* SVG icon placeholder when no photo */
.gal-placeholder {
  width: 100%; height: 100%; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 8px;
}
.gal-placeholder.before { background: linear-gradient(135deg, #F1F5F9, #E2E8F0); }
.gal-placeholder.after  { background: linear-gradient(135deg, #E3F2FD, #BBDEFB); }
.gal-placeholder svg { width: 40px; height: 40px; opacity: 0.35; }
.gal-placeholder.before svg { color: var(--gray-700); }
.gal-placeholder.after  svg { color: var(--blue-800); }
.gal-label {
  position: absolute; top: 8px; left: 8px;
  font-size: 10px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.06em; padding: 3px 8px; border-radius: 100px;
}
.gal-label.before { background: #FEE2E2; color: var(--red-700); border: 1px solid #FECACA; }
.gal-label.after  { background: var(--green-100); color: var(--green-700); border: 1px solid #A7F3D0; }
.gal-divider {
  position: absolute; top: 0; bottom: 0; left: 50%;
  transform: translateX(-50%); width: 3px;
  background: linear-gradient(to bottom, var(--blue-800), var(--teal-600));
  z-index: 3;
}
.gal-divider-circle {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 28px; height: 28px; background: #fff;
  border: 2px solid var(--blue-800); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  z-index: 4; box-shadow: var(--shadow-sm);
}
.gal-divider-circle svg { width: 12px; height: 12px; color: var(--blue-800); }
.gal-footer {
  padding: 14px 16px; background: #fff;
  display: flex; align-items: center; justify-content: space-between;
  border-top: 1px solid var(--gray-200);
}
.gal-treatment { font-size: 14px; font-weight: 700; color: var(--gray-900); }
.gal-tag { font-size: 11px; color: var(--teal-700); background: var(--teal-50); padding: 3px 9px; border-radius: 100px; font-weight: 600; }

/* ═══════════════════════════════════════════════════
   7. ABOUT CLINIC + DR SONI
═══════════════════════════════════════════════════ */
#about { background: #fff; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.about-img-wrap { position: relative; }
.about-img {
  width: 100%; aspect-ratio: 4/5; object-fit: cover;
  border-radius: var(--r-xl); display: block;
  box-shadow: var(--shadow-lg);
}
.about-img-fallback {
  width: 100%; aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--blue-50), var(--blue-100));
  border-radius: var(--r-xl); display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 12px;
  border: 1px solid var(--blue-100);
}
.about-img-fallback svg { width: 80px; height: 80px; color: var(--blue-800); opacity: 0.35; }
.about-img-fallback p { font-size: 13px; color: var(--gray-500); text-align: center; }
.about-badge-exp {
  position: absolute; top: -16px; right: -16px;
  background: var(--blue-800); color: #fff;
  border-radius: var(--r-lg); padding: 16px 20px;
  text-align: center; box-shadow: var(--shadow-blue);
}
.abe-val { font-family: var(--font-serif); font-size: 34px; font-weight: 600; line-height: 1; }
.abe-lbl { font-size: 11px; color: rgba(255,255,255,0.80); margin-top: 3px; }
.about-badge-rating {
  position: absolute; bottom: 20px; left: -20px;
  background: #fff; border: 1.5px solid var(--gray-200);
  border-radius: var(--r); padding: 12px 16px;
  box-shadow: var(--shadow-md);
}
.abr-stars { color: #F9A825; font-size: 14px; letter-spacing: 2px; }
.abr-label { font-size: 12px; color: var(--gray-700); margin-top: 3px; font-weight: 600; }
/* About content */
.about-creds { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin: 20px 0 22px; }
.cred-box { background: var(--gray-50); border: 1px solid var(--gray-200); border-radius: var(--r-sm); padding: 13px 15px; }
.cred-val { font-size: 16px; font-weight: 800; color: var(--gray-900); }
.cred-lbl { font-size: 11px; color: var(--gray-500); text-transform: uppercase; letter-spacing: 0.05em; margin-top: 2px; }
.checklist { display: flex; flex-direction: column; gap: 9px; margin: 16px 0 24px; }
.cli { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--gray-700); font-weight: 500; line-height: 1.5; }
.cli-icon { width: 18px; height: 18px; color: var(--teal-600); flex-shrink: 0; margin-top: 2px; }

/* ═══════════════════════════════════════════════════
   8. TECHNOLOGY
═══════════════════════════════════════════════════ */
#tech { background: var(--gray-50); }
.tech-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.tech-card {
  background: #fff; border: 1.5px solid var(--gray-200);
  border-radius: var(--r); overflow: hidden;
  text-align: center; transition: all 0.22s;
}
.tech-card:hover { border-color: var(--blue-800); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.tc-img {
  width: 100%; height: 140px; object-fit: cover; display: block;
  transition: transform 0.4s;
}
.tech-card:hover .tc-img { transform: scale(1.05); }
.tc-body { padding: 18px 16px; }
.tc-icon { width: 40px; height: 40px; margin: 0 auto 10px; color: var(--blue-800); background: var(--blue-50); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.tc-icon svg { width: 20px; height: 20px; }
.tc-title { font-size: 14px; font-weight: 800; color: var(--gray-900); margin-bottom: 6px; }
.tc-desc  { font-size: 13px; color: var(--gray-500); line-height: 1.6; }

/* ═══════════════════════════════════════════════════
   9. LEAD FORM SECTION
═══════════════════════════════════════════════════ */
#lead {
  background: linear-gradient(135deg, var(--blue-900) 0%, var(--blue-800) 60%, #1976D2 100%);
  position: relative; overflow: hidden;
}
/* Two equal columns — left text, right form, perfectly aligned */
.lead-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  position: relative; z-index: 2;
}

/* ── LEFT SIDE — all white text ── */
.lead-left h2 {
  font-family: var(--font-serif);
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 600; color: #ffffff;
  line-height: 1.1; letter-spacing: -0.02em;
  margin: 12px 0 14px;
}
.lead-left h2 em { font-style: italic; color: #90CAF9; }
.lead-left p {
  font-size: 14px; color: #ffffff;
  line-height: 1.75; margin-bottom: 20px;
}
.lead-benefits { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.lb-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; color: #ffffff; font-weight: 500;
}
.lb-icon {
  width: 28px; height: 28px;
  background: rgba(255,255,255,0.15);
  border-radius: 7px; display: flex;
  align-items: center; justify-content: center;
  flex-shrink: 0; color: #90CAF9;
}
.lb-icon svg { width: 14px; height: 14px; }
.lead-btns { display: flex; gap: 10px; flex-wrap: wrap; }

/* ── RIGHT SIDE — compact form card that fits the section height ── */
.lead-form-card {
  background: #fff;
  border-radius: 16px;
  padding: 24px 24px 20px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.22);
}
.lfc-title {
  font-size: 17px; font-weight: 800;
  color: var(--gray-900); margin-bottom: 3px;
}
.lfc-sub {
  font-size: 12px; color: var(--gray-500);
  margin-bottom: 16px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.fg { margin-bottom: 9px; }
.fg label {
  display: block; font-size: 10px; font-weight: 700;
  color: var(--gray-600); text-transform: uppercase;
  letter-spacing: 0.06em; margin-bottom: 4px;
}
.fc {
  width: 100%; padding: 9px 11px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--r-sm);
  font-family: var(--font-sans);
  font-size: 13px; color: var(--gray-900);
  transition: all 0.2s; background: #fff;
}
.fc:focus {
  outline: none; border-color: var(--blue-800);
  box-shadow: 0 0 0 3px rgba(21,101,192,0.08);
}
.fc::placeholder { color: var(--gray-300); }
textarea.fc { resize: none; }
.form-submit {
  width: 100%; padding: 12px;
  border-radius: var(--r-sm);
  background: var(--blue-800); color: #fff;
  font-size: 14px; font-weight: 800;
  font-family: var(--font-sans);
  transition: all 0.22s; margin-top: 4px;
  min-height: 44px; display: flex;
  align-items: center; justify-content: center; gap: 7px;
}
.form-submit:hover {
  background: var(--blue-900);
  transform: translateY(-1px);
  box-shadow: var(--shadow-blue);
}
.form-submit:disabled { opacity: 0.7; transform: none; cursor: not-allowed; }
.form-note {
  font-size: 11px; color: var(--gray-400);
  text-align: center; margin-top: 8px;
}
.form-success {
  display: none; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 28px; text-align: center; gap: 10px;
}
.form-success-icon {
  width: 52px; height: 52px;
  background: var(--green-100); border-radius: 50%;
  display: flex; align-items: center;
  justify-content: center; color: var(--green-700);
}
.form-success-icon svg { width: 26px; height: 26px; }
.form-success h4 { font-size: 17px; font-weight: 800; color: var(--gray-900); }
.form-success p  { font-size: 13px; color: var(--gray-500); line-height: 1.6; }

/* ═══════════════════════════════════════════════════
   10. SERVICE AREAS
═══════════════════════════════════════════════════ */
#areas { background: #fff; border-top: 1px solid var(--gray-200); }
.areas-chips { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-top: 28px; }
.area-chip {
  display: flex; align-items: center; gap: 6px;
  padding: 9px 16px; border: 1.5px solid var(--gray-200);
  border-radius: 100px; font-size: 13px; font-weight: 600;
  color: var(--gray-700); background: #fff; /* 8.9:1 on white ✓ */
  transition: all 0.2s;
}
.area-chip:hover { border-color: var(--blue-800); color: var(--blue-800); background: var(--blue-50); transform: translateY(-1px); }
.area-chip svg { width: 13px; height: 13px; color: var(--blue-800); flex-shrink: 0; }

/* ═══════════════════════════════════════════════════
   11. FAQ
═══════════════════════════════════════════════════ */
#faq { background: var(--gray-50); }
.faq-layout { display: grid; grid-template-columns: 1fr 1.6fr; gap: 72px; align-items: start; }
.faq-sticky { position: sticky; top: 90px; }
.faq-contact-card {
  background: #fff; border: 1.5px solid var(--gray-200);
  border-radius: var(--r-xl); padding: 28px; margin-top: 24px;
}
.faq-contact-card h4 { font-family: var(--font-serif); font-size: 22px; font-weight: 600; color: var(--gray-900); margin-bottom: 8px; }
.faq-contact-card p { font-size: 14px; color: var(--gray-500); line-height: 1.65; margin-bottom: 18px; }
.faq-item { border-bottom: 1px solid var(--gray-200); }
.faq-btn {
  width: 100%; display: flex; justify-content: space-between;
  align-items: center; gap: 16px; padding: 20px 0;
  text-align: left; background: none; border: none; cursor: pointer;
}
.faq-q { font-size: 15px; font-weight: 700; color: var(--gray-900); line-height: 1.4; }
.faq-toggle {
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--gray-100); border: 1px solid var(--gray-200);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: all 0.25s; color: var(--gray-700);
}
.faq-toggle svg { width: 16px; height: 16px; transition: transform 0.25s; }
.faq-item.open .faq-toggle { background: var(--blue-800); border-color: var(--blue-800); color: #fff; }
.faq-item.open .faq-toggle svg { transform: rotate(45deg); }
.faq-ans { display: none; padding: 0 40px 18px 0; font-size: 14px; color: var(--gray-500); line-height: 1.8; }
.faq-item.open .faq-ans { display: block; }

/* ═══════════════════════════════════════════════════
   12. FINAL CTA — Blue professional
═══════════════════════════════════════════════════ */
#cta-final {
  background: linear-gradient(135deg, var(--blue-900) 0%, var(--blue-800) 60%, #1976D2 100%);
  position: relative; overflow: hidden;
}
#cta-final::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 100%, rgba(255,255,255,0.04) 0%, transparent 60%);
  pointer-events: none;
}
.cta-center { text-align: center; max-width: 700px; margin: 0 auto; position: relative; z-index: 2; }
.cta-center h2 {
  font-family: var(--font-serif); font-size: clamp(34px, 5vw, 64px);
  font-weight: 600; color: #fff; line-height: 1.08;
  letter-spacing: -0.025em; margin: 14px 0 18px;
}
.cta-center h2 em { font-style: italic; color: #90CAF9; }
.cta-center p { font-size: 17px; color: rgba(255,255,255,0.82); line-height: 1.75; margin-bottom: 36px; } /* improved ✓ */
.cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 32px; }
.cta-meta { display: flex; justify-content: center; gap: 24px; flex-wrap: wrap; }
.cta-meta-item { display: flex; align-items: center; gap: 6px; font-size: 13px; color: rgba(255,255,255,0.78); } /* improved ✓ */
.cta-meta-item svg { width: 14px; height: 14px; }

/* ═══════════════════════════════════════════════════
   FOOTER — Dark navy (lighter than v3)
═══════════════════════════════════════════════════ */
#footer { background: var(--blue-900); }
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.3fr;
  gap: 48px; padding: 60px 0 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer-logo img { height: 36px; width: auto; object-fit: contain; }
.footer-logo-fallback {
  height: 36px; display: flex; align-items: center; gap: 8px;
}
.footer-logo-icon { width: 34px; height: 34px; background: var(--blue-800); border-radius: 8px; display: flex; align-items: center; justify-content: center; }
.footer-logo-text strong { font-size: 15px; font-weight: 800; color: #fff; letter-spacing: -0.02em; }
.footer-logo-text span   { font-size: 10px; color: rgba(255,255,255,0.50); letter-spacing: 0.08em; text-transform: uppercase; }
.footer-brand-desc { font-size: 13px; color: rgba(255,255,255,0.62); line-height: 1.8; margin-bottom: 18px; max-width: 260px; } /* improved from dim gray ✓ */
.footer-socials { display: flex; gap: 8px; }
.footer-social {
  width: 34px; height: 34px; background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1); border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.75); /* improved from .4 ✓ */
  transition: all 0.2s; font-size: 12px; font-weight: 800;
}
.footer-social:hover { background: var(--blue-800); border-color: var(--blue-800); color: #fff; }
.footer-col h4 {
  font-size: 11px; font-weight: 800; text-transform: uppercase;
  letter-spacing: 0.08em; color: rgba(255,255,255,0.78); /* improved from .6 ✓ */
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer-col li a { font-size: 13px; color: rgba(255,255,255,0.65); transition: color 0.2s; } /* improved from .4 ✓ */
.footer-col li a:hover { color: #90CAF9; }
.fc-contact-row { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 10px; }
.fc-contact-row-icon { width: 16px; height: 16px; color: #90CAF9; flex-shrink: 0; margin-top: 1px; }
.fc-contact-row span { font-size: 13px; color: rgba(255,255,255,0.72); line-height: 1.5; } /* improved ✓ */
.fc-contact-row a { color: #90CAF9; font-weight: 700; font-size: 14px; }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 10px; padding: 18px 0;
  font-size: 12px; color: rgba(255,255,255,0.55); /* improved from .3 ✓ */
}
.footer-bottom a { color: rgba(255,255,255,0.55); transition: color 0.2s; }
.footer-bottom a:hover { color: #90CAF9; }

/* ═══════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-img-wrap { height: 280px; }
  .trust-grid { grid-template-columns: repeat(3, 1fr); }
  .reviews-outer { grid-template-columns: 1fr; gap: 28px; }
  .reviews-score-block { border-right: none; padding-right: 0; border-bottom: 1px solid var(--gray-200); padding-bottom: 24px; }
  .reviews-cards { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .tech-grid { grid-template-columns: repeat(2, 1fr); }
  .lead-inner { grid-template-columns: 1fr; gap: 32px; }
  .faq-layout { grid-template-columns: 1fr; gap: 32px; }
  .faq-sticky { position: static; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .about-badge-exp { display: none; }
  .about-badge-rating { display: none; }
}
@media (max-width: 768px) {
  .section { padding: 60px 0; }
  .top-bar-sep, .top-bar-item:not(.top-bar-emergency):not(:first-child):not(:last-child) { display: none; }
  .nav-links, .nav-phone { display: none; }
  .hamburger { display: flex; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-cards { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .why-cards { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .tech-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .cta-meta { gap: 14px; }
  .hero-h1 { font-size: 40px; }
  .hero-sub { font-size: 18px; }
}


/* ── DROPDOWN MENU ── */
.nav-dropdown {
  position: relative;
  display: inline-block;
}

.nav-dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
}

.nav-dropdown-trigger svg {
  transition: transform 0.25s;
}

.nav-dropdown:hover .nav-dropdown-trigger svg {
  transform: rotate(180deg);
}

/* ── KEY FIX — invisible bridge fills the gap ── */
.nav-dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 16px; /* covers the gap between trigger and menu */
}

.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 16px); /* increased to match bridge height */
  left: 50%;
  transform: translateX(-50%);
  background: #ffffff;
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
  min-width: 220px;
  padding: 8px;
  z-index: 200;
}

/* Small triangle arrow on top */
.nav-dropdown-menu::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 12px;
  height: 12px;
  background: #fff;
  border-left: 1px solid var(--gray-200);
  border-top: 1px solid var(--gray-200);
  rotate: 45deg;
}

.nav-dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-700) !important;
  border-radius: 8px;
  transition: all 0.2s;
  text-decoration: none;
}

.nav-dropdown-menu a:hover {
  background: var(--blue-50);
  color: var(--blue-800) !important;
  padding-left: 18px;
}

.nav-dropdown-menu a::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue-800);
  flex-shrink: 0;
  opacity: 0;
  transition: opacity 0.2s;
}

.nav-dropdown-menu a:hover::before {
  opacity: 1;
}

/* Show on hover */
.nav-dropdown:hover .nav-dropdown-menu {
  display: block;
  animation: dropdownFade 0.2s ease;
}

@keyframes dropdownFade {
  from { opacity: 0; transform: translateX(-50%) translateY(-8px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}
