/* ============================================================
   NEUROSPINE CENTRE OF EXCELLENCE — MAIN STYLESHEET
   Version: 1.0.0 | Mobile-First, Responsive
   ============================================================ */

/* ---- CSS VARIABLES / DESIGN TOKENS ---- */
:root {
  /* Brand Palette */
  --color-navy:         #0A2342;
  --color-slate:        #1E3A5F;
  --color-medical-blue: #1565C0;
  --color-sky-blue:     #1E88E5;
  --color-light-blue:   #E3F2FD;
  --color-pale-blue:    #F0F7FF;
  --color-accent:       #00ACC1;
  --color-accent-dark:  #00838F;

  /* Neutrals */
  --color-white:        #FFFFFF;
  --color-off-white:    #F8FAFB;
  --color-text-dark:    #0D1B2A;
  --color-text-body:    #37474F;
  --color-text-muted:   #78909C;
  --color-border:       #CFD8DC;
  --color-border-light: #ECEFF1;

  /* Accent / Status */
  --color-nabh-gold:    #F9A825;
  --color-success:      #2E7D32;
  --color-success-bg:   #E8F5E9;

  /* Typography */
  --font-sans: 'Inter', 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Fluid font scale */
  --text-xs:   0.75rem;    /* 12px */
  --text-sm:   0.875rem;   /* 14px */
  --text-base: 1rem;       /* 16px */
  --text-md:   1.125rem;   /* 18px */
  --text-lg:   1.25rem;    /* 20px */
  --text-xl:   1.5rem;     /* 24px */
  --text-2xl:  2rem;       /* 32px */
  --text-3xl:  2.5rem;     /* 40px */
  --text-4xl:  3.25rem;    /* 52px */

  /* Spacing scale */
  --sp-1: 0.25rem;
  --sp-2: 0.5rem;
  --sp-3: 0.75rem;
  --sp-4: 1rem;
  --sp-5: 1.25rem;
  --sp-6: 1.5rem;
  --sp-8: 2rem;
  --sp-10: 2.5rem;
  --sp-12: 3rem;
  --sp-16: 4rem;
  --sp-20: 5rem;
  --sp-24: 6rem;

  /* Border Radii */
  --r-sm:   4px;
  --r-md:   8px;
  --r-lg:   12px;
  --r-xl:   20px;
  --r-2xl:  28px;
  --r-full: 9999px;

  /* 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.10), 0 2px 6px rgba(0,0,0,0.06);
  --shadow-lg:   0 10px 40px rgba(0,0,0,0.12), 0 4px 14px rgba(0,0,0,0.07);
  --shadow-blue: 0 4px 20px rgba(21,101,192,0.30);
  --shadow-card: 0 2px 12px rgba(10,35,66,0.08);

  /* Transitions */
  --t-fast: 150ms ease;
  --t-base: 250ms ease;
  --t-slow: 400ms ease;

  /* Layout */
  --container-max: 1200px;
  --header-h: 72px;
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  tab-size: 4;
}

body {
  font-family: var(--font-sans);
  font-size: var(--text-base);
  color: var(--color-text-body);
  background: var(--color-white);
  line-height: 1.7;
  overflow-x: hidden;
}

img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: inherit; }
h1, h2, h3, h4, h5 { line-height: 1.2; color: var(--color-text-dark); }

/* ---- LAYOUT UTILITIES ---- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--sp-6);
}

.section-pad   { padding-block: var(--sp-24); }
.section-pad-sm { padding-block: var(--sp-16); }

.section-header {
  text-align: center;
  margin-bottom: var(--sp-12);
}

.section-tag {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-medical-blue);
  background: var(--color-light-blue);
  padding: 5px 14px;
  border-radius: var(--r-full);
  margin-bottom: var(--sp-4);
}

.section-title {
  font-size: clamp(1.75rem, 4vw, var(--text-3xl));
  font-weight: 800;
  color: var(--color-navy);
  margin-bottom: var(--sp-4);
  letter-spacing: -0.02em;
}

.section-subtitle {
  font-size: var(--text-md);
  color: var(--color-text-muted);
  max-width: 600px;
  margin-inline: auto;
  line-height: 1.8;
}

.divider {
  width: 56px;
  height: 4px;
  background: linear-gradient(90deg, var(--color-medical-blue), var(--color-accent));
  border-radius: var(--r-full);
  margin: var(--sp-4) auto 0;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--r-full);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: all var(--t-base);
  border: 2px solid transparent;
  white-space: nowrap;
  line-height: 1;
}

.btn-primary {
  background: var(--color-medical-blue);
  color: var(--color-white);
  border-color: var(--color-medical-blue);
  box-shadow: var(--shadow-blue);
}
.btn-primary:hover {
  background: var(--color-sky-blue);
  border-color: var(--color-sky-blue);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(21,101,192,0.40);
}

.btn-outline-white {
  background: transparent;
  color: var(--color-white);
  border-color: rgba(255,255,255,0.55);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.14);
  border-color: var(--color-white);
  transform: translateY(-2px);
}

.btn-outline-blue {
  background: transparent;
  color: var(--color-medical-blue);
  border-color: var(--color-medical-blue);
}
.btn-outline-blue:hover {
  background: var(--color-medical-blue);
  color: var(--color-white);
  transform: translateY(-2px);
}

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

.btn-lg { padding: 16px 36px; font-size: var(--text-base); }
.btn-sm { padding: 9px 20px; font-size: var(--text-xs); }
.btn-full { width: 100%; justify-content: center; }

/* ---- ANNOUNCEMENT BAR ---- */
.announcement-bar {
  background: var(--color-navy);
  color: rgba(255,255,255,0.8);
  padding: 9px var(--sp-6);
  text-align: center;
  font-size: var(--text-xs);
  letter-spacing: 0.01em;
}
.announcement-bar strong { color: var(--color-nabh-gold); }
.announcement-bar a {
  color: var(--color-accent);
  font-weight: 600;
  transition: color var(--t-fast);
}
.announcement-bar a:hover { color: #fff; }

/* ---- SITE HEADER & NAV ---- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--color-white);
  border-bottom: 1px solid var(--color-border-light);
  transition: box-shadow var(--t-base);
}
.site-header.scrolled { box-shadow: var(--shadow-md); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: var(--sp-8);
}

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--color-medical-blue), var(--color-accent));
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  flex-shrink: 0;
}
.logo-text { line-height: 1.15; }
.logo-text .logo-name {
  display: block;
  font-size: var(--text-base);
  font-weight: 800;
  color: var(--color-navy);
  letter-spacing: -0.01em;
  white-space: nowrap;
}
.logo-text .logo-sub {
  display: block;
  font-size: 11px;
  color: var(--color-text-muted);
  font-weight: 500;
  letter-spacing: 0.03em;
  white-space: nowrap;
}

/* Primary Nav */
.main-nav {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
  justify-content: center;
}
.main-nav a {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text-body);
  padding: 7px 13px;
  border-radius: var(--r-md);
  transition: all var(--t-fast);
  white-space: nowrap;
}
.main-nav a:hover,
.main-nav a.active {
  color: var(--color-medical-blue);
  background: var(--color-light-blue);
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  flex-shrink: 0;
}
.header-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-slate);
  transition: color var(--t-fast);
}
.header-phone:hover { color: var(--color-medical-blue); }
.header-phone i { color: var(--color-accent); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: var(--r-sm);
  cursor: pointer;
  transition: background var(--t-fast);
}
.hamburger:hover { background: var(--color-light-blue); }
.hamburger span {
  display: block;
  width: 23px;
  height: 2px;
  background: var(--color-navy);
  border-radius: 2px;
  transition: all var(--t-base);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; width: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---- MOBILE NAV PANEL ---- */
.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 1100;
  backdrop-filter: blur(2px);
}
.mobile-overlay.open { display: block; }

.mobile-nav-panel {
  position: fixed;
  top: 0;
  right: -320px;
  width: 300px;
  height: 100%;
  background: var(--color-white);
  z-index: 1200;
  padding: var(--sp-6);
  overflow-y: auto;
  transition: right var(--t-slow);
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
}
.mobile-nav-panel.open { right: 0; }

.mobile-nav-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: var(--sp-6);
  border-bottom: 1px solid var(--color-border-light);
  margin-bottom: var(--sp-6);
}
.mobile-close-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--color-pale-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-slate);
  font-size: 15px;
  cursor: pointer;
  transition: all var(--t-fast);
}
.mobile-close-btn:hover {
  background: var(--color-light-blue);
  color: var(--color-medical-blue);
}

.mobile-nav-links { display: flex; flex-direction: column; gap: 4px; flex: 1; }
.mobile-nav-links a {
  display: block;
  padding: 12px var(--sp-4);
  font-size: var(--text-base);
  font-weight: 500;
  color: var(--color-text-body);
  border-radius: var(--r-md);
  transition: all var(--t-fast);
}
.mobile-nav-links a:hover {
  color: var(--color-medical-blue);
  background: var(--color-light-blue);
  padding-left: 20px;
}

.mobile-nav-cta {
  margin-top: var(--sp-8);
  padding-top: var(--sp-6);
  border-top: 1px solid var(--color-border-light);
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

/* ---- HERO SECTION ---- */
.hero {
  position: relative;
  min-height: calc(100svh - var(--header-h));
  background: linear-gradient(135deg, #071829 0%, #0A2342 35%, #1a3a64 65%, #0e3060 100%);
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Decorative background layers */
.hero-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-glow::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 60%;
  height: 80%;
  background: radial-gradient(ellipse, rgba(0,172,193,0.12) 0%, transparent 65%);
}
.hero-glow::after {
  content: '';
  position: absolute;
  bottom: -10%;
  left: -5%;
  width: 50%;
  height: 60%;
  background: radial-gradient(ellipse, rgba(21,101,192,0.15) 0%, transparent 65%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: var(--sp-16);
  align-items: center;
  padding-block: var(--sp-16);
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.18);
  color: var(--color-nabh-gold);
  padding: 7px 15px;
  border-radius: var(--r-full);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  margin-bottom: var(--sp-5);
  backdrop-filter: blur(8px);
}

.hero-title {
  font-size: clamp(2.1rem, 5.5vw, 3.8rem);
  font-weight: 800;
  color: var(--color-white);
  line-height: 1.08;
  margin-bottom: var(--sp-4);
  letter-spacing: -0.025em;
}
.hero-title .accent { color: var(--color-accent); }

.hero-creds {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
  margin-bottom: var(--sp-6);
}
.cred-chip {
  background: rgba(255,255,255,0.10);
  color: rgba(255,255,255,0.90);
  border: 1px solid rgba(255,255,255,0.18);
  padding: 4px 12px;
  border-radius: var(--r-full);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.03em;
}

.hero-tagline {
  font-size: var(--text-md);
  color: rgba(255,255,255,0.75);
  max-width: 540px;
  line-height: 1.8;
  margin-bottom: var(--sp-8);
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-4);
  margin-bottom: var(--sp-10);
}

.hero-mini-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-4);
  padding-top: var(--sp-8);
  border-top: 1px solid rgba(255,255,255,0.12);
}
.hms-item { text-align: center; }
.hms-item .hms-num {
  display: block;
  font-size: var(--text-xl);
  font-weight: 800;
  color: var(--color-accent);
  line-height: 1;
}
.hms-item .hms-lbl {
  display: block;
  font-size: 11px;
  color: rgba(255,255,255,0.55);
  font-weight: 500;
  margin-top: 4px;
}

/* Doctor card */
.hero-doctor-card {
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--r-2xl);
  padding: var(--sp-5);
  position: relative;
}

.doctor-photo {
  width: 100%;
  aspect-ratio: 3/4;
  max-height: 440px;
  background: linear-gradient(160deg, rgba(30,136,229,0.25) 0%, rgba(0,172,193,0.18) 100%);
  border-radius: var(--r-xl);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.35);
  overflow: hidden;
  position: relative;
}
.doctor-photo i { font-size: 80px; margin-bottom: var(--sp-4); }
.doctor-photo .photo-hint {
  font-size: var(--text-xs);
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}
.doctor-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-doctor-info {
  padding-top: var(--sp-4);
  text-align: center;
}
.card-doctor-info .cdn-name {
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 3px;
}
.card-doctor-info .cdn-title {
  font-size: var(--text-xs);
  color: var(--color-accent);
  font-weight: 600;
  letter-spacing: 0.04em;
}

.exp-badge {
  position: absolute;
  top: -14px;
  right: -14px;
  background: var(--color-nabh-gold);
  color: var(--color-navy);
  border-radius: 50%;
  width: 76px;
  height: 76px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  line-height: 1;
  box-shadow: var(--shadow-md);
  text-align: center;
}
.exp-badge .eb-years { font-size: 1.4rem; }
.exp-badge .eb-lbl { font-size: 9px; text-transform: uppercase; letter-spacing: 0.06em; }

.scroll-cue {
  position: absolute;
  bottom: var(--sp-8);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.40);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  z-index: 2;
  animation: scrollBounce 2.2s ease-in-out infinite;
}
.scroll-cue i { font-size: 16px; }
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ---- STATS BAR ---- */
.stats-bar {
  background: var(--color-white);
  border-bottom: 1px solid var(--color-border-light);
  box-shadow: var(--shadow-sm);
}
.stats-bar-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  padding-block: var(--sp-6);
}
.stat-cell {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: var(--sp-4);
  position: relative;
}
.stat-cell:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 15%;
  height: 70%;
  width: 1px;
  background: var(--color-border);
}
.stat-cell-icon {
  width: 46px;
  height: 46px;
  background: var(--color-light-blue);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-medical-blue);
  font-size: 18px;
  margin-bottom: var(--sp-3);
}
.stat-cell-value {
  font-size: var(--text-2xl);
  font-weight: 800;
  color: var(--color-navy);
  line-height: 1;
  margin-bottom: 3px;
}
.stat-cell-label {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  font-weight: 500;
}

/* ---- ABOUT / DOCTOR BIO ---- */
.about-section { background: var(--color-pale-blue); }

.about-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: var(--sp-16);
  align-items: start;
}

.about-photo-col {
  position: sticky;
  top: calc(var(--header-h) + var(--sp-6));
}
.about-photo-frame {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-photo-img {
  width: 100%;
  aspect-ratio: 3/4;
  max-height: 500px;
  background: linear-gradient(160deg, var(--color-light-blue) 0%, #b8dcf5 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--color-border);
  position: relative;
  overflow: hidden;
}
.about-photo-img i { font-size: 88px; margin-bottom: var(--sp-4); }
.about-photo-img span {
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.10em;
}
.about-photo-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cert-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
  margin-top: var(--sp-4);
}
.cert-chip {
  background: var(--color-navy);
  color: var(--color-white);
  padding: 5px 12px;
  border-radius: var(--r-full);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.cert-chip.gold { background: var(--color-nabh-gold); color: var(--color-navy); }

.about-content-col .section-tag { display: inline-block; }

.about-name {
  font-size: clamp(1.7rem, 3.5vw, var(--text-3xl));
  font-weight: 800;
  color: var(--color-navy);
  letter-spacing: -0.02em;
  margin-bottom: var(--sp-2);
}
.about-role {
  font-size: var(--text-md);
  color: var(--color-medical-blue);
  font-weight: 600;
  margin-bottom: var(--sp-8);
}

.about-bio p {
  color: var(--color-text-body);
  line-height: 1.85;
  margin-bottom: var(--sp-4);
}

.about-highlights {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-4);
  margin: var(--sp-8) 0;
}
.ah-item {
  background: var(--color-white);
  border-radius: var(--r-lg);
  padding: var(--sp-5);
  display: flex;
  align-items: flex-start;
  gap: var(--sp-4);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--t-base);
}
.ah-item:hover { box-shadow: var(--shadow-md); }
.ah-icon {
  width: 40px;
  height: 40px;
  background: var(--color-light-blue);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-medical-blue);
  font-size: 15px;
  flex-shrink: 0;
}
.ah-text h4 {
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 2px;
}
.ah-text p { font-size: var(--text-xs); color: var(--color-text-muted); margin: 0; }

.spec-block h3 {
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: var(--sp-4);
}
.spec-tags { display: flex; flex-wrap: wrap; gap: var(--sp-2); margin-bottom: var(--sp-8); }
.spec-tag {
  background: var(--color-light-blue);
  color: var(--color-medical-blue);
  border: 1px solid #b3d9f8;
  padding: 5px 13px;
  border-radius: var(--r-full);
  font-size: var(--text-xs);
  font-weight: 600;
}

.about-cta-row { display: flex; flex-wrap: wrap; gap: var(--sp-4); }

/* ---- PROCEDURES ---- */
.procedures-section { background: var(--color-white); }

.procedures-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
}

.proc-card {
  background: var(--color-white);
  border: 1px solid var(--color-border-light);
  border-radius: var(--r-xl);
  padding: var(--sp-6);
  transition: all var(--t-base);
  position: relative;
  overflow: hidden;
}
.proc-card::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--color-medical-blue), var(--color-accent));
  opacity: 0;
  transition: opacity var(--t-base);
}
.proc-card:hover {
  border-color: #b3d9f8;
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}
.proc-card:hover::after { opacity: 1; }

.proc-icon {
  width: 54px;
  height: 54px;
  background: var(--color-light-blue);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-medical-blue);
  font-size: 22px;
  margin-bottom: var(--sp-5);
  transition: all var(--t-base);
}
.proc-card:hover .proc-icon {
  background: var(--color-medical-blue);
  color: var(--color-white);
}

.proc-card h3 {
  font-size: var(--text-md);
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: var(--sp-3);
}
.proc-card p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.75;
  margin-bottom: var(--sp-4);
}

.proc-benefits { display: flex; flex-direction: column; gap: 6px; margin-bottom: var(--sp-5); }
.proc-benefits li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: var(--text-xs);
  color: var(--color-text-body);
}
.proc-benefits li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--color-accent);
  border-radius: 50%;
  flex-shrink: 0;
}

.proc-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: var(--text-xs);
  font-weight: 700;
  color: var(--color-medical-blue);
  letter-spacing: 0.03em;
  transition: gap var(--t-fast);
}
.proc-card:hover .proc-link { gap: 10px; }

/* ---- CONDITIONS ---- */
.conditions-section { background: var(--color-pale-blue); }

.conditions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-3);
}

.cond-item {
  background: var(--color-white);
  border: 1px solid var(--color-border-light);
  border-radius: var(--r-lg);
  padding: var(--sp-4) var(--sp-5);
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  transition: all var(--t-base);
  cursor: pointer;
}
.cond-item:hover {
  background: var(--color-light-blue);
  border-color: #b3d9f8;
  transform: translateX(3px);
  box-shadow: var(--shadow-sm);
}
.cond-item i {
  color: var(--color-medical-blue);
  font-size: 18px;
  width: 20px;
  flex-shrink: 0;
}
.cond-item span {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text-dark);
}

/* ---- BRANCHES ---- */
.branches-section { background: var(--color-white); }

.branches-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
}

.branch-card {
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid var(--color-border-light);
  box-shadow: var(--shadow-sm);
  transition: all var(--t-base);
}
.branch-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.branch-header {
  background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-slate) 100%);
  padding: var(--sp-6) var(--sp-6);
  position: relative;
  overflow: hidden;
}
.branch-header::before {
  content: '';
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 130px;
  height: 130px;
  background: rgba(255,255,255,0.04);
  border-radius: 50%;
}

.branch-logo-ph {
  width: 52px;
  height: 52px;
  background: rgba(255,255,255,0.12);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.75);
  font-size: 22px;
  margin-bottom: var(--sp-4);
}
.branch-logo-ph img { width: 100%; height: 100%; object-fit: contain; border-radius: var(--r-sm); }

.branch-header h3 {
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 4px;
}
.branch-header .bh-sub {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.60);
}

.main-badge {
  position: absolute;
  top: var(--sp-4);
  right: var(--sp-4);
  background: var(--color-nabh-gold);
  color: var(--color-navy);
  font-size: 10px;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: var(--r-full);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.branch-body { padding: var(--sp-6); background: var(--color-white); }

.b-detail {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-4);
  padding-bottom: var(--sp-4);
  margin-bottom: var(--sp-4);
  border-bottom: 1px solid var(--color-border-light);
}
.b-detail:last-of-type { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.b-detail i { color: var(--color-medical-blue); width: 16px; font-size: 14px; flex-shrink: 0; margin-top: 3px; }
.b-detail-txt { font-size: var(--text-sm); color: var(--color-text-body); line-height: 1.6; }
.b-detail-txt strong {
  display: block;
  font-size: 10px;
  font-weight: 700;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 2px;
}

.branch-footer { padding: 0 var(--sp-6) var(--sp-6); }

/* ---- NABH TRUST BANNER ---- */
.nabh-section {
  background: linear-gradient(135deg, #071829 0%, var(--color-navy) 40%, #0d3060 75%, var(--color-slate) 100%);
  position: relative;
  overflow: hidden;
}
.nabh-section::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0,172,193,0.12) 0%, transparent 65%);
  pointer-events: none;
}
.nabh-section::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(249,168,37,0.08) 0%, transparent 65%);
  pointer-events: none;
}

.nabh-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: var(--sp-16);
  align-items: center;
}

.nabh-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(249,168,37,0.12);
  border: 1px solid rgba(249,168,37,0.30);
  color: var(--color-nabh-gold);
  padding: 6px 15px;
  border-radius: var(--r-full);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  margin-bottom: var(--sp-5);
}

.nabh-title {
  font-size: clamp(1.7rem, 3.5vw, var(--text-3xl));
  font-weight: 800;
  color: var(--color-white);
  line-height: 1.15;
  margin-bottom: var(--sp-4);
}
.nabh-title span { color: var(--color-nabh-gold); }

.nabh-desc {
  font-size: var(--text-md);
  color: rgba(255,255,255,0.72);
  line-height: 1.85;
  margin-bottom: var(--sp-8);
  max-width: 560px;
}

.nabh-points { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--sp-3); }
.nabh-pt {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.78);
}
.nabh-pt i { color: var(--color-nabh-gold); font-size: 13px; flex-shrink: 0; }

.nabh-seal {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-4);
}
.nabh-seal svg { filter: drop-shadow(0 8px 24px rgba(249,168,37,0.20)); }
.nabh-seal-caption {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.45);
  text-align: center;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ---- TESTIMONIALS ---- */
.testimonials-section { background: var(--color-pale-blue); }

.t-slider-wrap { position: relative; overflow: hidden; }
.t-track {
  display: flex;
  transition: transform 0.55s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.t-slide {
  flex: 0 0 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
}

.t-card {
  background: var(--color-white);
  border-radius: var(--r-xl);
  padding: var(--sp-6);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--color-border-light);
  display: flex;
  flex-direction: column;
  position: relative;
}
.t-card::before {
  content: '\201C';
  position: absolute;
  top: -6px;
  left: var(--sp-6);
  font-size: 88px;
  color: var(--color-light-blue);
  font-family: Georgia, 'Times New Roman', serif;
  line-height: 1;
  z-index: 0;
}

.t-stars {
  display: flex;
  gap: 2px;
  margin-bottom: var(--sp-4);
  position: relative;
  z-index: 1;
}
.t-stars i { color: var(--color-nabh-gold); font-size: 13px; }

.t-text {
  font-size: var(--text-sm);
  color: var(--color-text-body);
  line-height: 1.85;
  flex: 1;
  margin-bottom: var(--sp-5);
  position: relative;
  z-index: 1;
}

.t-source {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  padding-top: var(--sp-4);
  border-top: 1px solid var(--color-border-light);
}
.t-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--color-light-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-medical-blue);
  font-weight: 700;
  font-size: var(--text-base);
  flex-shrink: 0;
}
.t-source-info strong {
  display: block;
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--color-text-dark);
}
.t-source-info span { font-size: var(--text-xs); color: var(--color-text-muted); }

.t-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-5);
  margin-top: var(--sp-10);
}
.t-dots { display: flex; gap: 8px; }
.t-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-border);
  cursor: pointer;
  transition: all var(--t-base);
  border: none;
}
.t-dot.active {
  width: 24px;
  border-radius: var(--r-full);
  background: var(--color-medical-blue);
}

.t-nav-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-slate);
  font-size: 15px;
  cursor: pointer;
  transition: all var(--t-base);
  box-shadow: var(--shadow-sm);
}
.t-nav-btn:hover {
  background: var(--color-medical-blue);
  color: var(--color-white);
  border-color: var(--color-medical-blue);
}

/* ---- FAQ ---- */
.faq-section { background: var(--color-white); }

.faq-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-4);
  max-width: 920px;
  margin-inline: auto;
}

.faq-item {
  border: 1px solid var(--color-border-light);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: box-shadow var(--t-base), border-color var(--t-base);
}
.faq-item:hover { border-color: #b3d9f8; }
.faq-item.open { border-color: #b3d9f8; box-shadow: var(--shadow-md); }

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  padding: var(--sp-5) var(--sp-6);
  cursor: pointer;
  user-select: none;
  transition: background var(--t-fast);
}
.faq-q:hover { background: var(--color-pale-blue); }
.faq-item.open .faq-q { background: var(--color-light-blue); }

.faq-q h3 {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text-dark);
  line-height: 1.45;
}
.faq-toggle-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--color-light-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-medical-blue);
  font-size: 12px;
  flex-shrink: 0;
  transition: all var(--t-base);
}
.faq-item.open .faq-toggle-icon {
  background: var(--color-medical-blue);
  color: var(--color-white);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.38s ease;
}
.faq-item.open .faq-answer { max-height: 500px; }

.faq-answer-body {
  padding: var(--sp-4) var(--sp-6) var(--sp-6);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.85;
  border-top: 1px solid var(--color-border-light);
}

/* ---- CONTACT / APPOINTMENT ---- */
.contact-section { background: var(--color-pale-blue); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: var(--sp-10);
  align-items: start;
}

.appt-form-card {
  background: var(--color-white);
  border-radius: var(--r-2xl);
  padding: var(--sp-10);
  box-shadow: var(--shadow-md);
}
.appt-form-card h3 {
  font-size: var(--text-xl);
  font-weight: 800;
  color: var(--color-navy);
  margin-bottom: var(--sp-2);
}
.appt-form-card > p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin-bottom: var(--sp-8);
  line-height: 1.7;
}

.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--sp-4); }
.fg { display: flex; flex-direction: column; gap: 5px; }
.fg.span-2 { grid-column: 1 / -1; }

.fg label {
  font-size: var(--text-xs);
  font-weight: 700;
  color: var(--color-text-dark);
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.fg input,
.fg select,
.fg textarea {
  padding: 11px 15px;
  border: 1.5px solid var(--color-border);
  border-radius: var(--r-md);
  font-size: var(--text-sm);
  color: var(--color-text-dark);
  background: var(--color-white);
  transition: border-color var(--t-base), box-shadow var(--t-base);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}
.fg input:focus,
.fg select:focus,
.fg textarea:focus {
  border-color: var(--color-medical-blue);
  box-shadow: 0 0 0 3px rgba(21,101,192,0.10);
}
.fg textarea { resize: vertical; min-height: 96px; }
.fg select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2378909C' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 13px center;
  padding-right: 36px;
  cursor: pointer;
}

.form-footer-row {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  flex-wrap: wrap;
}
.form-note {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}
.form-note i { color: var(--color-success); }

.form-success {
  display: none;
  grid-column: 1 / -1;
  align-items: center;
  gap: var(--sp-3);
  padding: var(--sp-4) var(--sp-5);
  background: var(--color-success-bg);
  color: var(--color-success);
  border-radius: var(--r-md);
  font-size: var(--text-sm);
  font-weight: 600;
}
.form-success.show { display: flex; }

.contact-info-col { display: flex; flex-direction: column; gap: var(--sp-5); }

.ci-card {
  background: var(--color-white);
  border-radius: var(--r-xl);
  padding: var(--sp-6);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border-light);
}
.ci-card h4 {
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: var(--sp-5);
  padding-bottom: var(--sp-4);
  border-bottom: 1px solid var(--color-border-light);
}

.ci-item {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-4);
  margin-bottom: var(--sp-4);
}
.ci-item:last-child { margin-bottom: 0; }
.ci-ico {
  width: 34px;
  height: 34px;
  background: var(--color-light-blue);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-medical-blue);
  font-size: 13px;
  flex-shrink: 0;
}
.ci-txt { font-size: var(--text-sm); color: var(--color-text-body); line-height: 1.65; }
.ci-txt strong { display: block; font-weight: 600; color: var(--color-text-dark); margin-bottom: 2px; }
.ci-txt a { color: var(--color-medical-blue); font-weight: 600; }
.ci-txt a:hover { text-decoration: underline; }

.map-box {
  background: var(--color-light-blue);
  border-radius: var(--r-lg);
  height: 175px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--sp-3);
  color: var(--color-text-muted);
  font-size: var(--text-sm);
  border: 2px dashed var(--color-border);
}
.map-box i { font-size: 32px; color: var(--color-border); }

/* ---- SITE FOOTER ---- */
.site-footer {
  background: var(--color-navy);
  color: rgba(255,255,255,0.70);
}

.footer-body {
  padding-block: var(--sp-16) var(--sp-10);
  display: grid;
  grid-template-columns: 1.8fr 1fr 1.4fr 1.4fr;
  gap: var(--sp-10);
}

.footer-brand p {
  font-size: var(--text-sm);
  line-height: 1.85;
  margin-block: var(--sp-5);
  max-width: 260px;
}
.footer-socials { display: flex; gap: var(--sp-2); }
.soc-link {
  width: 38px;
  height: 38px;
  border-radius: var(--r-md);
  background: rgba(255,255,255,0.09);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.65);
  font-size: 14px;
  transition: all var(--t-base);
}
.soc-link:hover {
  background: var(--color-medical-blue);
  color: var(--color-white);
  transform: translateY(-2px);
}

.footer-col h4 {
  font-size: var(--text-xs);
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: var(--sp-5);
  padding-bottom: var(--sp-4);
  border-bottom: 1px solid rgba(255,255,255,0.10);
}

.f-links { display: flex; flex-direction: column; gap: var(--sp-2); }
.f-links a {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.60);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all var(--t-fast);
}
.f-links a:hover { color: var(--color-accent); padding-left: 4px; }
.f-links a i { font-size: 9px; color: var(--color-accent); }

.f-contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  margin-bottom: var(--sp-4);
  font-size: var(--text-sm);
}
.f-contact-item i { color: var(--color-accent); width: 15px; flex-shrink: 0; margin-top: 4px; }
.f-contact-item a, .f-contact-item span { color: rgba(255,255,255,0.60); line-height: 1.65; }
.f-contact-item a:hover { color: var(--color-accent); }

.footer-nabh-chip {
  margin-top: var(--sp-5);
  padding: var(--sp-3) var(--sp-4);
  background: rgba(249,168,37,0.12);
  border: 1px solid rgba(249,168,37,0.25);
  border-radius: var(--r-md);
  text-align: center;
  font-size: var(--text-xs);
  font-weight: 700;
  color: var(--color-nabh-gold);
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.09);
  padding-block: var(--sp-5);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  flex-wrap: wrap;
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.38);
}
.footer-bottom a { color: rgba(255,255,255,0.45); transition: color var(--t-fast); }
.footer-bottom a:hover { color: var(--color-accent); }
.fb-links { display: flex; gap: var(--sp-6); }

/* ---- FLOATING ELEMENTS ---- */
.wa-btn {
  position: fixed;
  bottom: 26px;
  right: 26px;
  z-index: 990;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 26px;
  box-shadow: 0 4px 20px rgba(37,211,102,0.40);
  transition: all var(--t-base);
}
.wa-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(37,211,102,0.52);
}
.wa-tip {
  position: absolute;
  right: calc(100% + 12px);
  background: var(--color-navy);
  color: #fff;
  font-size: var(--text-xs);
  font-weight: 600;
  padding: 6px 12px;
  border-radius: var(--r-full);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t-base);
  font-family: var(--font-sans);
}
.wa-btn:hover .wa-tip { opacity: 1; }

.top-btn {
  position: fixed;
  bottom: 94px;
  right: 26px;
  z-index: 990;
  width: 44px;
  height: 44px;
  background: var(--color-medical-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 15px;
  box-shadow: var(--shadow-md);
  cursor: pointer;
  transition: all var(--t-base);
  opacity: 0;
  pointer-events: none;
  border: none;
}
.top-btn.show { opacity: 1; pointer-events: auto; }
.top-btn:hover { background: var(--color-navy); transform: translateY(-3px); }

/* ---- RESPONSIVE — TABLET (≤ 1024px) ---- */
@media (max-width: 1024px) {
  .main-nav, .header-phone { display: none; }
  .hamburger { display: flex; }

  .hero-inner { grid-template-columns: 1fr; text-align: center; gap: var(--sp-10); }
  .hero-creds, .hero-cta-row { justify-content: center; }
  .hero-tagline { margin-inline: auto; }
  .hero-doctor-card { max-width: 320px; margin-inline: auto; }

  .about-grid { grid-template-columns: 1fr; }
  .about-photo-col { position: static; max-width: 350px; margin-inline: auto; }
  .about-content-col .section-tag { display: block; }

  .procedures-grid { grid-template-columns: repeat(2, 1fr); }
  .conditions-grid { grid-template-columns: repeat(3, 1fr); }
  .branches-grid { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }

  .nabh-inner { grid-template-columns: 1fr; text-align: center; }
  .nabh-points { justify-items: start; text-align: left; max-width: 440px; margin-inline: auto; }
  .nabh-seal { display: none; }

  .t-slide { grid-template-columns: 1fr; }
  .faq-list { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }

  .stats-bar-grid { grid-template-columns: repeat(3, 1fr); }
  .stats-bar-grid .stat-cell:nth-child(3)::after { display: none; }

  .footer-body { grid-template-columns: repeat(2, 1fr); gap: var(--sp-8); }
}

/* ---- RESPONSIVE — MOBILE (≤ 768px) ---- */
@media (max-width: 768px) {
  .section-pad { padding-block: var(--sp-16); }
  .section-pad-sm { padding-block: var(--sp-10); }

  .procedures-grid { grid-template-columns: 1fr; }
  .conditions-grid { grid-template-columns: repeat(2, 1fr); }
  .about-highlights { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .form-footer-row { flex-direction: column; align-items: flex-start; }

  .stats-bar-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-bar-grid .stat-cell:nth-child(2)::after,
  .stats-bar-grid .stat-cell:nth-child(4)::after { display: none; }

  .hero-mini-stats { grid-template-columns: repeat(3, 1fr); }

  .footer-body { grid-template-columns: 1fr; gap: var(--sp-8); }
  .footer-bottom { flex-direction: column; text-align: center; gap: var(--sp-3); }
  .fb-links { justify-content: center; }
}

/* ---- RESPONSIVE — SMALL (≤ 480px) ---- */
@media (max-width: 480px) {
  .conditions-grid { grid-template-columns: 1fr; }
  .hero-mini-stats { grid-template-columns: 1fr; gap: var(--sp-3); }
  .hero-cta-row { flex-direction: column; align-items: center; }
  .hero-cta-row .btn { width: 100%; justify-content: center; }
  .announcement-bar { font-size: 11px; }
  .nabh-points { grid-template-columns: 1fr; }
  .appt-form-card { padding: var(--sp-6); }
}
