/* ============================================================
   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-8);
}

.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-img {
  height: 42px;
  width: auto;
  object-fit: contain;
  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;
}
/* NABH badge in header — sits between logo and nav */
.header-nabh {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.header-nabh .nabh-badge--sm {
  width: 48px;
  height: 48px;
  box-shadow: 0 0 0 5px #0D2550;
}
.header-nabh .nabh-badge--sm .nabh-badge__title { font-size: 10px; }
.header-nabh .nabh-badge--sm .nabh-badge__sub   { font-size: 4.5px; letter-spacing: 0.10em; }
.header-nabh .nabh-badge--sm .nabh-badge__star  { font-size: 7px; }
.header-nabh .nabh-badge--sm .nabh-badge__check { font-size: 7px; }
/* hide on small screens where header is tight */
@media (max-width: 900px) { .header-nabh { display: none; } }
.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(7, 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: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
  margin: var(--sp-6) 0;
}
.ah-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  padding: 4px 0;
  background: none;
  border: none;
  border-radius: 0;
  transition: none;
  cursor: default;
}
.ah-item:hover {
  background: none;
  box-shadow: none;
  transform: none;
}
.ah-item::before {
  content: '';
  width: 3px;
  min-width: 3px;
  height: 2.2em;
  border-radius: 2px;
  background: var(--color-medical-blue);
  flex-shrink: 0;
}
.ah-item h4 {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--color-navy);
  margin: 0;
  white-space: normal;
  line-height: 1.2;
}
.ah-item p {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  margin: 0;
  white-space: normal;
  line-height: 1.4;
}

.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); }

/* ======================================================
   SPECIALITIES — Tabbed Section
====================================================== */
.specialities-section { background: var(--color-white); padding-block: var(--sp-12); }

/* Hero spec links */
.hero-spec-link {
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 0.2s ease;
}
.hero-spec-link:hover { color: var(--color-accent); }
.hero-spec-sep {
  display: inline-block;
  margin-inline: 0.25em;
  color: rgba(255, 255, 255, 0.35);
  font-weight: 300;
}

/* Tab nav */
.spec-tab-nav {
  display: flex;
  gap: var(--sp-2);
  margin-bottom: var(--sp-8);
}
.spec-tab-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.6rem 1.5rem;
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--color-text-muted);
  background: var(--color-white);
  border: 1.5px solid var(--color-border);
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.22s ease;
}
.spec-tab-btn:hover {
  color: var(--color-medical-blue);
  border-color: var(--color-medical-blue);
  background: var(--color-light-blue);
}
.spec-tab-btn.active {
  color: #fff;
  background: var(--color-medical-blue);
  border-color: var(--color-medical-blue);
  box-shadow: 0 2px 8px rgba(21, 101, 192, 0.25);
}

/* Spine Grid */
.spec-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-3);
}

/* Spec card — horizontal thin layout */
.spec-card {
  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-4);
  position: relative;
  overflow: hidden;
  cursor: default;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

/* Animated left-edge colour stripe */
.spec-card::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: var(--color-medical-blue);
  border-radius: 4px 0 0 4px;
  transform: scaleY(0);
  transform-origin: bottom center;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.spec-card:hover {
  transform: translateX(4px);
  box-shadow: 0 4px 18px rgba(21, 101, 192, 0.13);
  border-color: #c2dcfa;
  background: #fafcff;
}
.spec-card:hover::before { transform: scaleY(1); }

/* Icon bubble */
.spec-card-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 10px;
  background: rgba(21, 101, 192, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-medical-blue);
  font-size: 17px;
  transition: background 0.25s ease, color 0.25s ease, transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  z-index: 1;
}
.spec-card-icon svg {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
}
.spec-card:hover .spec-card-icon {
  background: var(--color-medical-blue);
  color: #fff;
  transform: rotate(8deg) scale(1.1);
}

/* Colour cycle — teal accent on 2nd column */
.spec-card:nth-child(3n+2) .spec-card-icon { background: rgba(0, 172, 193, 0.1); color: var(--color-accent); }
.spec-card:nth-child(3n+2)::before          { background: var(--color-accent); }
.spec-card:nth-child(3n+2):hover .spec-card-icon { background: var(--color-accent); color: #fff; }
.spec-card:nth-child(3n+2):hover { box-shadow: 0 4px 18px rgba(0, 172, 193, 0.15); border-color: #b2ebf2; }

/* Colour cycle — navy on 3rd column */
.spec-card:nth-child(3n+3) .spec-card-icon { background: rgba(10, 35, 66, 0.07); color: var(--color-navy); }
.spec-card:nth-child(3n+3)::before          { background: var(--color-navy); }
.spec-card:nth-child(3n+3):hover .spec-card-icon { background: var(--color-navy); color: #fff; }
.spec-card:nth-child(3n+3):hover { box-shadow: 0 4px 18px rgba(10, 35, 66, 0.12); border-color: #c5d4e8; }

.spec-card h3 {
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--color-navy);
  line-height: 1.4;
  margin: 0;
  position: relative;
  z-index: 1;
}
.spec-card p {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  line-height: 1.6;
  margin: var(--sp-1) 0 0;
}

/* Accordion — kept for legacy; new Other-tab uses spec-grid */
.accordion { display: flex; flex-direction: column; gap: var(--sp-3); max-width: 820px; margin-inline: auto; }
.acc-item {
  border: 1px solid var(--color-border-light);
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--color-white);
}
.acc-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--sp-5) var(--sp-6);
  background: transparent;
  border: none;
  cursor: pointer;
  font-size: var(--text-md);
  font-weight: 700;
  color: var(--color-navy);
  text-align: left;
  transition: background 0.2s;
}
.acc-header span { display: flex; align-items: center; gap: var(--sp-3); }
.acc-header span i { color: var(--color-medical-blue); }
.acc-header:hover { background: var(--color-pale-blue); }
.acc-chevron { transition: transform 0.25s; color: var(--color-text-muted); font-size: 14px; }
.acc-header[aria-expanded="true"] .acc-chevron { transform: rotate(180deg); }
.acc-body { padding: 0 var(--sp-6) var(--sp-5); }
.acc-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-2) var(--sp-8);
  list-style: none;
  padding: 0;
  margin: 0;
}
.acc-list li {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--text-sm);
  color: var(--color-text-body);
  font-weight: 500;
}
.acc-list li i { color: var(--color-medical-blue); font-size: 13px; flex-shrink: 0; }

/* ======================================================
   CONDITIONS — Two Column with Pills
====================================================== */
.cond-section {
  padding-block: var(--sp-10);
  position: relative;
  background:
    linear-gradient(160deg, rgba(5,18,42,0.82) 0%, rgba(8,28,64,0.74) 100%),
    url('Content/Logo/Page Backgrounds/doctor 2.jpg') center 30% / cover no-repeat;
  isolation: isolate;
}
/* Section header text: white on dark background */
.cond-section .section-tag {
  color: rgba(255,255,255,0.75);
  border-color: rgba(255,255,255,0.20);
  background: rgba(255,255,255,0.10);
}
.cond-section .section-title  { color: #ffffff; }
.cond-section .section-subtitle { color: rgba(255,255,255,0.82); }
.cond-section .divider  { background: rgba(255,255,255,0.22); }
.cond-section #cond-heading { color: #ffffff; }
.cond-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-8);
  align-items: stretch;
}
/* White card columns */
.cond-col {
  background: var(--color-white);
  border: 1px solid var(--color-border-light);
  border-radius: var(--r-2xl);
  padding: var(--sp-8);
  display: flex;
  flex-direction: column;
  min-height: 420px;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
}
.cond-col:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(10, 35, 66, 0.15);
}
.cond-col-title {
  font-size: var(--text-lg);
  font-weight: 800;
  color: var(--color-navy);
  margin-bottom: var(--sp-6);
  padding-bottom: var(--sp-4);
  border-bottom: 2px solid var(--color-border-light);
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  flex-shrink: 0;
}
.cond-col-title i { color: var(--color-medical-blue); }

/* Spine pills — keep grid layout inherited from .cond-pills */
.cond-col > .cond-pills {
  align-content: start;
}

/* Multispecialty container fills remaining height */
#multi-conditions-container {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
}

/* Uniform pill chip */
.cond-pills {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-2);
}
.cond-pill {
  display: flex;
  width: 100%;
  align-items: center;
  gap: 7px;
  min-height: 36px;
  background: var(--color-pale-blue);
  border: 1px solid var(--color-border-light);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text-dark);
  transition: background 0.18s, border-color 0.18s, transform 0.18s, box-shadow 0.18s;
  white-space: normal;
  word-break: break-word;
}
.cond-pill:hover {
  background: var(--color-light-blue);
  border-color: #b3d9f8;
  transform: translateX(4px);
  box-shadow: var(--shadow-sm);
}
.pill-check { width: 22px; height: 22px; flex-shrink: 0; }

/* ── Spine condition pill animated icons ── */
.sp-pill-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}
.sp-pill-icon svg {
  width: 100%;
  height: 100%;
  overflow: visible;
  fill: none;
  stroke: var(--sp-clr, #1565c0);
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.sp-pill-icon .sp-pulse    { animation: sp-pulse    1.8s ease-in-out infinite; transform-origin: center; }
.sp-pill-icon .sp-float    { animation: sp-float    2.4s ease-in-out infinite; }
.sp-pill-icon .sp-flow     { stroke-dasharray: 30 15; animation: sp-flow  1.4s linear infinite; }
.sp-pill-icon .sp-draw     { stroke-dasharray: 16 8;  animation: sp-dash  2.2s linear infinite; }
.sp-pill-icon .sp-shake    { animation: sp-shake    2.6s ease-in-out infinite; transform-origin: center; }
.sp-pill-icon .sp-tilt     { animation: sp-tilt     2.8s ease-in-out infinite; transform-origin: center; }
.sp-pill-icon .sp-blink    { animation: sp-blink    1.7s ease-in-out infinite; }
.sp-pill-icon .sp-rise     { animation: sp-rise     2s   ease-in-out infinite; }
.sp-pill-icon .sp-compress { animation: sp-compress 2.2s ease-in-out infinite; transform-origin: center; }
.sp-pill-icon .sp-orbit    { animation: sp-orbit    3s   linear     infinite; transform-origin: 32px 31px; }
.sp-pill-icon .sp-glow     { filter: drop-shadow(0 0 3px var(--sp-clr, #1565c0)); }
@keyframes sp-pulse    { 0%,100%{ transform:scale(1);          opacity:1;  } 50%{ transform:scale(1.08); opacity:.7; } }
@keyframes sp-float    { 0%,100%{ transform:translateY(0);     } 50%{ transform:translateY(-2px); } }
@keyframes sp-flow     { from{ stroke-dashoffset:45; } to{ stroke-dashoffset:0; } }
@keyframes sp-dash     { from{ stroke-dashoffset:48; } to{ stroke-dashoffset:0; } }
@keyframes sp-shake    { 0%,100%{ transform:rotate(0);         } 20%{ transform:rotate(-2deg); } 40%{ transform:rotate(2deg); } 60%{ transform:rotate(-1deg); } 80%{ transform:rotate(1deg); } }
@keyframes sp-tilt     { 0%,100%{ transform:rotate(0);         } 50%{ transform:rotate(8deg); } }
@keyframes sp-blink    { 0%,100%{ opacity:.25; } 50%{ opacity:1; } }
@keyframes sp-rise     { 0%,100%{ transform:translateY(2px);   opacity:.65; } 50%{ transform:translateY(-2px); opacity:1; } }
@keyframes sp-compress { 0%,100%{ transform:scaleX(1);         } 50%{ transform:scaleX(.82); } }
@keyframes sp-orbit    { from{ transform:rotate(0deg); } to{ transform:rotate(360deg); } }

/* ======================================================
   MULTISPECIALTY — Horizontal sub-tab bar
====================================================== */
.cond-sub-tabbar {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
  margin-bottom: var(--sp-5);
  padding-bottom: var(--sp-3);
  border-bottom: 2px solid var(--color-border-light);
  flex-shrink: 0;
}
.cond-sub-tab {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: var(--sp-2) var(--sp-3);
  border: 1.5px solid transparent;
  border-radius: 999px;
  background: transparent;
  font-family: inherit;
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--color-text-muted);
  cursor: pointer;
  white-space: nowrap;
  transition: color 0.18s, background 0.18s, border-color 0.18s, box-shadow 0.18s;
}
.cond-sub-tab:hover {
  color: var(--color-navy);
  background: var(--color-pale-blue);
  border-color: var(--color-border-light);
}
.cond-sub-tab.active {
  color: var(--color-accent);
  background: #e0f7fa;
  border-color: #b2ebf2;
  box-shadow: 0 2px 6px rgba(0, 172, 193, 0.12);
}
.cond-sub-tab-icon {
  width: 24px;
  height: 24px;
  min-width: 24px;
  border-radius: 50%;
  background: rgba(0, 172, 193, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: var(--color-accent);
  transition: background 0.18s, color 0.18s, transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.cond-sub-tab.active .cond-sub-tab-icon {
  background: var(--color-accent);
  color: #fff;
  transform: scale(1.15);
}
.cond-sub-tab:hover:not(.active) .cond-sub-tab-icon { transform: scale(1.08); }

/* Panel fade */
/* Intro description for specialty panels */
.cond-panel-intro {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: var(--sp-4);
  padding-bottom: var(--sp-4);
  border-bottom: 1px solid var(--color-border-light);
}

.cond-sub-panel { flex: 1; }
.cond-sub-panel--exit  { opacity: 0; pointer-events: none; transition: opacity 0.15s; }
.cond-sub-panel--enter { animation: condPanelIn 0.28s ease forwards; }
@keyframes condPanelIn {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}

.cond-specialty-group { margin-bottom: var(--sp-5); }
.cond-specialty-group:last-child { margin-bottom: 0; }
.cond-specialty-label {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: var(--sp-3);
  padding-bottom: var(--sp-2);
  border-bottom: 1px dashed var(--color-border-light);
}

/* Responsive */
@media (max-width: 1024px) {
  .spec-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .spec-grid { grid-template-columns: 1fr; }
  .acc-list { grid-template-columns: 1fr; }
  .cond-two-col { grid-template-columns: 1fr; }
  .cond-col { padding: var(--sp-5); }
  .spec-tab-btn { padding: 0.45rem 1.1rem; font-size: var(--text-xs); }
}

.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); }

/* Branch desc paragraph */
.branch-desc {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.65;
  margin-top: var(--sp-4);
  padding-top: var(--sp-4);
  border-top: 1px solid var(--color-border-light);
}
/* Spine centre badge variant */
.branch-badge--spine {
  background: var(--color-accent) !important;
}

/* ======================================================
   MEDICAL PANEL / TEAM SECTION
====================================================== */
.team-section { background: var(--color-white); }

/* Leadership row — 3 featured cards */
.team-leadership {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-5);
  margin-bottom: var(--sp-8);
}

/* Clinical team */
.team-clinical-label {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: var(--sp-4);
  padding-bottom: var(--sp-3);
  border-bottom: 1px solid var(--color-border-light);
}
.team-clinical-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-4);
}

/* Base card */
.team-card {
  background: var(--color-white);
  border: 1px solid var(--color-border-light);
  border-radius: var(--r-xl);
  padding: var(--sp-5);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--sp-3);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}
.team-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(21, 101, 192, 0.12);
  border-color: #c2dcfa;
}

/* Featured (leadership) card extras */
.team-card--featured {
  background: linear-gradient(160deg, #f0f6ff 0%, var(--color-white) 100%);
  border-color: #d0e5fc;
  padding: var(--sp-6);
}
.team-card--featured .team-card-icon {
  width: 64px;
  height: 64px;
  font-size: 22px;
}

/* Icon circle */
.team-card-icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  border-radius: 50%;
  background: rgba(21, 101, 192, 0.10);
  color: var(--color-medical-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  transition: background 0.22s ease, transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.team-card:hover .team-card-icon { background: rgba(21, 101, 192, 0.17); transform: scale(1.08); }

/* Management icon: navy instead of blue */
.team-card-icon--mgmt {
  background: rgba(10, 35, 66, 0.10);
  color: var(--color-navy);
}
.team-card:hover .team-card-icon--mgmt { background: rgba(10, 35, 66, 0.17); }

.team-card-body { display: flex; flex-direction: column; align-items: center; gap: var(--sp-1); }
.team-card-name {
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--color-navy);
  margin: 0;
  line-height: 1.3;
}
.team-card--featured .team-card-name { font-size: var(--text-lg); }

.team-card-designation {
  font-size: var(--text-sm);
  color: var(--color-text-body);
  margin: 0;
  line-height: 1.45;
}
.team-card-dept {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--color-medical-blue);
  background: var(--color-light-blue);
  padding: 3px 10px;
  border-radius: var(--r-full);
  margin-top: var(--sp-1);
}

/* Responsive */
@media (max-width: 1024px) {
  .team-clinical-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .team-leadership { grid-template-columns: 1fr; }
  .team-clinical-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .team-clinical-grid { grid-template-columns: 1fr; }
}

/* ---- 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;
}

/* ======================================================
   EVENTS & CONFERENCES SECTION
====================================================== */
.events-section {
  position: relative;
  background:
    linear-gradient(160deg, rgba(5,18,42,0.78) 0%, rgba(8,28,64,0.72) 100%),
    url('Content/Logo/Page Backgrounds/background3.jpg') center center / cover no-repeat;
}
.events-section .section-tag  { background: rgba(255,255,255,0.12); color: #fff; border-color: rgba(255,255,255,0.2); }
.events-section .section-title   { color: #fff; }
.events-section .section-subtitle { color: rgba(255,255,255,0.78); }
.events-section .divider       { background: rgba(255,255,255,0.20); }

/* Slider wrapper */
.events-slider-wrap {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-2xl);
  box-shadow: 0 16px 48px rgba(0,0,0,0.35);
}
.events-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}
.events-slide {
  flex: 0 0 100%;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #06111f;
  display: flex;
  align-items: center;
  justify-content: center;
}
.events-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  transition: transform 0.4s ease;
}
.events-slide img:hover { transform: scale(1.02); }

/* Nav arrows */
.events-arrow {
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  z-index: 2;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.35);
  background: rgba(30,58,95,0.80);
  backdrop-filter: blur(8px);
  color: rgba(255,255,255,0.9);
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s, scale 0.2s;
  box-shadow: 0 4px 20px rgba(0,0,0,0.35);
}
.events-arrow:hover  { background: rgba(21,101,192,0.85); border-color: #fff; scale: 1.08; }
.events-arrow--prev  { left: var(--sp-4); }
.events-arrow--next  { right: var(--sp-4); }

/* Dots */
.events-dots {
  position: absolute;
  bottom: var(--sp-4);
  left: 50%;
  translate: -50% 0;
  display: flex;
  gap: 6px;
  z-index: 2;
}
.events-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.45);
  border: none;
  cursor: pointer;
  transition: background 0.22s, width 0.22s;
  padding: 0;
}
.events-dot.active {
  background: #fff;
  width: 20px;
  border-radius: 4px;
}

@media (max-width: 640px) {
  .events-arrow { width: 36px; height: 36px; font-size: 13px; }
  .events-slide  { aspect-ratio: 4 / 3; }
}

/* ---- 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;
  align-items: start;
}

.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); }

/* ── NABH Accreditation Badge (circular emblem) ── */
.nabh-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 2px dashed var(--color-nabh-gold);
  padding: 7px;
  flex-shrink: 0;
  box-sizing: border-box;
  background: #0D2550;
  box-shadow: 0 0 0 10px #0D2550;
}
.nabh-badge__ring {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid var(--color-nabh-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
  box-sizing: border-box;
}
.nabh-badge__inner {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: linear-gradient(160deg, #1153a6 0%, #1976d2 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1px;
}
.nabh-badge__star {
  font-size: 13px;
  color: var(--color-nabh-gold);
  margin-bottom: 1px;
}
.nabh-badge__title {
  font-size: 22px;
  font-weight: 900;
  color: var(--color-nabh-gold);
  line-height: 1;
  letter-spacing: 0.05em;
}
.nabh-badge__sub {
  font-size: 7.5px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  line-height: 1.5;
}
.nabh-badge__check {
  font-size: 12px;
  color: var(--color-nabh-gold);
  margin-top: 2px;
}
/* size modifiers */
.nabh-badge--sm {
  width: 90px;
  height: 90px;
}
.nabh-badge--sm .nabh-badge__title { font-size: 17px; }
.nabh-badge--sm .nabh-badge__sub   { font-size: 6px; letter-spacing: 0.12em; }
.nabh-badge--sm .nabh-badge__star  { font-size: 10px; }
.nabh-badge--sm .nabh-badge__check { font-size: 10px; }
.nabh-badge--lg {
  width: 160px;
  height: 160px;
}
.nabh-badge--lg .nabh-badge__title { font-size: 30px; }
.nabh-badge--lg .nabh-badge__sub   { font-size: 10px; }
.nabh-badge--lg .nabh-badge__star  { font-size: 17px; }
.nabh-badge--lg .nabh-badge__check { font-size: 16px; }

/* floating badge on hero image */
.hs-slide1-nabh {
  position: absolute;
  bottom: 2rem;
  right: 0.5rem;
  filter: drop-shadow(0 4px 16px rgba(0, 0, 0, 0.5));
  z-index: 2;
}

.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(4, 1fr); }
  .stats-bar-grid .stat-cell:nth-child(4)::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 { gap: var(--sp-2); }
  .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,
  .stats-bar-grid .stat-cell:nth-child(6)::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); }
}


/* ============================================================
   HERO SWIPER SLIDER
   ============================================================ */

.hero-slider-section {
  position: relative;
  overflow: hidden;
}

/* All slides share base layout */
.hs-slide {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hs-slide .container {
  position: relative;
  z-index: 1;
  width: 100%;
}

/* ── Slide backgrounds ── */
.hs-slide__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hs-slide--brand .hs-slide__bg {
  background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-slate) 55%, #1a3a6b 100%);
}
.hs-slide--brand .hs-slide__bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    url('Content/Logo/Page Backgrounds/background4.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.22;
  mix-blend-mode: luminosity;
}
.hs-slide--brand .hs-slide__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 70% 50%, rgba(0,172,193,0.10) 0%, transparent 60%),
    linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.22) 100%),
    linear-gradient(120deg, rgba(10,35,66,0.55) 0%, rgba(15,45,85,0.45) 100%);
}

.hs-slide--kpi .hs-slide__bg {
  background: linear-gradient(135deg, #0c2a5a 0%, var(--color-navy) 50%, var(--color-slate) 100%);
}
.hs-slide--kpi .hs-slide__bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 30% 60%, rgba(21,101,192,0.20) 0%, transparent 55%);
}

/* Atmospheric right-side surgical photo for KPI slide */
.hs-kpi-photo {
  position: absolute;
  right: 0;
  top: 0;
  width: 42%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}
.hs-kpi-photo::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, #0c2a5a 0%, rgba(12,42,90,0.40) 40%, transparent 100%);
  z-index: 1;
}
.hs-kpi-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.65;
  display: block;
}

.hs-slide--trust .hs-slide__bg {
  background: linear-gradient(135deg, #071e3d 0%, var(--color-navy) 60%, #0d2850 100%);
}
.hs-slide--trust .hs-slide__bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 60% 40%, rgba(0,172,193,0.10) 0%, transparent 60%),
                    radial-gradient(circle at 20% 80%, rgba(249,168,37,0.06) 0%, transparent 40%);
}

/* ── Slide inner layouts ── */
.hs-slide__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  padding: var(--sp-20) 0 var(--sp-16);
  min-height: 100vh;
  min-height: 100dvh;
}

.hs-slide__inner--kpi {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 0;
  grid-template-columns: unset;
  padding: var(--sp-20) 0 var(--sp-16);
  min-height: 100vh;
  min-height: 100dvh;
}

.hs-slide__inner--trust {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 0;
  grid-template-columns: unset;
  padding: var(--sp-20) 0 var(--sp-16);
  min-height: 100vh;
  min-height: 100dvh;
  position: relative;
  z-index: 1;
}

/* ── Slide 1: Brand Values ── */
.hs-slide1-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
}

.hs-badge {
  display: inline-flex;
  align-items: center;
  gap: 0;
  border-radius: var(--r-lg);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.20);
  color: rgba(255,255,255,0.92);
  backdrop-filter: blur(6px);
  overflow: hidden;
  transition: background var(--t-fast), border-color var(--t-fast);
}
.hs-badge__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: transparent;
  border-right: 1px solid rgba(255,255,255,0.14);
  flex-shrink: 0;
  overflow: hidden;
}

.hs-badge__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  mix-blend-mode: screen;
  display: block;
}
.hs-badge__text {
  padding: 0 14px;
}
.hs-badge:hover {
  background: rgba(255,255,255,0.13);
  border-color: rgba(0,172,193,0.50);
}

/* ── Slide 1 tagline (replaces old h1 title) ── */
.hs-slide1-tagline {
  font-size: clamp(1rem, 2vw, 1.35rem);
  font-weight: 300;
  color: rgba(255,255,255,0.78);
  line-height: 1.35;
  letter-spacing: 0.01em;
  margin-top: 0.5rem;
  margin-bottom: 1.5rem;
}
.hs-slide1-tagline em {
  font-style: italic;
  font-weight: 400;
  color: var(--color-accent);
}

/* ── Feature list (Global Standards, Clinical Excellence, etc.) ── */
.hs-feat-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-bottom: 1.5rem;
}
.hs-feat-item {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}
.hs-feat-icon {
  width: 58px;
  height: 58px;
  min-width: 58px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  backdrop-filter: blur(6px);
  flex-shrink: 0;
}
.hs-feat-icon img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  mix-blend-mode: screen;
}
.hs-feat-label {
  font-size: clamp(1.5rem, 3vw, 2.15rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  letter-spacing: -0.02em;
  text-shadow: 0 1px 6px rgba(0,0,0,0.35);
}

/* ── Animated SVG icon container (hero feat list) ── */
.hs-feat-icon--animated {
  background: rgba(255, 255, 255, 0.30) !important;
  border: 1px solid rgba(255, 255, 255, 0.22) !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  width: 90px !important;
  height: 90px !important;
  min-width: 90px !important;
}
.hs-feat-icon--animated svg {
  width: 87px;
  height: 87px;
  filter: brightness(1.5) saturate(1.4) drop-shadow(0 0 6px rgba(255,255,255,0.25));
}

/* ── SVG animation keyframes (tag_line_icons) ── */
@keyframes orbit  { 0%   { transform: rotate(0deg)   translateX(18px) rotate(0deg); }
                    100% { transform: rotate(360deg)  translateX(18px) rotate(-360deg); } }
@keyframes orbit2 { 0%   { transform: rotate(120deg) translateX(18px) rotate(-120deg); }
                    100% { transform: rotate(480deg)  translateX(18px) rotate(-480deg); } }
@keyframes orbit3 { 0%   { transform: rotate(240deg) translateX(18px) rotate(-240deg); }
                    100% { transform: rotate(600deg)  translateX(18px) rotate(-600deg); } }
@keyframes globe-spin   { 0%   { stroke-dashoffset: 0;  } 100% { stroke-dashoffset: -60; } }
@keyframes shake-hand   { 0%,100% { transform: translateY(0); } 40% { transform: translateY(-3px); } 60% { transform: translateY(-1px); } }
@keyframes star-pop     { 0%,100% { transform: scale(1); } 50% { transform: scale(1.15); } }
@keyframes ribbon-sway  { 0%,100% { transform: rotate(-4deg); } 50% { transform: rotate(4deg); } }
@keyframes medal-glow   { 0%,100% { r: 18; } 50% { r: 20; } }
@keyframes ripple       { 0%   { r: 8;  opacity: .6; } 100% { r: 20; opacity: 0; } }
@keyframes heart-pulse  { 0%,100% { transform: scale(1); } 30% { transform: scale(1.2); } 60% { transform: scale(1.05); } }

.orbit-dot1 { transform-origin: 40px 38px; animation: orbit  3s linear infinite; }
.orbit-dot2 { transform-origin: 40px 38px; animation: orbit2 3s linear infinite; }
.orbit-dot3 { transform-origin: 40px 38px; animation: orbit3 3s linear infinite; }
.handshake  { transform-origin: 40px 44px; animation: shake-hand 2s ease-in-out infinite; }
.globe-eq   { animation: globe-spin 4s linear infinite; }
.medal-ring { animation: medal-glow 2s ease-in-out infinite; }
.star-shape { transform-origin: 40px 34px; animation: star-pop 1.8s ease-in-out infinite; }
.ribbon-l   { transform-origin: 34px 50px; animation: ribbon-sway 2s ease-in-out infinite; }
.ribbon-r   { transform-origin: 46px 50px; animation: ribbon-sway 2s ease-in-out infinite 0.3s; }
.heart-anim { transform-origin: 40px 36px; animation: heart-pulse 1.6s ease-in-out infinite; }
.ripple1    { animation: ripple 2s ease-out infinite; }
.ripple2    { animation: ripple 2s ease-out 0.7s infinite; }

.hs-accent { color: var(--color-accent); }

.hs-slide1-sub {
  font-size: 1rem;
  font-weight: 700;
  color: rgba(255,255,255,0.78);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 1.1rem;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 100px;
  width: fit-content;
}

.hs-slide1-desc {
  color: rgba(255,255,255,0.82);
  font-size: var(--text-md);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.hs-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

/* Override slide 1 grid – reduce height and centre both columns */
.hs-slide--brand .hs-slide__inner {
  align-items: center;
  min-height: 76vh;
  min-height: 76dvh;
  padding: 3.5rem 0 3rem;
}

/* Slide 1 decorative circle */
.hs-slide1-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

/* Photo replacing the old decorative circle */
.hs-slide1-photo {
  width: 100%;
  max-width: 440px;
  height: 530px;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--r-2xl);
  box-shadow: 0 24px 64px rgba(0,0,0,0.50);
  display: block;
}

/* ── Slide 2: KPIs ── */
.hs-kpi-header {
  margin-bottom: 3rem;
  text-align: center;
}

.hs-kpi-tag {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent);
  background: rgba(0,172,193,0.15);
  border: 1px solid rgba(0,172,193,0.30);
  padding: 5px 14px;
  border-radius: var(--r-full);
  margin-bottom: var(--sp-3);
}

.hs-kpi-title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  color: var(--color-white);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.hs-kpi-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  width: 100%;
  margin-bottom: 2.75rem;
}

.hs-kpi-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: var(--r-xl);
  padding: 2.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  backdrop-filter: blur(8px);
  transition: transform var(--t-base), background var(--t-base), box-shadow var(--t-base);
}
.hs-kpi-card:hover {
  background: rgba(255,255,255,0.12);
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.25);
}

.hs-kpi-icon {
  width: 100px;
  height: 100px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}
.hs-kpi-icon--1 { background: #e8f4fd; }
.hs-kpi-icon--2 { background: #fde8f0; }
.hs-kpi-icon--3 { background: #e8fdf4; }
.hs-kpi-icon--4 { background: #fef8e1; }

/* ── KPI icon animations ── */
@keyframes scalpel-move  { 0%,100%{ transform:translateY(0) }    50%{ transform:translateY(4px) } }
@keyframes scissors-open { 0%,100%{ transform:rotate(0deg) }     50%{ transform:rotate(14deg) } }
@keyframes plus-pulse    { 0%,100%{ transform:scale(1) }         50%{ transform:scale(1.4) } }
@keyframes heart-beat    { 0%,100%{ transform:scale(1) }         30%{ transform:scale(1.28) } 60%{ transform:scale(1.08) } }
@keyframes hand-lift     { 0%,100%{ transform:translateY(0) }    50%{ transform:translateY(-5px) } }
@keyframes sparkle       { 0%,100%{ opacity:1; transform:scale(1) }  50%{ opacity:.3; transform:scale(.5) } }
@keyframes line-grow     { 0%{ stroke-dashoffset:100 }           100%{ stroke-dashoffset:0 } }
@keyframes arrow-up      { 0%,100%{ transform:translate(0,0) }   50%{ transform:translate(3px,-5px) } }
@keyframes bar-rise      { 0%{ transform:scaleY(0) }             100%{ transform:scaleY(1) } }
@keyframes pin-drop      { 0%,100%{ transform:translateY(0) }    40%{ transform:translateY(-6px) } 70%{ transform:translateY(-2px) } }
@keyframes ripple-out    { 0%{ r:4; opacity:.8 }                 100%{ r:14; opacity:0 } }
@keyframes globe-turn    { 0%{ stroke-dashoffset:0 }             100%{ stroke-dashoffset:-60 } }

.scalpel-g  { transform-origin: 36px 36px; animation: scalpel-move  1.8s ease-in-out infinite; }
.scissors-g { transform-origin: 48px 38px; animation: scissors-open 1.8s ease-in-out infinite 0.2s; }
.plus-g     { transform-origin: 55px 18px; animation: plus-pulse    1.6s ease-in-out infinite; }
.heart-g    { transform-origin: 40px 26px; animation: heart-beat    1.5s ease-in-out infinite; }
.hand-g     { transform-origin: 40px 50px; animation: hand-lift     2s   ease-in-out infinite; }
.sp1        { animation: sparkle  1.8s ease-in-out infinite; }
.sp2        { animation: sparkle  1.8s ease-in-out 0.4s infinite; }
.sp3        { animation: sparkle  1.8s ease-in-out 0.8s infinite; }
.chart-path { stroke-dasharray: 100; animation: line-grow 2s ease-out infinite; }
.arrow-g    { transform-origin: 57px 21px; animation: arrow-up 2s ease-in-out infinite; }
.bar1       { transform-origin: 27px 54px; animation: bar-rise 2s ease-out infinite; }
.bar2       { transform-origin: 36px 54px; animation: bar-rise 2s ease-out 0.2s infinite; }
.bar3       { transform-origin: 45px 54px; animation: bar-rise 2s ease-out 0.4s infinite; }
.bar4       { transform-origin: 54px 54px; animation: bar-rise 2s ease-out 0.6s infinite; }
.pin1-g     { transform-origin: 28px 40px; animation: pin-drop  2s ease-in-out infinite; }
.pin2-g     { transform-origin: 52px 34px; animation: pin-drop  2s ease-in-out 0.5s infinite; }
.pin3-g     { transform-origin: 40px 54px; animation: pin-drop  2s ease-in-out 1s infinite; }
.rp1        { animation: ripple-out 2s ease-out infinite; }
.rp2        { animation: ripple-out 2s ease-out 0.5s infinite; }
.rp3        { animation: ripple-out 2s ease-out 1s infinite; }
.globe-g    { animation: globe-turn 4s linear infinite; }

.hs-kpi-value {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 800;
  color: var(--color-white);
  line-height: 1;
  letter-spacing: -0.03em;
}

.hs-kpi-label {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.60);
  font-weight: 500;
  text-align: center;
  line-height: 1.4;
}

.hs-kpi-cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

/* ── Slide 3: Trust & Proof ── */
.hs-trust-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--color-nabh-gold);
  margin-bottom: 1.25rem;
}
.hs-trust-eyebrow i { font-size: 14px; }

.hs-trust-title {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 800;
  color: var(--color-white);
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 2rem;
}

.hs-trust-years {
  display: block;
  color: var(--color-accent);
}

.hs-review-block {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r-lg);
  padding: 1.25rem 1.5rem;
  margin-bottom: 1.75rem;
  backdrop-filter: blur(4px);
}

.hs-review-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 0.6rem;
}
.hs-review-stars i { color: #f9c440; font-size: 15px; }

.hs-review-text {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.78);
  line-height: 1.75;
}

/* Orange/peach accent for review count — makes it stand out */
.hs-review-count {
  font-size: 1.55rem;
  font-weight: 800;
  color: #ff8c4b;
  letter-spacing: -0.02em;
  display: inline-block;
  vertical-align: middle;
}

.hs-trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 0.5rem;
}

.hs-trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 16px;
  border-radius: var(--r-full);
  font-size: var(--text-xs);
  font-weight: 600;
  background: rgba(0,172,193,0.12);
  border: 1px solid rgba(0,172,193,0.28);
  color: rgba(255,255,255,0.85);
  transition: background var(--t-fast);
}
.hs-trust-badge i { color: var(--color-accent); font-size: 12px; }
.hs-trust-badge:hover { background: rgba(0,172,193,0.22); }

.hs-trust-cta { margin-top: 1.75rem; display: inline-flex; }

/* Trust visual (right column) */
/* Centered background photo for Trust slide (same treatment as KPI slide) */
.hs-trust-photo {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}
.hs-trust-photo::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, #071e3d 0%, rgba(7,30,61,0.50) 35%, rgba(7,30,61,0.50) 65%, #071e3d 100%),
    linear-gradient(to bottom, rgba(7,30,61,0.35) 0%, transparent 25%, transparent 75%, rgba(7,30,61,0.45) 100%);
  z-index: 1;
}
.hs-trust-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  opacity: 0.60;
  display: block;
}

/* Constrain trust content width so it reads cleanly over the background */
.hs-trust-content {
  max-width: 600px;
  position: relative;
  z-index: 1;
}

.hs-trust-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.hs-trust-img-ph {
  display: none;
}

.hs-trust-img-badge {
  display: none;
}

/* ── Swiper custom controls ── */
.hs-nav-btn {
  color: rgba(255,255,255,0.75);
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.20);
  width: 48px !important;
  height: 48px !important;
  border-radius: 50% !important;
  backdrop-filter: blur(6px);
  transition: background var(--t-base), color var(--t-base);
}
.hs-nav-btn::after {
  font-size: 14px !important;
  font-weight: 700;
}
.hs-nav-btn:hover {
  background: rgba(255,255,255,0.22);
  color: var(--color-white);
}

/* Elongated active bullet */
.hs-pagination {
  bottom: 1.5rem !important;
}
.hs-pagination .swiper-pagination-bullet {
  background: rgba(255,255,255,0.40);
  opacity: 1;
  width: 8px;
  height: 8px;
  border-radius: 4px;
  transition: all var(--t-base);
}
.hs-pagination .swiper-pagination-bullet-active {
  background: var(--color-white);
  width: 28px;
  border-radius: 4px;
}


/* ============================================================
   MISSION · VISION · VALUES
   ============================================================ */

.mvv-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 480px;
  background: #071e3d;
  overflow: hidden;
}

/* ── Left: founders portrait ── */
.mvv-photo-col {
  position: relative;
  overflow: hidden;
}
.mvv-photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 65% 12%;
  display: block;
  filter: brightness(0.82);
}
/* Right-edge & bottom fade so photo dissolves into the dark cards column */
.mvv-photo-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right,  rgba(7,30,61,0.00) 50%, rgba(7,30,61,0.96) 100%),
    linear-gradient(to bottom, rgba(7,30,61,0.20) 0%,  transparent 20%, transparent 65%, rgba(7,30,61,0.55) 100%);
}
.mvv-photo-caption {
  position: absolute;
  bottom: 2.2rem;
  left: 2rem;
  right: 3rem;
  z-index: 2;
}
.mvv-photo-caption .section-tag {
  display: inline-block;
  margin-bottom: 0.55rem;
}
.mvv-photo-title {
  font-size: clamp(1.4rem, 2.2vw, 2rem);
  font-weight: 800;
  color: var(--color-white);
  line-height: 1.15;
  letter-spacing: -0.022em;
  margin: 0 0 0.6rem;
  text-shadow: 0 2px 16px rgba(0,0,0,0.60);
}
.mvv-photo-subtitle {
  font-size: 0.925rem;
  color: rgba(255,255,255,0.76);
  line-height: 1.70;
  max-width: 280px;
  text-shadow: 0 1px 8px rgba(0,0,0,0.55);
}

/* Founders quote block inside MVV photo column */
.mvv-founder-quote {
  margin: 1.1rem 0 0;
  padding: 1rem 1rem 0.9rem 1rem;
  max-width: 320px;
  background: rgba(7, 20, 40, 0.62);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.10);
}
.mvv-founder-quote__text {
  font-size: 0.95rem;
  font-style: italic;
  color: rgba(255,255,255,0.90);
  line-height: 1.75;
  text-shadow: 0 1px 8px rgba(0,0,0,0.6);
  margin: 0 0 0.8rem;
  position: relative;
  padding-left: 0.85rem;
  border-left: 2px solid var(--color-accent);
}
.mvv-founder-quote__attr {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}
.mvv-founder-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 6px;
  flex-shrink: 0;
}
.logo-icon--xs {
  width: 28px !important;
  height: 28px !important;
  font-size: 13px !important;
  border-radius: 6px !important;
}
.mvv-founder-quote__name {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  font-style: normal;
  color: rgba(255,255,255,0.95);
  text-shadow: 0 1px 6px rgba(0,0,0,0.5);
  line-height: 1.3;
}
.mvv-founder-quote__role {
  display: block;
  font-size: 0.75rem;
  color: var(--color-accent);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 500;
}

/* ── Right: cards column ── */
.mvv-cards-col {
  display: flex;
  flex-direction: column;
  background: #071e3d;
  padding: 2rem 1.75rem;
  gap: 0.85rem;
  justify-content: center;
}

/* Horizontal strip card: image left | content right */
.mvv-card {
  display: flex;
  flex-direction: row;
  overflow: hidden;
  border-radius: 14px;
  background: rgba(255,255,255,0.055);
  border: 1px solid rgba(255,255,255,0.10);
  cursor: default;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
.mvv-card:hover {
  background: rgba(255,255,255,0.09);
  box-shadow: 0 8px 28px rgba(0,0,0,0.30);
}

/* Left image panel — contained, not filling entire card */
.mvv-card__img-side {
  width: 120px;
  flex-shrink: 0;
  overflow: hidden;
  position: relative;
}
.mvv-card__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  filter: brightness(0.82) saturate(0.80);
  transition: transform 0.65s ease, filter 0.5s ease;
}
.mvv-card:hover .mvv-card__bg-img {
  transform: scale(1.10);
  filter: brightness(0.90) saturate(0.90);
}
/* Soft right-edge fade so image blends into card background */
.mvv-card__img-side::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 55%, rgba(255,255,255,0.03) 100%);
  pointer-events: none;
}

/* Right content area */
.mvv-card__inner {
  flex: 1;
  padding: 1rem 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  border-left: none;
}

/* Title row: badge + label inline */
.mvv-card__hd {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

/* FA icon badge */
.mvv-card__badge {
  width: 40px;
  height: 40px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.30);
  transition: transform 0.3s ease;
}
.mvv-card__badge svg {
  width: 26px;
  height: 26px;
}
.mvv-card:hover .mvv-card__badge { transform: scale(1.08); }
.mvv-card--vision  .mvv-card__badge { background: #2979d4; }
.mvv-card--mission .mvv-card__badge { background: #1aab8a; }
.mvv-card--values  .mvv-card__badge { background: #f57c2a; }

/* MVV animated SVG icon classes */
@keyframes mvvEyeScan     { 0%,100%{ transform:translateX(0) }    30%{ transform:translateX(6px) }  70%{ transform:translateX(-6px) } }
@keyframes mvvPupilPulse  { 0%,100%{ r:4 }                        50%{ r:5.5 } }
@keyframes mvvRayRotate   { 0%{ transform:rotate(0deg) }          100%{ transform:rotate(360deg) } }
@keyframes mvvStarFlash   { 0%,100%{ opacity:1; transform:scale(1) }  50%{ opacity:.4; transform:scale(.7) } }
@keyframes mvvChSpin      { 0%{ transform:rotate(0deg) }          100%{ transform:rotate(360deg) } }
@keyframes mvvTgtPulse    { 0%,100%{ r:8; opacity:1 }             50%{ r:10; opacity:.5 } }
@keyframes mvvArrFly      { 0%,100%{ transform:translate(0,0) }   40%{ transform:translate(4px,-4px) } 80%{ transform:translate(0,0) } }
@keyframes mvvHeartBeat   { 0%,100%{ transform:scale(1) }         30%{ transform:scale(1.22) }  60%{ transform:scale(1.06) } }
@keyframes mvvStarOrbit   { 0%{ transform:rotate(0deg) translateX(14px) rotate(0deg) }  100%{ transform:rotate(360deg) translateX(14px) rotate(-360deg) } }
@keyframes mvvShieldGlow  { 0%,100%{ opacity:.3 }                 50%{ opacity:.7 } }

.mvv-eye-iris  { animation: mvvEyeScan    3s ease-in-out infinite; }
.mvv-eye-pupil { animation: mvvPupilPulse 2s ease-in-out infinite; }
.mvv-rays      { transform-origin: 40px 36px; animation: mvvRayRotate  8s linear infinite; }
.mvv-ray-star  { animation: mvvStarFlash  2s ease-in-out infinite; }
.mvv-ch-ring   { transform-origin: 40px 40px; animation: mvvChSpin     6s linear infinite; }
.mvv-tgt-inner { animation: mvvTgtPulse   2s ease-in-out infinite; }
.mvv-arr       { transform-origin: 50px 30px; animation: mvvArrFly     2s ease-in-out infinite; }
.mvv-hrt       { transform-origin: 40px 34px; animation: mvvHeartBeat  1.8s ease-in-out infinite; }
.mvv-orb1      { transform-origin: 40px 36px; animation: mvvStarOrbit  3s linear infinite; }
.mvv-orb2      { transform-origin: 40px 36px; animation: mvvStarOrbit  3s linear infinite .75s; }
.mvv-orb3      { transform-origin: 40px 36px; animation: mvvStarOrbit  3s linear infinite 1.5s; }
.mvv-sh        { animation: mvvShieldGlow 2s ease-in-out infinite; }

.mvv-card__title {
  font-size: 0.975rem;
  font-weight: 800;
  color: var(--color-white);
  letter-spacing: 0.07em;
  text-transform: uppercase;
  margin: 0;
}

.mvv-card__body {
  font-size: 0.925rem;
  color: rgba(255,255,255,0.80);
  line-height: 1.72;
  margin: 0;
}

.mvv-card__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.28rem;
}
.mvv-card__list li {
  display: flex;
  align-items: flex-start;
  gap: 7px;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.80);
  line-height: 1.50;
}
.mvv-card__list li i {
  color: var(--color-accent);
  margin-top: 3px;
  flex-shrink: 0;
  font-size: 13px;
}

/* Values 2-col sub-grid */
.mvv-values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.32rem 0.6rem;
}
.mvv-value-item {
  display: flex;
  align-items: flex-start;
  gap: 6px;
}
.mvv-value-item > i {
  color: #f97316;
  font-size: 13px;
  margin-top: 3px;
  flex-shrink: 0;
}
.mvv-value-item > div {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.mvv-value-item strong {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--color-white);
  display: block;
}
.mvv-value-item span {
  font-size: 0.775rem;
  color: rgba(255,255,255,0.60);
  line-height: 1.35;
}

/* Left accent border per card type */
.mvv-card--vision  { border-left: 3px solid var(--color-sky-blue); }
.mvv-card--mission { border-left: 3px solid var(--color-accent); }
.mvv-card--values  { border-left: 3px solid #f97316; }


/* ============================================================
   RESPONSIVE — HERO SLIDER & DOCTOR IN FOCUS
   ============================================================ */

@media (max-width: 1024px) {
  /* Slide 2 KPI: 2-column grid */
  .hs-kpi-grid { grid-template-columns: repeat(2, 1fr); }

  /* Slide 1 & 3: hide visual column, full-width text */
  .hs-slide__inner {
    grid-template-columns: 1fr;
    padding: var(--sp-16) 0;
    min-height: unset;
    padding-bottom: var(--sp-20);
  }
  .hs-slide1-visual { display: none; }

  .hs-slide__inner--trust {
    padding: var(--sp-16) 0 var(--sp-20);
    min-height: unset;
  }

  .hs-slide__inner--kpi {
    padding: var(--sp-16) 0 var(--sp-20);
    min-height: unset;
  }

  /* MVV: stack photo above cards on tablet */
  .mvv-section { grid-template-columns: 1fr; }
  .mvv-photo-col { min-height: 520px; }
  .mvv-cards-col { padding: 1.5rem 1.25rem; }
  .mvv-card__img-side { width: 100px; }
  /* Remove horizontal fade — not needed when stacked vertically */
  .mvv-photo-overlay {
    background:
      linear-gradient(to bottom, rgba(7,30,61,0.10) 0%, transparent 20%, transparent 50%, rgba(7,30,61,0.75) 100%);
  }
  .mvv-founder-quote { max-width: 100%; }
}

@media (max-width: 768px) {
  .hs-slide { min-height: 100dvh; }
  .hs-kpi-grid { gap: 1rem; }
  .hs-kpi-card { padding: 1.5rem 1rem; }
  .hs-kpi-value { font-size: 1.75rem; }
  .hs-nav-btn { display: none !important; }
  .hs-slide1-title { font-size: 2.2rem; }
  .hs-slide1-tagline { font-size: 0.95rem; }
  .hs-feat-label { font-size: 1.3rem; }
  .hs-trust-title { font-size: 2.4rem; }
  .hs-cta-row { flex-direction: column; }
  .hs-cta-row .btn { width: 100%; justify-content: center; }

  /* MVV mobile */
  .mvv-photo-col { min-height: 480px; }
  .mvv-photo-caption { left: 1.25rem; right: 1.25rem; bottom: 1.5rem; }
  .mvv-photo-title { font-size: 1.5rem; }
  .mvv-founder-quote { max-width: 100%; padding: 0.85rem; }
  .mvv-founder-quote__text { font-size: 0.875rem; }
  .mvv-cards-col { padding: 1rem 0.85rem; gap: 0.65rem; }
  .mvv-card__img-side { width: 88px; }
  .mvv-values-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hs-kpi-grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
  .hs-slide1-badges { gap: 0.5rem; }
  .hs-badge { font-size: 10px; }
  .hs-badge__icon { width: 30px; height: 30px; }
  .hs-trust-title { font-size: 2rem; }
  .hs-review-count { font-size: 1.3rem; }
}

/* ======================================================
   OTHER SPECIALITIES — Horizontal tab bar + panel
====================================================== */
.spec-other-content {
  display: flex;
  flex-direction: column;
  gap: var(--sp-8);
}

/* Horizontal scrollable tab bar */
.spec-sub-tabbar {
  display: flex;
  gap: var(--sp-2);
  overflow-x: auto;
  padding-bottom: var(--sp-1);
  scrollbar-width: none;
  /* subtle underline track */
  border-bottom: 2px solid var(--color-border-light);
}
.spec-sub-tabbar::-webkit-scrollbar { display: none; }

/* Individual tab button */
.spec-sub-tab {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-3);
  padding: var(--sp-3) var(--sp-5);
  border: 1.5px solid transparent;
  border-radius: 999px;
  background: transparent;
  font-family: inherit;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text-muted);
  cursor: pointer;
  white-space: nowrap;
  margin-bottom: -2px;          /* sit on top of tabbar border */
  transition: color 0.2s, background 0.2s, border-color 0.2s, box-shadow 0.2s;
}
.spec-sub-tab:hover {
  color: var(--color-navy);
  background: var(--color-pale-blue);
  border-color: var(--color-border-light);
}
.spec-sub-tab.active {
  color: var(--color-medical-blue);
  background: #eef4fd;
  border-color: #c2dcfa;
  box-shadow: 0 2px 8px rgba(21, 101, 192, 0.12);
}

/* Circular icon badge on each tab */
.spec-sub-tab-icon {
  width: 30px;
  height: 30px;
  min-width: 30px;
  border-radius: 50%;
  background: rgba(21, 101, 192, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: var(--color-medical-blue);
  transition: background 0.2s, color 0.2s, transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.spec-sub-tab.active .spec-sub-tab-icon {
  background: var(--color-medical-blue);
  color: #fff;
  transform: scale(1.15);
}
.spec-sub-tab:hover:not(.active) .spec-sub-tab-icon { transform: scale(1.08); }

/* Teal and Navy colour variants for tabs */
.spec-sub-tab:nth-child(3n+2) .spec-sub-tab-icon    { background: rgba(0, 172, 193, 0.1); color: var(--color-accent); }
.spec-sub-tab:nth-child(3n+2).active .spec-sub-tab-icon { background: var(--color-accent); color: #fff; }
.spec-sub-tab:nth-child(3n+2).active { color: var(--color-accent); background: #e0f7fa; border-color: #b2ebf2; box-shadow: 0 2px 8px rgba(0,172,193,0.12); }

.spec-sub-tab:nth-child(3n+3) .spec-sub-tab-icon    { background: rgba(10, 35, 66, 0.07); color: var(--color-navy); }
.spec-sub-tab:nth-child(3n+3).active .spec-sub-tab-icon { background: var(--color-navy); color: #fff; }
.spec-sub-tab:nth-child(3n+3).active { color: var(--color-navy); background: #edf1f7; border-color: #c5d4e8; box-shadow: 0 2px 8px rgba(10,35,66,0.10); }

/* Panel intro line */
.spec-sub-panel-intro {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: var(--sp-5);
  padding-left: var(--sp-1);
}

/* Panel fade transition */
.spec-sub-panel { transition: opacity 0.18s ease; }
.spec-sub-panel--exit  { opacity: 0; pointer-events: none; }
.spec-sub-panel--enter { animation: panelFadeIn 0.28s ease forwards; }
@keyframes panelFadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* spec-group-icon (unused now but keeping for safety) */
.spec-group-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(21, 101, 192, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-medical-blue);
  font-size: 20px;
}

/* ======================================================
   CONDITION PILL — Interactive button variant
====================================================== */
.cond-pill--btn {
  cursor: pointer;
  border: 1px solid var(--color-border-light);
  background: var(--color-white);
  border-radius: 999px;
  font-family: inherit;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 14px;
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text-dark);
  transition: all 0.2s;
  text-align: left;
}
.cond-pill--btn:hover {
  background: var(--color-light-blue);
  border-color: #b3d9f8;
  transform: translateX(4px);
  box-shadow: var(--shadow-sm);
  color: var(--color-navy);
}
.cond-pill--btn:focus-visible {
  outline: 2px solid var(--color-medical-blue);
  outline-offset: 2px;
}

/* ======================================================
   CONDITION MODAL — native <dialog>
====================================================== */
.cond-modal-dialog {
  border: none;
  border-radius: var(--r-2xl);
  padding: 0;
  width: min(860px, 94vw);
  max-height: min(88vh, 860px);
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(10, 35, 66, 0.24), 0 4px 16px rgba(0, 0, 0, 0.08);
  /* Force true centering — browsers default to top of viewport */
  position: fixed;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  margin: 0;
}
.cond-modal-dialog::backdrop {
  background: rgba(10, 35, 66, 0.55);
  backdrop-filter: blur(4px);
}
.modal-wrapper {
  display: flex;
  flex-direction: column;
  max-height: min(88vh, 800px);
  background: var(--color-white);
}
.modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--sp-4);
  padding: var(--sp-6) var(--sp-8);
  border-bottom: 1px solid var(--color-border-light);
  position: sticky;
  top: 0;
  background: var(--color-white);
  z-index: 1;
}
.modal-title {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 800;
  color: var(--color-navy);
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin: 0;
  padding-left: var(--sp-4);
  border-left: 4px solid var(--color-medical-blue);
}
.modal-close-btn {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 2px solid var(--color-navy);
  background: var(--color-light-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--color-navy);
  font-size: 18px;
  transition: all 0.2s;
}
.modal-close-btn:hover {
  background: #fee2e2;
  color: #e53935;
  border-color: #e53935;
}
.modal-close-btn:focus-visible {
  outline: 2px solid var(--color-medical-blue);
  outline-offset: 2px;
}
.modal-body {
  padding: var(--sp-6) var(--sp-8) var(--sp-10);
  overflow-y: auto;
  overscroll-behavior: contain;
}
.modal-overview-row {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: var(--sp-6);
  padding-bottom: var(--sp-6);
  border-bottom: 1px solid var(--color-border-light);
}
.modal-illus {
  width: 190px;
  min-width: 190px;
  height: 160px;
  border-radius: 16px;
  overflow: hidden;
  flex-shrink: 0;
}
.modal-illus svg {
  width: 100%;
  height: 100%;
  display: block;
}
.modal-overview {
  font-size: var(--text-base);
  color: var(--color-text-body);
  line-height: 1.8;
  margin: 0;
}

/* ── Condition illustration keyframe animations ── */
@keyframes condSpineWave    { 0%,100%{ transform:translateX(0) }     50%{ transform:translateX(3px) } }
@keyframes condPulseRed     { 0%,100%{ opacity:.4 }                  50%{ opacity:1 } }
@keyframes condTingle       { 0%,100%{ opacity:0 }                   50%{ opacity:1 } }
@keyframes condWalkLeg      { 0%,100%{ transform:rotate(0deg) }      50%{ transform:rotate(18deg) } }
@keyframes condJointPulse   { 0%,100%{ transform:scale(1) }          50%{ transform:scale(1.2) } }
@keyframes condFracturePulse{ 0%,100%{ opacity:.6 }                  50%{ opacity:1 } }
@keyframes condStenosis     { 0%,100%{ rx:6;ry:6 }                   50%{ rx:2.5;ry:2.5 } }
@keyframes condInfect       { 0%,100%{ opacity:.5 }                  50%{ opacity:1 } }
@keyframes condRadiate      { 0%{ stroke-dashoffset:40;opacity:0 }   50%{ opacity:1 } 100%{ stroke-dashoffset:0;opacity:0 } }
@keyframes condDiscBulge    { 0%,100%{ ry:7 }                        50%{ ry:11 } }
@keyframes condBoneLoss     { 0%,100%{ opacity:1 }                   50%{ opacity:.3 } }
@keyframes condTbSpot       { 0%,100%{ opacity:.5 }                  50%{ opacity:1 } }
@keyframes condTumourGrow   { 0%,100%{ transform:scale(1) }          50%{ transform:scale(1.15) } }
@keyframes condWeakFade     { 0%,100%{ opacity:1 }                   50%{ opacity:.2 } }
.modal-lists {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-5);
  align-items: start;
}
/* ── Card shell ── */
.modal-list-group {
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--color-border-light);
  box-shadow: var(--shadow-sm);
}
/* Symptoms: blue accent */
.modal-list-group:first-child {
  border-color: #bbdefb;
}
.modal-list-group:first-child .modal-list-title {
  background: #e3f2fd;
  border-bottom: 1px solid #bbdefb;
  color: #0d47a1;
}
.modal-list-group:first-child .modal-list-title i { color: var(--color-medical-blue); }
/* Treatment: teal accent */
.modal-list-group:last-child {
  border-color: #b2dfdb;
}
.modal-list-group:last-child .modal-list-title {
  background: #e0f2f1;
  border-bottom: 1px solid #b2dfdb;
  color: #004d40;
}
.modal-list-group:last-child .modal-list-title i { color: #00796b; }
.modal-list-group:last-child .modal-list li::before { background: #00796b; }
/* Card header */
.modal-list-title {
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  margin: 0;
  padding: var(--sp-3) var(--sp-5);
  display: flex;
  align-items: center;
  gap: var(--sp-2);
}
/* Card body / list */
.modal-list {
  padding: var(--sp-4) var(--sp-5);
  list-style: none;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  background: #fff;
}
.modal-list li {
  font-size: var(--text-sm);
  color: var(--color-text-body);
  line-height: 1.65;
  padding-left: var(--sp-5);
  position: relative;
}
.modal-list li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-medical-blue);
}
@media (max-width: 600px) {
  .modal-overview-row { flex-direction: column; }
  .modal-illus { width: 100%; min-width: unset; height: 160px; }
  .cond-modal-dialog {
    /* Full-width bottom sheet on mobile */
    position: fixed;
    top: auto;
    left: 0;
    bottom: 0;
    translate: none;
    width: 100%;
    max-height: 92svh;
    border-radius: var(--r-xl) var(--r-xl) 0 0;
    margin: 0;
  }
  .modal-wrapper { max-height: 92svh; }
  .modal-header { padding: var(--sp-5); }
  .modal-body   { padding: var(--sp-5) var(--sp-5) var(--sp-8); }
  .modal-lists  { grid-template-columns: 1fr; gap: var(--sp-4); }
}

/* ============================================================
   COMPREHENSIVE MOBILE FIXES
   ============================================================ */

/* ── Tablet adjustments (≤ 1024px) ── */
@media (max-width: 1024px) {
  /* Hide KPI background photo on tablet — text needs full width */
  .hs-kpi-photo { display: none; }

  /* Reduce header gap so logo + hamburger don't overflow */
  .header-inner { gap: var(--sp-4); }
}

/* ── Mobile (≤ 768px) ── */
@media (max-width: 768px) {
  /* Tighten header height */
  :root { --header-h: 62px; }
  .logo-img { height: 36px; }
  .logo-text .logo-name { font-size: var(--text-sm); }
  .logo-text .logo-sub  { font-size: 10px; }

  /* Announcement bar wrapping */
  .announcement-bar {
    font-size: 11px;
    padding: 7px var(--sp-4);
    line-height: 1.5;
  }

  /* Hero slider: reduce padding */
  .hs-slide__inner,
  .hs-slide__inner--kpi,
  .hs-slide__inner--trust {
    padding: var(--sp-12) 0 var(--sp-16);
  }

  /* KPI cards — tighter padding */
  .hs-kpi-header { margin-bottom: 1.5rem; }

  /* Feat icons — smaller on mobile */
  .hs-feat-icon--animated {
    width: 64px !important;
    height: 64px !important;
    min-width: 64px !important;
  }
  .hs-feat-icon--animated svg { width: 60px; height: 60px; }

  /* Conditions: single column pills on narrow screens */
  .cond-pills { grid-template-columns: 1fr; }

  /* Events arrows smaller */
  .events-arrow { width: 38px; height: 38px; font-size: 14px; }

  /* Stats bar: reduce cell padding */
  .stat-cell { padding: var(--sp-3) var(--sp-2); }
  .stat-cell-value { font-size: var(--text-lg); }
  .stat-cell-icon { width: 38px; height: 38px; font-size: 15px; }

  /* Testimonials: hide nav buttons, rely on dots */
  .t-nav-btn { width: 36px; height: 36px; font-size: 13px; }

  /* WhatsApp & scroll-top: pull in from edge */
  .wa-btn  { right: 16px; bottom: 18px; width: 50px; height: 50px; font-size: 22px; }
  .top-btn { right: 16px; bottom: 78px; width: 38px; height: 38px; font-size: 13px; }
  .wa-tip  { display: none; }

  /* Mobile nav panel: wider for better touch targets */
  .mobile-nav-panel { width: min(300px, 85vw); right: calc(-1 * min(320px, 87vw)); }
}

/* ── Small phones (≤ 480px) ── */
@media (max-width: 480px) {
  /* Container side padding */
  .container { padding-inline: var(--sp-4); }

  /* Hero slide 1: reduce badge size */
  .hs-badge { font-size: 9px; }
  .hs-badge__icon { width: 28px; height: 28px; }
  .hs-badge__text { padding: 0 10px; }

  /* Feat labels smaller */
  .hs-feat-label { font-size: 1.1rem; }
  .hs-feat-item { gap: 0.8rem; }
  .hs-feat-icon--animated {
    width: 52px !important;
    height: 52px !important;
    min-width: 52px !important;
  }
  .hs-feat-icon--animated svg { width: 48px; height: 48px; }

  /* KPI icons smaller */
  .hs-kpi-icon { width: 70px; height: 70px; border-radius: 14px; }
  .hs-kpi-card { padding: 1.25rem 0.75rem; }
  .hs-kpi-value { font-size: 1.5rem; }
  .hs-kpi-label { font-size: var(--text-xs); }

  /* Stats bar — 2 columns with tighter layout */
  .stat-cell-value { font-size: var(--text-base); }
  .stat-cell-icon { width: 32px; height: 32px; font-size: 14px; margin-bottom: var(--sp-2); }

  /* Conditions section: tighter card padding */
  .cond-col { padding: var(--sp-4); min-height: unset; }
  .cond-col-title { font-size: var(--text-base); margin-bottom: var(--sp-4); padding-bottom: var(--sp-3); }
  .cond-two-col { gap: var(--sp-4); }
  .cond-pill, .cond-pill--btn { font-size: var(--text-xs); padding: 5px 10px; gap: 5px; min-height: 32px; }

  /* Events slide — shorter on small phones */
  .events-slide { aspect-ratio: 4 / 3; }
  .events-arrow--prev { left: var(--sp-2); }
  .events-arrow--next { right: var(--sp-2); }

  /* Section spacing tighter */
  .section-pad    { padding-block: var(--sp-12); }
  .section-pad-sm { padding-block: var(--sp-8); }
  .section-header { margin-bottom: var(--sp-5); }

  /* MVV: hide card images, full-width content */
  .mvv-card__img-side { display: none; }
  .mvv-card__inner { padding: 0.85rem; }

  /* About section: tighten bio text */
  .about-grid { gap: var(--sp-6); }

  /* Branch cards: full width */
  .branches-grid { gap: var(--sp-4); }

  /* FAQ: tighter padding */
  .faq-q { padding: var(--sp-4); }
  .faq-q h3 { font-size: var(--text-xs); }
}

/* ── Ultra-small phones (≤ 360px) — iPhone SE, Galaxy S series ── */
@media (max-width: 360px) {
  :root { --header-h: 56px; }
  .logo-img { height: 30px; }
  .logo-text .logo-name { font-size: 13px; }
  .logo-text .logo-sub  { font-size: 9px; }

  .hs-kpi-grid { grid-template-columns: 1fr 1fr; gap: 0.5rem; }
  .hs-kpi-icon { width: 56px; height: 56px; border-radius: 12px; }
  .hs-kpi-card { padding: 1rem 0.5rem; gap: 0.5rem; }
  .hs-kpi-value { font-size: 1.25rem; }

  .hs-slide1-badges { flex-direction: column; gap: 0.35rem; }

  .cond-pill, .cond-pill--btn { font-size: 11px; padding: 4px 8px; }
  .sp-pill-icon, .pill-check { width: 18px; height: 18px; }

  .stat-cell { padding: var(--sp-2); }

  .panel-hero-title { font-size: 1.5rem; }
  .panel-hero-sub   { font-size: var(--text-sm); }
  .panel-filter-btn { font-size: 11px; padding: 0.3rem 0.7rem; }
}

/* ── Prevent horizontal overflow on all devices ── */
html, body { overflow-x: hidden; max-width: 100vw; }

/* ── Touch-friendly tap targets — ensure minimum 44px ── */
@media (pointer: coarse) {
  .hamburger { min-width: 44px; min-height: 44px; }
  .mobile-close-btn { min-width: 44px; min-height: 44px; }
  .mobile-nav-links a { min-height: 44px; display: flex; align-items: center; }
  .faq-q { min-height: 48px; }
  .panel-filter-btn { min-height: 40px; }
}
