/* ═══════════════════════════════════════════════════════════════════
   MMM SPEECH THERAPY & HEARING CENTRE — MAIN STYLESHEET
   ═══════════════════════════════════════════════════════════════════ */

/* ── CSS VARIABLES ─────────────────────────────────────────────────── */
:root {
  --blue:        #1a6fb5;
  --blue-dark:   #135494;
  --blue-deeper: #0d3f73;
  --blue-light:  #0ea5e9;
  --blue-pale:   #e0f0ff;
  --blue-ghost:  #f0f7ff;
  --white:       #ffffff;
  --off-white:   #fafbff;
  --gray-50:     #f8fafc;
  --gray-100:    #f1f5f9;
  --gray-200:    #e2e8f0;
  --gray-300:    #cbd5e1;
  --gray-400:    #94a3b8;
  --gray-500:    #64748b;
  --gray-700:    #334155;
  --gray-800:    #1e293b;
  --text:        #1e293b;
  --green-wa:    #25d366;
  --radius-sm:   8px;
  --radius:      14px;
  --radius-lg:   24px;
  --shadow-sm:   0 2px 8px rgba(26,111,181,0.08);
  --shadow:      0 4px 24px rgba(26,111,181,0.12);
  --shadow-lg:   0 12px 48px rgba(26,111,181,0.18);
  --shadow-xl:   0 24px 72px rgba(26,111,181,0.22);
  --transition:  0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; transition: color var(--transition); }
img, svg { max-width: 100%; display: block; }
ul { list-style: none; }
address { font-style: normal; }
blockquote { quotes: none; }

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 100px 0; }

/* ── SECTION HEADERS ───────────────────────────────────────────────── */
.section-header { text-align: center; margin-bottom: 60px; }

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--blue-pale);
  color: var(--blue);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 100px;
  margin-bottom: 14px;
}

.section-header h2 {
  font-family: 'Poppins', 'Inter', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  color: var(--text);
  margin-bottom: 14px;
  line-height: 1.2;
}

.section-sub {
  color: var(--gray-500);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.75;
}

/* ── BUTTONS ───────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
  text-decoration: none;
}

.btn-primary {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}
.btn-primary:hover {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(26,111,181,0.38);
}

.btn-nav-cta {
  background: var(--blue);
  color: var(--white);
  padding: 10px 22px;
  font-size: 0.88rem;
  border-radius: var(--radius-sm);
}
.btn-nav-cta:hover {
  background: var(--blue-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(26,111,181,0.35);
}

/* ── KEYFRAME ANIMATIONS ───────────────────────────────────────────── */
@keyframes waveBar {
  0%, 100% { transform: scaleY(0.25); opacity: 0.45; }
  50%       { transform: scaleY(1);    opacity: 1; }
}

@keyframes floatY {
  0%, 100% { transform: translateY(0px);   }
  50%       { transform: translateY(-12px); }
}

@keyframes floatY2 {
  0%, 100% { transform: translateY(0px);  }
  50%       { transform: translateY(8px); }
}

@keyframes pulseBadge {
  0%   { box-shadow: 0 0 0 0   rgba(37,211,102,0.5); }
  70%  { box-shadow: 0 0 0 16px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0   rgba(37,211,102,0); }
}

@keyframes loaderFill {
  0%   { width: 0%; }
  100% { width: 100%; }
}

@keyframes loaderBar {
  0%   { transform: scaleY(0.3); }
  50%  { transform: scaleY(1); }
  100% { transform: scaleY(0.3); }
}

@keyframes spinFade {
  0%   { opacity: 1; transform: rotate(0deg) scale(1); }
  100% { opacity: 0; transform: rotate(30deg) scale(0.95); }
}

@keyframes starPulse {
  0%, 100% { opacity: 0.2; transform: scale(0.8); }
  50%       { opacity: 1;   transform: scale(1.2); }
}

@keyframes blobDrift {
  0%   { transform: translate(0, 0) rotate(0deg) scale(1); }
  33%  { transform: translate(30px, -20px) rotate(10deg) scale(1.05); }
  66%  { transform: translate(-20px, 20px) rotate(-5deg) scale(0.97); }
  100% { transform: translate(0, 0) rotate(0deg) scale(1); }
}

@keyframes ringPulse {
  0%, 100% { transform: translate(-50%,-50%) scale(1);    opacity: 0.5; }
  50%       { transform: translate(-50%,-50%) scale(1.08); opacity: 0.2; }
}

@keyframes slideDown { from { opacity: 0; transform: translateY(-12px); } to { opacity: 1; transform: translateY(0); } }

/* ── LOADING SCREEN ────────────────────────────────────────────────── */
.page-loader {
  position: fixed;
  inset: 0;
  background: linear-gradient(135deg, var(--blue-deeper) 0%, var(--blue) 60%, var(--blue-light) 100%);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
.page-loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-inner { text-align: center; }

.loader-wave {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  height: 56px;
  margin-bottom: 20px;
}
.loader-wave span {
  display: block;
  width: 7px;
  height: 40px;
  background: rgba(255,255,255,0.85);
  border-radius: 4px;
  animation: loaderBar 0.9s ease-in-out infinite;
}
.loader-wave span:nth-child(2) { animation-delay: 0.12s; height: 56px; }
.loader-wave span:nth-child(3) { animation-delay: 0.24s; height: 48px; }
.loader-wave span:nth-child(4) { animation-delay: 0.36s; height: 56px; }
.loader-wave span:nth-child(5) { animation-delay: 0.48s; height: 40px; }

.loader-name {
  color: rgba(255,255,255,0.9);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
}

.loader-bar-wrap {
  width: 200px;
  height: 3px;
  background: rgba(255,255,255,0.2);
  border-radius: 2px;
  overflow: hidden;
  margin: 0 auto;
}
.loader-bar-fill {
  height: 100%;
  background: white;
  border-radius: 2px;
  animation: loaderFill 1.8s ease forwards;
}

/* ── ANNOUNCEMENT BAR ──────────────────────────────────────────────── */
.ann-bar {
  background: var(--blue-deeper);
  color: rgba(255,255,255,0.9);
  padding: 9px 0;
  font-size: 0.8rem;
  font-weight: 500;
}
.ann-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.ann-inner i { color: var(--blue-light); margin-right: 4px; }
.ann-inner a { color: var(--blue-light); font-weight: 600; }
.ann-inner a:hover { text-decoration: underline; }
.ann-sep { color: rgba(255,255,255,0.25); }

/* ── NAVBAR ────────────────────────────────────────────────────────── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--gray-100);
  transition: box-shadow var(--transition);
}
.navbar.scrolled { box-shadow: 0 2px 24px rgba(0,0,0,0.09); }

.nav-inner {
  display: flex;
  align-items: center;
  height: 70px;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-mark {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: white;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.logo-text strong {
  display: block;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--blue);
  line-height: 1.1;
}
.logo-text span {
  display: block;
  font-size: 0.7rem;
  color: var(--gray-500);
  font-weight: 500;
  line-height: 1;
}

.nav-links {
  display: flex;
  gap: 4px;
  margin-left: auto;
}
.nav-a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--gray-700);
  padding: 7px 12px;
  border-radius: 6px;
  transition: all var(--transition);
}
.nav-a:hover, .nav-a.active {
  color: var(--blue);
  background: var(--blue-ghost);
}

.nav-actions { display: flex; align-items: center; gap: 10px; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── HERO ──────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: calc(100vh - 70px);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 80px 0 100px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0a2e5c 0%, #1a6fb5 55%, #0ea5e9 100%);
  z-index: 0;
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.25;
  animation: blobDrift 12s ease-in-out infinite;
}
.hero-blob-1 {
  width: 500px; height: 500px;
  background: #38bdf8;
  top: -100px; right: 5%;
  animation-delay: 0s;
}
.hero-blob-2 {
  width: 400px; height: 400px;
  background: #7dd3fc;
  bottom: -80px; left: 10%;
  animation-delay: -6s;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* Hero left content */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.15);
  color: white;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.25);
  margin-bottom: 22px;
  backdrop-filter: blur(6px);
}
.hero-badge i { color: #fbbf24; }

.hero-title {
  font-family: 'Poppins', 'Inter', sans-serif;
  font-size: clamp(2.4rem, 5.5vw, 3.8rem);
  font-weight: 900;
  color: white;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}
.hero-gradient-text {
  background: linear-gradient(90deg, #93c5fd, #e0f2fe);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 1.08rem;
  color: rgba(255,255,255,0.82);
  max-width: 500px;
  margin-bottom: 32px;
  line-height: 1.75;
}

.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.btn-hero-primary {
  background: white;
  color: var(--blue);
  border-color: white;
  font-weight: 700;
  padding: 15px 30px;
}
.btn-hero-primary:hover {
  background: var(--blue-pale);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(255,255,255,0.3);
}
.btn-hero-outline {
  background: rgba(255,255,255,0.12);
  color: white;
  border-color: rgba(255,255,255,0.45);
  backdrop-filter: blur(6px);
  padding: 15px 30px;
}
.btn-hero-outline:hover {
  background: rgba(255,255,255,0.22);
  transform: translateY(-2px);
}

.hero-chips {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.88);
  font-size: 0.78rem;
  font-weight: 500;
  padding: 7px 14px;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(4px);
}
.chip i { color: #93c5fd; font-size: 0.75rem; }

/* Hero right visual */
.hero-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 380px;
}

.hero-visual-ring {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 360px; height: 360px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.12);
  animation: ringPulse 4s ease-in-out infinite;
}
.hero-visual-ring-2 {
  width: 460px; height: 460px;
  animation-delay: -2s;
}

.waveform {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 20px 28px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 100px;
  backdrop-filter: blur(10px);
  z-index: 1;
  position: relative;
}
.wave-bar {
  width: 5px;
  height: var(--h, 40px);
  background: rgba(255,255,255,0.8);
  border-radius: 3px;
  animation: waveBar 1.4s ease-in-out infinite;
  animation-delay: var(--d, 0s);
  transform-origin: center;
}

.waveform-caption {
  color: rgba(255,255,255,0.6);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  margin-top: 14px;
  z-index: 1;
}

/* Floating cards */
.float-cards { position: absolute; inset: 0; pointer-events: none; z-index: 2; }
.float-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-radius: var(--radius);
  padding: 14px 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
  pointer-events: auto;
}
.float-card .fc-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.float-card .fc-text strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1.1;
}
.float-card .fc-text span {
  font-size: 0.7rem;
  color: var(--gray-500);
  font-weight: 500;
}

.fc-rating { top: 6%; right: -8%; animation: floatY 3.2s ease-in-out infinite; }
.fc-rating .fc-icon { background: #fef3c7; color: #d97706; }

.fc-patients { bottom: 12%; left: -10%; animation: floatY2 3.8s ease-in-out infinite; }
.fc-patients .fc-icon { background: var(--blue-pale); color: var(--blue); }

.fc-child { bottom: 36%; right: -12%; animation: floatY 4.2s ease-in-out infinite 1s; }
.fc-child .fc-icon { background: #dcfce7; color: #16a34a; }

/* Hero wave separator */
.hero-wave {
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  z-index: 2;
  line-height: 0;
}
.hero-wave svg { display: block; width: 100%; }

/* ── STATS BAR ─────────────────────────────────────────────────────── */
.stats-bar {
  background: var(--white);
  padding: 0;
  box-shadow: 0 4px 32px rgba(26,111,181,0.08);
  border-bottom: 1px solid var(--gray-100);
}
.stats-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
  padding: 32px 0;
}
.stat-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 32px;
  justify-content: center;
}
.stat-icon-wrap {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--blue-pale), #dbeafe);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  color: var(--blue);
  flex-shrink: 0;
}
.stat-body strong {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 1.9rem;
  font-weight: 900;
  color: var(--blue);
  line-height: 1;
  margin-bottom: 3px;
}
.stat-body span {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.stat-sep {
  width: 1px;
  height: 48px;
  background: var(--gray-200);
}

/* ── WHY CHOOSE US ─────────────────────────────────────────────────── */
.why-us { background: var(--off-white); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.why-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.why-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--blue-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}
.why-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--blue-pale); }
.why-card:hover::after { transform: scaleX(1); }

.why-icon-wrap {
  width: 68px; height: 68px;
  background: linear-gradient(135deg, var(--blue-pale), #dbeafe);
  border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  color: var(--blue);
  margin: 0 auto 20px;
  transition: transform var(--transition);
}
.why-card:hover .why-icon-wrap { transform: scale(1.1) rotate(-3deg); }
.why-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; color: var(--text); }
.why-card p { font-size: 0.9rem; color: var(--gray-500); line-height: 1.7; }

/* ── SERVICES ──────────────────────────────────────────────────────── */
.services { background: var(--white); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--blue-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); background: var(--white); border-color: transparent; }
.service-card:hover::before { transform: scaleX(1); }

.service-card-featured {
  background: linear-gradient(160deg, #0f4c8a, #1a6fb5);
  border-color: transparent;
  color: white;
}
.service-card-featured .sc-icon-wrap { background: rgba(255,255,255,0.15); color: white; }
.service-card-featured h3 { color: white; }
.service-card-featured p { color: rgba(255,255,255,0.8); }
.service-card-featured .sc-tags span { background: rgba(255,255,255,0.15); color: rgba(255,255,255,0.85); }
.service-card-featured .sc-link { color: rgba(255,255,255,0.8); }
.service-card-featured:hover { background: linear-gradient(160deg, #0a3a6e, #135494); }
.service-card-featured::before { background: rgba(255,255,255,0.4); }

.sc-featured-badge {
  position: absolute;
  top: 16px; right: 16px;
  background: #fbbf24;
  color: #1e293b;
  font-size: 0.68rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 100px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.sc-icon-wrap {
  width: 60px; height: 60px;
  background: var(--blue-pale);
  color: var(--blue);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 18px;
  transition: transform var(--transition);
  flex-shrink: 0;
}
.service-card:hover .sc-icon-wrap { transform: scale(1.08) rotate(-4deg); }

.service-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; color: var(--text); }
.service-card p { font-size: 0.88rem; color: var(--gray-500); line-height: 1.7; flex: 1; margin-bottom: 16px; }

.sc-tags { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 16px; }
.sc-tags span {
  font-size: 0.72rem;
  font-weight: 600;
  background: var(--blue-pale);
  color: var(--blue);
  padding: 4px 10px;
  border-radius: 100px;
}

.sc-link {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--transition), opacity var(--transition);
  margin-top: auto;
}
.sc-link:hover { gap: 10px; }

/* ── CHILDREN'S SECTION ────────────────────────────────────────────── */
.children-section {
  position: relative;
  overflow: hidden;
  padding: 100px 0;
  background: linear-gradient(160deg, #fff8f0 0%, #fffbff 40%, #f0f8ff 100%);
}

.children-deco-blob-1 {
  position: absolute;
  top: -80px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(251,191,36,0.18) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.children-deco-blob-2 {
  position: absolute;
  bottom: -60px; left: -80px;
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(34,197,94,0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.children-stars { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.cstar {
  position: absolute;
  color: #fbbf24;
  font-size: 1rem;
  animation: starPulse 3s ease-in-out infinite;
}
.s1 { top: 10%; left: 8%;  animation-delay: 0s; }
.s2 { top: 20%; right: 12%; animation-delay: 0.5s; }
.s3 { top: 60%; left: 5%;  animation-delay: 1s; font-size: 0.7rem; }
.s4 { bottom: 20%; right: 8%; animation-delay: 1.5s; font-size: 1.3rem; }
.s5 { bottom: 10%; left: 20%; animation-delay: 2s; font-size: 0.8rem; }

.children-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}
.children-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(90deg, #ff6b6b, #fbbf24);
  color: white;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 7px 18px;
  border-radius: 100px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.children-header h2 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  font-weight: 800;
  color: var(--text);
  margin-bottom: 14px;
  line-height: 1.2;
}
.children-header p { color: var(--gray-500); font-size: 1rem; line-height: 1.7; }

.child-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 56px;
}

.child-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 22px;
  text-align: center;
  border: 2px solid var(--ccs, #f0f8ff);
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.child-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--ccs, #f0f8ff);
  opacity: 0;
  transition: opacity var(--transition);
  z-index: 0;
}
.child-card:hover { transform: translateY(-8px) scale(1.02); box-shadow: 0 16px 48px rgba(0,0,0,0.1); }
.child-card:hover::after { opacity: 0.3; }

.child-card-icon {
  font-size: 2.8rem;
  margin-bottom: 16px;
  display: block;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.1));
  animation: floatY 3s ease-in-out infinite;
}
.child-card:nth-child(2) .child-card-icon { animation-delay: 0.4s; }
.child-card:nth-child(3) .child-card-icon { animation-delay: 0.8s; }
.child-card:nth-child(4) .child-card-icon { animation-delay: 1.2s; }

.child-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--cc, var(--blue));
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
}
.child-card p {
  font-size: 0.85rem;
  color: var(--gray-500);
  line-height: 1.65;
  position: relative;
  z-index: 1;
}

/* Children warning signs */
.children-signs {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 48px;
  box-shadow: 0 8px 40px rgba(26,111,181,0.1);
  border: 1px solid var(--gray-100);
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
}

.signs-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 28px;
}
.signs-alert-icon {
  width: 44px; height: 44px;
  background: #fef3c7;
  color: #d97706;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.signs-header h3 { font-size: 1.2rem; font-weight: 700; color: var(--text); }

.signs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 28px;
}
.sign-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--gray-700);
  background: var(--gray-50);
  padding: 10px 14px;
  border-radius: 8px;
  text-align: left;
}
.sign-item i { color: #22c55e; flex-shrink: 0; }

.btn-children-cta {
  background: linear-gradient(90deg, #ff6b6b, #ff8c42);
  color: white;
  border: none;
  padding: 15px 32px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  text-decoration: none;
  transition: all var(--transition);
  box-shadow: 0 4px 20px rgba(255,107,107,0.35);
}
.btn-children-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(255,107,107,0.5);
}

/* ── DOCTOR SECTION ────────────────────────────────────────────────── */
.doctor-section {
  background: linear-gradient(160deg, #0a2e5c, #1a6fb5);
  position: relative;
  overflow: hidden;
}
.doctor-section::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(14,165,233,0.2) 0%, transparent 70%);
  border-radius: 50%;
}

.doctor-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}

.doctor-visual { display: flex; flex-direction: column; align-items: center; gap: 32px; }

.doctor-avatar-frame { position: relative; width: 260px; height: 260px; }

.dav-ring {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.15);
}
.dav-ring-1 { width: 260px; height: 260px; animation: ringPulse 4s ease-in-out infinite; }
.dav-ring-2 { width: 310px; height: 310px; animation: ringPulse 4s ease-in-out infinite 2s; }

.doctor-avatar {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 200px; height: 200px;
  background: linear-gradient(135deg, rgba(255,255,255,0.18), rgba(255,255,255,0.08));
  border: 2px solid rgba(255,255,255,0.25);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(10px);
  font-size: 4.5rem;
  color: rgba(255,255,255,0.85);
}

.dav-badge-years {
  position: absolute;
  bottom: 5px; right: -10px;
  background: #fbbf24;
  color: #1e293b;
  border-radius: 12px;
  padding: 8px 14px;
  text-align: center;
  font-weight: 800;
  box-shadow: 0 4px 16px rgba(251,191,36,0.4);
  line-height: 1;
}
.dav-badge-years strong { display: block; font-size: 1.2rem; }
.dav-badge-years span { font-size: 0.68rem; font-weight: 600; text-transform: uppercase; }

.doctor-creds { display: flex; flex-direction: column; gap: 10px; width: 100%; max-width: 280px; }
.dcred {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.9);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 10px 16px;
  border-radius: 8px;
  backdrop-filter: blur(6px);
}
.dcred i { color: #93c5fd; flex-shrink: 0; }

/* Doctor info side */
.doctor-info .section-tag { background: rgba(255,255,255,0.15); color: rgba(255,255,255,0.9); }
.doctor-info h2 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 800;
  color: white;
  margin-bottom: 20px;
  line-height: 1.2;
}
.doctor-desc { color: rgba(255,255,255,0.78); line-height: 1.75; font-size: 0.95rem; margin-bottom: 16px; }

.doctor-highlights { display: flex; flex-direction: column; gap: 16px; margin: 28px 0 32px; }
.dh-item { display: flex; align-items: flex-start; gap: 14px; }
.dh-icon {
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: #93c5fd;
  font-size: 1rem;
  flex-shrink: 0;
}
.dh-item strong { display: block; color: white; font-weight: 700; font-size: 0.92rem; margin-bottom: 2px; }
.dh-item span { color: rgba(255,255,255,0.6); font-size: 0.83rem; }

.doctor-info .btn-primary {
  background: white;
  color: var(--blue);
  border-color: white;
}
.doctor-info .btn-primary:hover {
  background: var(--blue-pale);
  box-shadow: 0 8px 32px rgba(255,255,255,0.3);
}

/* ── DOCTOR PHOTO & CERTIFICATE ────────────────────────────────────── */
.doctor-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.doctor-cert {
  width: 100%;
  max-width: 280px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 2px solid rgba(255,255,255,0.2);
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}
.doctor-cert img {
  width: 100%;
  height: auto;
  display: block;
}

/* ── DEVICES SHOWCASE ──────────────────────────────────────────────── */
.devices-showcase {
  margin-top: 60px;
  padding-top: 56px;
  border-top: 1px solid var(--gray-100);
  text-align: center;
}
.devices-showcase > h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}
.devices-showcase > p {
  color: var(--gray-500);
  font-size: 0.9rem;
  margin-bottom: 28px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
.devices-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.device-item {
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 16px;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}
.device-item:hover {
  border-color: var(--blue-pale);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}
.device-item img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  border-radius: 8px;
}

/* ── CHILDREN PHOTO GALLERY ────────────────────────────────────────── */
.children-photo-gallery {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin-bottom: 48px;
}
.children-photo-gallery img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  transition: transform var(--transition), box-shadow var(--transition);
}
.children-photo-gallery img:hover {
  transform: scale(1.04);
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
}

/* ── PATIENT JOURNEY ───────────────────────────────────────────────── */
.journey { background: var(--gray-50); }
.journey-steps {
  display: flex;
  align-items: center;
  gap: 0;
}
.journey-step {
  flex: 1;
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px 28px;
  text-align: center;
  border: 1px solid var(--gray-100);
  position: relative;
  transition: all var(--transition);
}
.journey-step:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.js-num {
  position: absolute;
  top: -16px; left: 50%;
  transform: translateX(-50%);
  background: var(--blue);
  color: white;
  font-family: 'Poppins', sans-serif;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 100px;
  letter-spacing: 0.05em;
}
.js-icon {
  width: 72px; height: 72px;
  background: linear-gradient(135deg, var(--blue-pale), #dbeafe);
  color: var(--blue);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  margin: 16px auto 20px;
  transition: transform var(--transition);
}
.journey-step:hover .js-icon { transform: scale(1.1); }
.journey-step h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; }
.journey-step p { font-size: 0.88rem; color: var(--gray-500); line-height: 1.7; }

.journey-connector {
  width: 60px;
  position: relative;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.jc-line {
  position: absolute;
  top: 50%; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--blue-light));
  transform: translateY(-50%);
}
.jc-arrow {
  background: var(--white);
  border: 2px solid var(--blue-light);
  color: var(--blue);
  border-radius: 50%;
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem;
  position: relative;
  z-index: 1;
}

/* ── TESTIMONIALS ──────────────────────────────────────────────────── */
.testimonials { background: var(--off-white); }
.overall-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 12px;
  font-size: 0.95rem;
}
.overall-stars { color: #f59e0b; font-size: 1.3rem; letter-spacing: 2px; }
.overall-rating strong { font-size: 1.2rem; font-weight: 800; color: var(--text); }
.overall-rating span { color: var(--gray-500); font-size: 0.88rem; }

.testimonials-outer { max-width: 680px; margin: 0 auto; }
.testimonials-track { position: relative; }
.tc-slide { display: none; }
.tc-slide.active {
  display: block;
  animation: tcFade 0.45s ease;
}
@keyframes tcFade {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0);   }
}

.tc-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 36px;
  height: 100%;
  position: relative;
}
.tc-card-featured {
  background: linear-gradient(135deg, var(--blue-deeper), var(--blue));
  border-color: transparent;
  color: white;
}
.tc-card-featured blockquote,
.tc-card-featured .tc-stars { color: white; }
.tc-card-featured .overall-stars,
.tc-card-featured .tc-stars { color: #fbbf24; }
.tc-card-featured .tc-author strong { color: white; }
.tc-card-featured .tc-author span { color: rgba(255,255,255,0.65); }
.tc-card-featured .tc-av { background: rgba(255,255,255,0.2); color: white; }
.tc-card-featured .tc-quote { color: rgba(255,255,255,0.2); }

.tc-quote { font-size: 2rem; color: var(--blue-pale); line-height: 1; margin-bottom: 12px; }
.tc-stars { color: #f59e0b; font-size: 1.1rem; letter-spacing: 2px; margin-bottom: 16px; }
blockquote {
  font-size: 1.02rem;
  color: var(--gray-700);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 24px;
}
.tc-author { display: flex; align-items: center; gap: 12px; }
.tc-av {
  width: 44px; height: 44px;
  background: var(--blue-pale);
  color: var(--blue);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
  font-size: 1rem;
  flex-shrink: 0;
}
.tc-author strong { display: block; font-weight: 700; font-size: 0.92rem; }
.tc-author span { font-size: 0.78rem; color: var(--gray-400); }

.tc-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 28px;
}
.tc-btn {
  width: 44px; height: 44px;
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  color: var(--blue);
  transition: all var(--transition);
}
.tc-btn:hover { background: var(--blue); border-color: var(--blue); color: white; transform: scale(1.08); }
.tc-dots { display: flex; gap: 8px; }
.tc-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--gray-200);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  padding: 0;
}
.tc-dot.active { background: var(--blue); width: 24px; border-radius: 5px; }

/* ── FAQ ───────────────────────────────────────────────────────────── */
.faq { background: var(--white); }
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.faq-item.open { border-color: var(--blue); box-shadow: 0 0 0 3px var(--blue-pale); }

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: var(--white);
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: 0.97rem;
  font-weight: 600;
  color: var(--text);
  font-family: 'Inter', sans-serif;
  transition: background var(--transition);
}
.faq-q:hover, .faq-item.open .faq-q { background: var(--blue-ghost); }

.faq-icon {
  width: 30px; height: 30px;
  background: var(--blue-pale);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--blue);
  font-size: 0.8rem;
  flex-shrink: 0;
  transition: transform var(--transition), background var(--transition);
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--blue); color: white; }

.faq-a {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-a:not([hidden]) {
  max-height: 300px;
  padding: 0 24px 20px;
}
.faq-a p { font-size: 0.92rem; color: var(--gray-500); line-height: 1.8; }

/* ── APPOINTMENT ───────────────────────────────────────────────────── */
.appointment { background: linear-gradient(160deg, #f0f7ff, #ffffff); }
.appointment-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 72px;
  align-items: start;
}

.appt-info { min-width: 0; }
.appt-info .section-tag { margin-bottom: 12px; display: inline-flex; }
.appt-info h2 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  margin-bottom: 16px;
}
.appt-info p { color: var(--gray-500); line-height: 1.75; margin-bottom: 28px; }

.appt-contacts { display: flex; flex-direction: column; gap: 14px; }
.appt-contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: all var(--transition);
}
.appt-contact-item:hover { border-color: var(--blue); box-shadow: var(--shadow-sm); transform: translateX(4px); }
.appt-wa { border-color: rgba(37,211,102,0.3); }
.appt-wa:hover { border-color: var(--green-wa); }
.aci-icon {
  width: 42px; height: 42px;
  background: var(--blue-pale);
  color: var(--blue);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.appt-wa .aci-icon { background: #dcfce7; color: #16a34a; }
.appt-contact-item strong { display: block; font-size: 0.88rem; font-weight: 700; color: var(--text); }
.appt-contact-item span { font-size: 0.8rem; color: var(--gray-500); }

/* Appointment form */
.appt-form {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-width: 0;
  width: 100%;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-group label { font-size: 0.85rem; font-weight: 600; color: var(--gray-700); }
.form-group label span { color: #ef4444; }

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  min-width: 0;
  padding: 12px 16px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--gray-50);
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2364748b' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  background: var(--white);
  box-shadow: 0 0 0 3px var(--blue-pale);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--gray-400); }

.btn-appt-submit {
  background: linear-gradient(135deg, #16a34a, #22c55e);
  color: white;
  border: none;
  padding: 15px 32px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 1rem;
  width: 100%;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition);
  box-shadow: 0 4px 20px rgba(22,163,74,0.35);
}
.btn-appt-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(22,163,74,0.45);
}
.btn-appt-submit i { font-size: 1.1rem; }

.form-privacy {
  font-size: 0.75rem;
  color: var(--gray-400);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

/* ── CONTACT ───────────────────────────────────────────────────────── */
.contact { background: var(--gray-50); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 40px;
  align-items: start;
}
.contact-cards { display: flex; flex-direction: column; gap: 20px; }
.contact-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.contact-card:hover { box-shadow: var(--shadow); transform: translateX(4px); }
.ccard-icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--blue-pale), #dbeafe);
  color: var(--blue);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  margin-bottom: 12px;
}
.contact-card h3 {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--blue);
  margin-bottom: 8px;
}
.contact-card p, .contact-card address { color: var(--gray-700); font-size: 0.9rem; line-height: 1.7; }
.contact-card a { color: var(--blue); font-weight: 600; }
.contact-card a:hover { text-decoration: underline; }
.wa-text-link { display: inline-flex; align-items: center; gap: 6px; color: #16a34a !important; font-weight: 600; font-size: 0.88rem; margin-top: 4px; }

.hours-table { width: 100%; border-collapse: collapse; font-size: 0.88rem; }
.hours-table td { padding: 5px 0; color: var(--gray-700); }
.hours-table td:last-child { text-align: right; font-weight: 600; color: var(--blue); }
.closed-row td { color: var(--gray-300) !important; }
.closed-row td:last-child { color: #ef4444 !important; }

.map-wrapper {
  border-radius: var(--radius);
  overflow: hidden;
  height: 460px;
  position: relative;
  box-shadow: var(--shadow-xl);
}
.map-wrapper iframe { width: 100%; height: 100%; }
.map-directions-btn {
  position: absolute;
  bottom: 20px; left: 50%;
  transform: translateX(-50%);
  background: var(--blue);
  color: white;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
  white-space: nowrap;
  transition: all var(--transition);
}
.map-directions-btn:hover { background: var(--blue-dark); transform: translateX(-50%) translateY(-2px); }

/* ── FOOTER ────────────────────────────────────────────────────────── */
.footer-top {
  background: #0f1c3f;
  padding: 72px 0 56px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
  gap: 48px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: white;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 16px;
}
.footer-logo i { color: var(--blue-light); font-size: 1.2rem; }

.footer-brand p {
  color: rgba(255,255,255,0.55);
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

.footer-social { display: flex; gap: 10px; }
.fsocial {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  transition: all var(--transition);
}
.fsocial:hover { background: var(--blue); border-color: var(--blue); color: white; transform: translateY(-2px); }
.fsocial-wa:hover { background: var(--green-wa); border-color: var(--green-wa); }

.footer-col h4 {
  color: white;
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  color: rgba(255,255,255,0.55);
  font-size: 0.88rem;
  transition: color var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.footer-col ul li a::before {
  content: '›';
  color: var(--blue-light);
  font-size: 1rem;
  line-height: 1;
}
.footer-col ul li a:hover { color: white; }

.footer-contact-list { display: flex; flex-direction: column; gap: 12px; }
.footer-contact-list p {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(255,255,255,0.55);
  font-size: 0.87rem;
  line-height: 1.55;
}
.footer-contact-list i { color: var(--blue-light); margin-top: 2px; flex-shrink: 0; }
.footer-contact-list a { color: rgba(255,255,255,0.75); }
.footer-contact-list a:hover { color: var(--blue-light); }

.footer-bottom {
  background: #080f20;
  padding: 18px 0;
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom-inner p { color: rgba(255,255,255,0.35); font-size: 0.78rem; }
.footer-bottom-badges {
  display: flex;
  gap: 16px;
  align-items: center;
}
.footer-bottom-badges span {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  display: flex;
  align-items: center;
  gap: 4px;
}
.footer-bottom-badges i { color: var(--blue-light); }

/* ── FLOATING BUTTONS ──────────────────────────────────────────────── */
.fab-whatsapp {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 900;
  width: 58px; height: 58px;
  background: var(--green-wa);
  color: white;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 4px 20px rgba(37,211,102,0.5);
  animation: pulseBadge 2.5s infinite;
  transition: transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
}
.fab-whatsapp:hover { transform: scale(1.12); box-shadow: 0 8px 36px rgba(37,211,102,0.65); }

.fab-tooltip {
  position: absolute;
  right: 70px;
  background: #0f1c3f;
  color: white;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(10px);
  transition: all var(--transition);
  pointer-events: none;
}
.fab-tooltip::after {
  content: '';
  position: absolute;
  top: 50%; right: -6px;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: #0f1c3f;
  border-right: none;
}
.fab-whatsapp:hover .fab-tooltip { opacity: 1; transform: translateX(0); }

.fab-call {
  position: fixed;
  bottom: 98px;
  right: 28px;
  z-index: 900;
  width: 54px; height: 54px;
  background: var(--blue);
  color: white;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem;
  box-shadow: 0 4px 20px rgba(26,111,181,0.5);
  transition: transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
}
.fab-call:hover {
  transform: scale(1.12);
  box-shadow: 0 8px 36px rgba(26,111,181,0.65);
  color: white;
}
.fab-call .fab-tooltip { right: 66px; }
.fab-call:hover .fab-tooltip { opacity: 1; transform: translateX(0); }

.tc-google-link {
  text-align: center;
  margin-top: 20px;
}
.tc-google-link a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--blue);
  border: 1.5px solid var(--blue-pale);
  padding: 8px 20px;
  border-radius: 100px;
  transition: all var(--transition);
}
.tc-google-link a:hover {
  background: var(--blue-pale);
  border-color: var(--blue);
}
.tc-google-link a i { color: #ea4335; }

.back-to-top {
  position: fixed;
  bottom: 168px;
  right: 28px;
  z-index: 900;
  width: 46px; height: 46px;
  background: var(--white);
  border: 2px solid var(--blue);
  color: var(--blue);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
  cursor: pointer;
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: all var(--transition);
}
.back-to-top.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.back-to-top:hover { background: var(--blue); color: white; transform: translateY(-2px); }

/* ── RESPONSIVE: 1024px ────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 60px; }
  .hero-visual { display: none; }
  .hero-content { max-width: 640px; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .child-cards-grid { grid-template-columns: 1fr 1fr; }
  .doctor-grid { grid-template-columns: 1fr; gap: 56px; }
  .doctor-visual { flex-direction: row; justify-content: center; flex-wrap: wrap; gap: 40px; }
  .devices-grid { grid-template-columns: repeat(3, 1fr); }
  .children-photo-gallery { grid-template-columns: repeat(3, 1fr); }
  .appointment-grid { grid-template-columns: 1fr; gap: 48px; }
  .contact-grid { grid-template-columns: 1fr; }
  .map-wrapper { height: 320px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .stats-grid { grid-template-columns: 1fr 1fr; padding: 32px 0; }
  .stat-sep { display: none; }
  .stat-item { padding: 16px 24px; }
}

/* ── RESPONSIVE: 768px ─────────────────────────────────────────────── */
@media (max-width: 768px) {
  .section { padding: 72px 0; }
  .ann-bar .ann-sep { display: none; }
  .ann-inner { gap: 8px; }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 70px; left: 0; right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--gray-100);
    padding: 16px;
    box-shadow: 0 12px 32px rgba(0,0,0,0.1);
    animation: slideDown 0.25s ease;
    z-index: 999;
    gap: 4px;
  }
  .nav-links.open { display: flex; }
  .nav-a { padding: 12px 16px; border-radius: 8px; }
  .nav-actions .btn-nav-cta { display: none; }
  .hamburger { display: flex; }

  .hero { padding: 56px 0 80px; }
  .hero-title { font-size: clamp(2rem, 8vw, 3rem); }

  .why-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .child-cards-grid { grid-template-columns: 1fr 1fr; }
  .children-photo-gallery { grid-template-columns: repeat(3, 1fr); }
  .signs-grid { grid-template-columns: 1fr 1fr; }
  .devices-grid { grid-template-columns: repeat(3, 1fr); }
  .journey-steps { flex-direction: column; gap: 16px; }
  .journey-connector { display: none; }
  .journey-step { padding: 28px 20px; }
  .form-row { grid-template-columns: 1fr; }
  .appt-form { padding: 24px 16px; }
  .appt-contact-item { padding: 12px 14px; gap: 10px; }
  .appointment-grid { gap: 28px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom-inner { flex-direction: column; text-align: center; gap: 8px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .children-signs { padding: 28px 20px; }
  .tc-slide { padding: 0; }
  .hero-sub { max-width: 100%; }
  .nav-actions { display: none; }
}

/* ── RESPONSIVE: 480px ─────────────────────────────────────────────── */
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .section { padding: 56px 0; }

  .hero { padding: 44px 0 64px; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { text-align: center; justify-content: center; width: 100%; }
  .hero-badge { font-size: 0.72rem; padding: 6px 14px; }
  .hero-chips { gap: 6px; }
  .hero-chips .chip { font-size: 0.7rem; padding: 5px 10px; }
  .hero-sub { font-size: 0.98rem; }

  .section-header { margin-bottom: 40px; }
  .stats-grid { grid-template-columns: 1fr; }
  .stat-sep { display: none; }
  .stat-item { padding: 12px 16px; }

  .why-card { padding: 24px 18px; }
  .why-icon-wrap { width: 56px; height: 56px; font-size: 1.3rem; }

  .child-cards-grid { grid-template-columns: 1fr; }
  .signs-grid { grid-template-columns: 1fr; }
  .children-signs { padding: 24px 16px; }
  .signs-header { flex-direction: column; gap: 8px; text-align: center; }

  .doctor-visual { flex-direction: column; }
  .doctor-avatar-frame { width: 200px; height: 200px; }
  .doctor-avatar { width: 158px; height: 158px; font-size: 3.2rem; }
  .dav-ring-1 { width: 200px; height: 200px; }
  .dav-ring-2 { width: 240px; height: 240px; }
  .doctor-cert { max-width: 240px; }
  .children-photo-gallery { grid-template-columns: repeat(2, 1fr); }
  .devices-grid { grid-template-columns: repeat(2, 1fr); }

  .tc-card { padding: 24px 18px; }
  .tc-dot { width: 8px; height: 8px; }
  .tc-dot.active { width: 18px; }

  .journey-step { padding: 22px 16px; }
  .js-icon { width: 56px; height: 56px; font-size: 1.3rem; }

  .appt-form { padding: 18px 12px; border-radius: 16px; }
  .appt-contact-item { padding: 10px 12px; gap: 8px; }
  .aci-icon { width: 36px; height: 36px; font-size: 0.9rem; border-radius: 8px; }
  .form-group input,
  .form-group select,
  .form-group textarea { font-size: 16px; padding: 10px 12px; }
  .form-group select { padding-right: 36px; }
  .btn-appt-submit { padding: 13px 20px; font-size: 0.95rem; }
  .map-wrapper { height: 260px; }

  .fab-whatsapp { bottom: 20px; right: 20px; width: 52px; height: 52px; font-size: 1.3rem; }
  .fab-call { bottom: 82px; right: 20px; width: 48px; height: 48px; font-size: 1.1rem; }
  .back-to-top { bottom: 144px; right: 20px; }

  .ann-inner span:nth-child(n+4) { display: none; }
  .footer-grid { gap: 28px; }
}

/* ── RESPONSIVE: 360px ─────────────────────────────────────────────── */
@media (max-width: 360px) {
  .container { padding: 0 12px; }
  .hero-title { font-size: 1.85rem; }
  .hero-chips .chip:nth-child(n+3) { display: none; }
  .section-header h2 { font-size: 1.6rem; }
  .tc-card { padding: 20px 14px; }
  blockquote { font-size: 0.92rem; }
}

/* ── PRINT ─────────────────────────────────────────────────────────── */
@media print {
  .navbar, .ann-bar, .fab-whatsapp, .back-to-top, .hero-bg { display: none; }
  .hero { background: white; color: black; }
  .hero-title, .hero-sub { color: black; }
}
