/* ═══════════════════════════════════════════════════════════════
   Cynosure Aesthetic Clinic — Public Website CSS
   Primary: #0094DA | Secondary: #FFFFFF
   Fonts: Playfair Display (headings) + DM Sans (body)
   ═══════════════════════════════════════════════════════════════ */

/* ─── CSS Variables ──────────────────────────────────────────── */
:root {
  --primary:        #0094DA;
  --primary-dark:   #0078b5;
  --primary-light:  #e6f5fc;
  --primary-xlight: #f0faff;
  --accent-green:   #00C48C;
  --white:          #ffffff;
  --black:          #0a0a0a;
  --text-dark:      #111827;
  --text-body:      #374151;
  --text-muted:     #6B7280;
  --text-light:     #9CA3AF;
  --border:         #E5E7EB;
  --border-light:   #F3F4F6;
  --surface:        #F9FAFB;
  --surface-blue:   #EBF8FF;

  --font-display: 'Poppins', -apple-system, sans-serif;
  --font-body:    'Poppins', -apple-system, sans-serif;

  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --radius-xl:  32px;
  --radius-full: 9999px;

  --shadow-sm:  0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md:  0 4px 16px rgba(0,0,0,0.08);
  --shadow-lg:  0 12px 40px rgba(0,0,0,0.12);
  --shadow-blue: 0 8px 30px rgba(0,148,218,0.25);

  --nav-h: 72px;
  --max-w: 1180px;
  --section-py: 88px;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--text-body);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

/* ─── Typography ─────────────────────────────────────────────── */
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.2; color: var(--text-dark); }

h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 700; }
h2 { font-size: clamp(1.75rem, 3vw, 2.5rem); font-weight: 600; }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); font-weight: 600; }
h4 { font-size: 1.125rem; font-weight: 600; }

p { font-size: 1rem; line-height: 1.7; }

/* ─── Utility ────────────────────────────────────────────────── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section    { padding: var(--section-py) 0; }
.text-center { text-align: center; }
.text-primary { color: var(--primary); }

.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
}

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 56px;
}
.section-header p {
  color: var(--text-muted);
  margin-top: 12px;
  font-size: 1.05rem;
}

/* ─── Buttons ────────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: var(--white);
  padding: 14px 28px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.95rem;
  font-family: var(--font-body);
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: var(--shadow-blue);
  cursor: pointer;
  border: none;
}
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-1px); box-shadow: 0 12px 36px rgba(0,148,218,0.35); }
.btn-primary:active { transform: translateY(0); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--primary);
  padding: 13px 26px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid var(--primary);
  transition: all 0.2s;
  cursor: pointer;
  font-family: var(--font-body);
}
.btn-outline:hover { background: var(--primary); color: var(--white); }

.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  color: var(--primary);
  padding: 14px 28px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.95rem;
  font-family: var(--font-body);
  transition: all 0.2s;
  cursor: pointer;
  border: none;
}
.btn-white:hover { background: var(--primary-light); }

.btn-green {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-green);
  color: var(--white);
  padding: 12px 24px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.9rem;
  font-family: var(--font-body);
  border: none;
  transition: all 0.2s;
  cursor: pointer;
}
.btn-green:hover { background: #00a87a; }

.btn-sm { padding: 8px 18px; font-size: 0.85rem; }

/* ─── Navbar ──────────────────────────────────────────────────── */
.csa-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, box-shadow 0.3s;
  height: var(--nav-h);
}
.csa-nav.scrolled {
  border-color: var(--border);
  box-shadow: var(--shadow-sm);
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo-mark {
  width: 36px; height: 36px;
  background: var(--primary);
  color: var(--white);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.logo-primary {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-dark);
}
.logo-sub {
  font-size: 0.68rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  font-weight: 400;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-size: 0.93rem;
  font-weight: 500;
  color: var(--text-body);
  position: relative;
  transition: color 0.2s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 2px;
  background: var(--primary);
  transform: scaleX(0);
  transition: transform 0.2s;
  border-radius: 2px;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--primary);
}
.nav-links a.active::after,
.nav-links a:hover::after {
  transform: scaleX(1);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.btn-book-nav {
  background: var(--primary-light);
  color: var(--primary);
  padding: 9px 20px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.88rem;
  transition: all 0.2s;
}
.btn-book-nav:hover { background: var(--primary); color: var(--white); }

.btn-login-nav {
  background: var(--primary);
  color: var(--white);
  padding: 9px 22px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.88rem;
  transition: all 0.2s;
  box-shadow: var(--shadow-blue);
}
.btn-login-nav:hover { background: var(--primary-dark); }

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav-burger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: all 0.3s;
}

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  background: var(--white);
  padding: 24px;
  flex-direction: column;
  gap: 16px;
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  z-index: 999;
  transform: translateY(-110%);
  transition: transform 0.3s ease;
}
.mobile-menu.open { transform: translateY(0); }
.mobile-menu a {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-dark);
  padding: 4px 0;
  border-bottom: 1px solid var(--border-light);
}
.mobile-menu a:last-child { border: none; }
.mobile-menu .btn-primary, .mobile-menu .btn-outline {
  margin-top: 8px;
  text-align: center;
  justify-content: center;
}

/* ─── Hero Section ───────────────────────────────────────────── */
.hero {
  min-height: 100svh;
  background: linear-gradient(135deg, #0094DA 0%, #0078b5 40%, #005a8a 100%);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--nav-h);
}

.hero-bg-circle {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  pointer-events: none;
}
.hero-bg-circle.c1 { width: 500px; height: 500px; top: -100px; right: -100px; }
.hero-bg-circle.c2 { width: 300px; height: 300px; bottom: -80px; left: 10%; }
.hero-bg-circle.c3 { width: 180px; height: 180px; top: 30%; right: 25%; }

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 80px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
}

.hero-content { color: var(--white); }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  color: var(--white);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 500;
  margin-bottom: 28px;
  border: 1px solid rgba(255,255,255,0.25);
}
.hero-badge-dot {
  width: 7px; height: 7px;
  background: var(--accent-green);
  border-radius: 50%;
  animation: pulse-green 2s infinite;
}
@keyframes pulse-green {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero-title {
  color: var(--white);
  margin-bottom: 20px;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
}
.hero-title em {
  font-style: italic;
  color: rgba(255,255,255,0.85);
}

.hero-subtitle {
  color: rgba(255,255,255,0.82);
  font-size: 1.05rem;
  max-width: 480px;
  margin-bottom: 40px;
  line-height: 1.75;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 52px;
}

.hero-stats {
  display: flex;
  gap: 40px;
}
.hero-stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.7);
  margin-top: 4px;
}

/* Hero image side */
.hero-image-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-img-main {
  width: 100%;
  max-width: 460px;
  border-radius: 24px 24px 80px 24px;
  object-fit: cover;
  height: 520px;
  box-shadow: var(--shadow-lg);
  filter: brightness(0.95);
}
.hero-card-float {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-lg);
  animation: float-up 4s ease-in-out infinite alternate;
}
@keyframes float-up {
  from { transform: translateY(0); }
  to   { transform: translateY(-10px); }
}
.hero-card-float.card-1 { bottom: 60px; left: -20px; }
.hero-card-float.card-2 { top: 60px;    right: -20px; }
.hero-card-icon {
  width: 38px; height: 38px;
  background: var(--primary-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.2rem;
}
.hero-card-label { font-size: 0.72rem; color: var(--text-muted); }
.hero-card-value { font-size: 0.95rem; font-weight: 600; color: var(--text-dark); }

/* ─── Why Choose Us ──────────────────────────────────────────── */
.why-us { background: var(--white); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.why-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
  transition: all 0.25s;
}
.why-card:hover {
  border-color: var(--primary);
  background: var(--primary-xlight);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.why-icon {
  width: 52px; height: 52px;
  background: var(--primary-light);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.5rem;
  margin: 0 auto 16px;
}
.why-card h4 { font-size: 1rem; margin-bottom: 8px; }
.why-card p  { font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; }

/* ─── Procedures Grid ────────────────────────────────────────── */
.procedures { background: var(--surface); }

.procedures-category { margin-bottom: 56px; }
.procedures-category:last-child { margin-bottom: 0; }

.category-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  margin-bottom: 8px;
  color: var(--text-dark);
}
.category-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 28px;
  max-width: 520px;
}

.procs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.proc-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all 0.25s;
}
.proc-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.proc-img {
  width: 100%; height: 180px;
  object-fit: cover;
}
.proc-img-placeholder {
  width: 100%; height: 180px;
  background: linear-gradient(135deg, var(--primary-light), var(--surface-blue));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 2.5rem;
}
.proc-body { padding: 20px; }
.proc-body h4 { margin-bottom: 8px; font-size: 1.05rem; }
.proc-body p  { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 16px; line-height: 1.6; }
.btn-learn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
  transition: gap 0.2s;
}
.btn-learn:hover { gap: 10px; }

/* ─── Real Results Banner ────────────────────────────────────── */
.results-banner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  padding: var(--section-py) 0;
}
.results-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 380px;
}
.results-img img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.results-img-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, #0094DA, #005a8a);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 4rem;
}
.results-content h2 { margin-bottom: 16px; }
.results-content p  { color: var(--text-muted); margin-bottom: 28px; }

/* ─── Experienced Team ───────────────────────────────────────── */
.team-banner {
  background: var(--surface);
  padding: var(--section-py) 0;
}
.team-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
}
.team-content h2 { margin-bottom: 16px; }
.team-content p  { color: var(--text-muted); margin-bottom: 24px; }
.team-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 360px;
}
.team-img img { width: 100%; height: 100%; object-fit: cover; }
.team-img-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--primary-light), #cce9f7);
  display: flex; align-items: center; justify-content: center;
  font-size: 4rem; color: var(--primary);
}

/* ─── Journey Steps ──────────────────────────────────────────── */
.journey { background: var(--white); }

.journey-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
.journey-steps::before {
  content: '';
  position: absolute;
  top: 28px; left: 60px; right: 60px;
  height: 2px;
  background: linear-gradient(to right, var(--primary), var(--primary-light));
  z-index: 0;
}
.journey-step {
  text-align: center;
  position: relative;
  z-index: 1;
}
.step-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin: 0 auto 16px;
  box-shadow: var(--shadow-blue);
}
.journey-step h4 { font-size: 0.95rem; margin-bottom: 8px; }
.journey-step p  { font-size: 0.82rem; color: var(--text-muted); line-height: 1.6; }

/* ─── Facility Section ───────────────────────────────────────── */
.facility {
  position: relative;
  height: 420px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  margin: 0 24px;
}
.facility-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #002d45, #004d7a);
}
.facility-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.7) 40%, transparent);
  z-index: 1;
}
.facility-content {
  position: absolute; bottom: 40px; left: 48px;
  z-index: 2; color: var(--white); max-width: 440px;
}
.facility-content h2 { color: var(--white); margin-bottom: 12px; }
.facility-content p  { color: rgba(255,255,255,0.82); font-size: 0.95rem; }
.facility-thumbs {
  position: absolute;
  bottom: 40px; right: 48px;
  z-index: 2;
  display: flex;
  gap: 12px;
}
.facility-thumb {
  width: 90px; height: 70px;
  border-radius: 10px;
  border: 2px solid rgba(255,255,255,0.3);
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.2s;
}
.facility-thumb:hover { border-color: var(--white); }
.facility-thumb-placeholder {
  width: 100%; height: 100%;
  background: rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; color: rgba(255,255,255,0.6);
}

/* ─── Testimonials ───────────────────────────────────────────── */
.testimonials { background: var(--surface); }

.testimonials-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 700px;
  margin: 0 auto;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--border);
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: box-shadow 0.2s;
}
.testimonial-card:hover { box-shadow: var(--shadow-md); }
.testimonial-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--primary-light);
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}
.testimonial-avatar img { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; }
.testimonial-name { font-weight: 600; font-size: 0.95rem; margin-bottom: 4px; }
.testimonial-text { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; }
.quote-icon { color: var(--primary); font-size: 1.5rem; opacity: 0.4; margin-top: -4px; }

/* ─── CTA Band ───────────────────────────────────────────────── */
.cta-band {
  background: linear-gradient(135deg, #0094DA, #005a8a);
  padding: 88px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  top: -100px; right: -80px;
}
.cta-band h2 { color: var(--white); margin-bottom: 16px; max-width: 560px; margin-left: auto; margin-right: auto; }
.cta-band p  { color: rgba(255,255,255,0.82); margin-bottom: 32px; }
.cta-band-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ─── FAQ ────────────────────────────────────────────────────── */
.faq { background: var(--white); }
.faq-list { max-width: 700px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item.open { border-color: var(--primary); }
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  font-weight: 500;
  font-size: 0.95rem;
  transition: background 0.2s;
}
.faq-item.open .faq-question { background: var(--primary); color: var(--white); }
.faq-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 2px solid currentColor;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
  transition: transform 0.3s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.2s;
  padding: 0 24px;
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.75;
}
.faq-item.open .faq-answer { max-height: 300px; padding: 0 24px 20px; }

/* ─── About Page ─────────────────────────────────────────────── */
.page-hero {
  background: var(--primary);
  padding: calc(var(--nav-h) + 60px) 24px 60px;
  text-align: center;
  color: var(--white);
}
.page-hero h1 { color: var(--white); margin-bottom: 12px; }
.page-hero p  { color: rgba(255,255,255,0.8); max-width: 540px; margin: 0 auto; }

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.story-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 380px;
}
.story-img img { width: 100%; height: 100%; object-fit: cover; }
.story-img-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--primary-light), #cce9f7);
  display: flex; align-items: center; justify-content: center;
  font-size: 4rem; color: var(--primary);
}

.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.mission-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.mission-content h2 { margin-bottom: 16px; }
.mission-content p  { color: var(--text-muted); margin-bottom: 28px; }

.mission-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex;
  gap: 16px;
  transition: all 0.2s;
}
.mission-card:hover { border-color: var(--primary); box-shadow: var(--shadow-sm); }
.mission-card-icon {
  width: 44px; height: 44px;
  background: var(--primary);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 1.2rem;
  flex-shrink: 0;
}
.mission-card h4 { font-size: 0.95rem; margin-bottom: 6px; }
.mission-card p  { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; }

/* Doctors slider */
.doctors-slider {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  overflow: hidden;
}
.doctor-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all 0.25s;
}
.doctor-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.doctor-img {
  width: 100%; height: 220px;
  object-fit: cover;
}
.doctor-img-placeholder {
  width: 100%; height: 220px;
  background: linear-gradient(135deg, #0094DA, #005a8a);
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem; color: rgba(255,255,255,0.6);
}
.doctor-body { padding: 20px; }
.doctor-name { font-size: 1rem; font-weight: 700; margin-bottom: 4px; }
.doctor-title { font-size: 0.85rem; color: var(--primary); font-weight: 600; margin-bottom: 8px; }
.doctor-bio { font-size: 0.82rem; color: var(--text-muted); line-height: 1.6; }

/* ─── Consultation Booking Page ──────────────────────────────── */
.booking-page {
  min-height: 100svh;
  padding-top: var(--nav-h);
  background: var(--white);
}

.booking-inner {
  max-width: 680px;
  margin: 0 auto;
  padding: 40px 24px 60px;
}

.booking-back {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-body);
  margin-bottom: 28px;
  transition: all 0.2s;
  font-size: 1.1rem;
}
.booking-back:hover { border-color: var(--primary); color: var(--primary); }

.booking-heading h1 {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 8px;
}
.booking-heading p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 32px;
  max-width: 480px;
}

/* Form card */
.booking-form-card {
  background: var(--surface-blue);
  border-radius: var(--radius-lg);
  padding: 28px;
}

.form-group { margin-bottom: 20px; }
.form-label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
}
.form-input, .form-select, .form-textarea {
  width: 100%;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-full);
  padding: 13px 18px;
  font-size: 0.93rem;
  font-family: var(--font-body);
  color: var(--text-dark);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  -webkit-appearance: none;
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--text-light); }
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0,148,218,0.12);
}

/* Phone field with flag */
.phone-wrap {
  display: flex;
  align-items: center;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-full);
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.phone-wrap:focus-within {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0,148,218,0.12);
}
.phone-code {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 13px 16px;
  border-right: 1.5px solid var(--border);
  font-size: 0.9rem;
  color: var(--text-dark);
  background: var(--surface);
  white-space: nowrap;
  flex-shrink: 0;
}
.phone-flag {
  width: 20px; height: 14px;
  border-radius: 2px;
  background: linear-gradient(to bottom, #008751 33%, white 33% 66%, #008751 66%);
  flex-shrink: 0;
}
.phone-code-select {
  border: none;
  outline: none;
  background: var(--surface);
  border-right: 1.5px solid var(--border);
  padding: 13px 10px 13px 14px;
  font-size: 0.88rem;
  color: var(--text-dark);
  font-family: var(--font-body);
  cursor: pointer;
  flex-shrink: 0;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23888'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 8px center;
  padding-right: 24px;
}
.phone-input {
  border: none;
  outline: none;
  flex: 1;
  padding: 13px 18px;
  font-size: 0.93rem;
  font-family: var(--font-body);
  color: var(--text-dark);
  background: transparent;
}

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%236B7280' viewBox='0 0 256 256'%3E%3Cpath d='M213.66 101.66l-80 80a8 8 0 01-11.32 0l-80-80a8 8 0 0111.32-11.32L128 164.69l74.34-74.35a8 8 0 0111.32 11.32z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
  cursor: pointer;
  border-radius: var(--radius-full);
}

.form-textarea {
  border-radius: var(--radius-lg);
  resize: vertical;
  min-height: 130px;
  line-height: 1.7;
}
.textarea-wrap { position: relative; }
.textarea-count {
  position: absolute;
  bottom: 12px; right: 16px;
  font-size: 0.75rem;
  color: var(--text-light);
}

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

.form-privacy {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin: 16px 0 24px;
  display: flex;
  gap: 8px;
  align-items: flex-start;
}
.form-privacy i { color: var(--primary); margin-top: 2px; flex-shrink: 0; }

.btn-submit {
  width: 100%;
  padding: 16px;
  font-size: 1rem;
  font-weight: 700;
  background: var(--primary);
  color: var(--white);
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: var(--shadow-blue);
}
.btn-submit:hover { background: var(--primary-dark); transform: translateY(-1px); }
.btn-submit:active { transform: translateY(0); }
.btn-submit:disabled { background: var(--text-light); cursor: not-allowed; transform: none; }

/* Payment proof section (shown after step 1) */
.payment-info-card {
  background: var(--white);
  border: 1.5px solid var(--primary);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 24px;
}
.payment-info-card h3 { color: var(--primary); margin-bottom: 16px; font-size: 1.1rem; }
.bank-detail-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--border-light);
  font-size: 0.9rem;
}
.bank-detail-row:last-child { border: none; }
.bank-detail-label { color: var(--text-muted); }
.bank-detail-value { font-weight: 600; color: var(--text-dark); }

/* Upload area */
.upload-area {
  border: 2px dashed var(--border);
  border-radius: var(--radius-md);
  padding: 32px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s;
  background: var(--white);
}
.upload-area:hover, .upload-area.drag-over {
  border-color: var(--primary);
  background: var(--primary-xlight);
}
.upload-icon { font-size: 2rem; color: var(--primary); margin-bottom: 8px; }
.upload-text { font-size: 0.88rem; color: var(--text-muted); }
.upload-text strong { color: var(--primary); }

/* ─── Auth / Login ───────────────────────────────────────────── */
.auth-page {
  min-height: 100svh;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.auth-visual {
  background: linear-gradient(135deg, #0094DA, #003f6b);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px;
  position: relative;
  overflow: hidden;
}
.auth-visual-circle {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
}
.auth-visual-circle.c1 { width: 350px; height: 350px; top: -80px; right: -80px; }
.auth-visual-circle.c2 { width: 250px; height: 250px; bottom: -60px; left: -60px; }

.auth-visual-content {
  position: relative; z-index: 2;
  text-align: center; color: var(--white);
}
.auth-visual-content h2 { color: var(--white); font-size: 2rem; margin-bottom: 16px; }
.auth-visual-content p  { color: rgba(255,255,255,0.8); font-size: 0.95rem; line-height: 1.7; }

.auth-form-side {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 48px;
}
.auth-form-inner { width: 100%; max-width: 380px; }
.auth-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 40px; }
.auth-title { font-size: 1.5rem; margin-bottom: 6px; }
.auth-subtitle { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 32px; }

.auth-form .form-group { margin-bottom: 18px; }
.auth-form .form-input { border-radius: var(--radius-md); }

.auth-forgot { text-align: right; margin-top: -12px; margin-bottom: 18px; }
.auth-forgot a { font-size: 0.82rem; color: var(--primary); }

/* ─── Dashboard Shared Styles ────────────────────────────────── */
.dash-sidebar {
  width: 260px;
  background: var(--text-dark);
  height: 100svh;
  position: fixed;
  top: 0; left: 0;
  display: flex;
  flex-direction: column;
  padding: 0;
  z-index: 100;
  transition: transform 0.3s;
  overflow: hidden;
}
.dash-sidebar-logo {
  padding: 24px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  gap: 10px;
}
.dash-nav { flex: 1; padding: 16px 12px; overflow-y: auto; }
.dash-nav-section { margin-bottom: 24px; }
.dash-nav-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  padding: 0 10px;
  margin-bottom: 6px;
}
.dash-nav-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  color: rgba(255,255,255,0.65);
  font-size: 0.88rem;
  font-weight: 500;
  transition: all 0.2s;
  margin-bottom: 2px;
}
.dash-nav-item:hover { background: rgba(255,255,255,0.08); color: var(--white); }
.dash-nav-item.active { background: var(--primary); color: var(--white); }
.dash-nav-item i { font-size: 1.1rem; flex-shrink: 0; }

.dash-main {
  margin-left: 260px;
  min-height: 100svh;
  background: var(--surface);
  display: flex;
  flex-direction: column;
}
.dash-topbar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 0 28px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 50;
}
.dash-topbar-title { font-size: 1.1rem; font-weight: 600; color: var(--text-dark); }
.dash-topbar-right { display: flex; align-items: center; gap: 16px; }

.dash-content { padding: 28px; flex: 1; }

/* Dashboard stat cards */
.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 28px;
}
.stat-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 22px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 16px;
  transition: box-shadow 0.2s;
}
.stat-card:hover { box-shadow: var(--shadow-md); }
.stat-icon {
  width: 50px; height: 50px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}
.stat-icon.blue   { background: var(--primary-light); color: var(--primary); }
.stat-icon.green  { background: #d1fae5; color: #059669; }
.stat-icon.amber  { background: #fef3c7; color: #d97706; }
.stat-icon.red    { background: #fee2e2; color: #dc2626; }
.stat-icon.purple { background: #ede9fe; color: #7c3aed; }

.stat-num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1;
  margin-bottom: 4px;
}
.stat-label { font-size: 0.82rem; color: var(--text-muted); }

/* ─── Status Badges ──────────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
}
.badge-blue    { background: var(--primary-light); color: var(--primary); }
.badge-green   { background: #d1fae5; color: #065f46; }
.badge-amber   { background: #fef3c7; color: #92400e; }
.badge-red     { background: #fee2e2; color: #991b1b; }
.badge-gray    { background: var(--surface); color: var(--text-muted); border: 1px solid var(--border); }
.badge-purple  { background: #ede9fe; color: #5b21b6; }

/* ─── Bed Visual Grid ────────────────────────────────────────── */
.bed-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  gap: 12px;
}
.bed-cell {
  border-radius: var(--radius-md);
  padding: 14px 10px;
  text-align: center;
  border: 1.5px solid;
  cursor: pointer;
  transition: all 0.2s;
}
.bed-cell:hover { transform: scale(1.04); }
.bed-cell.available  { background: #f3f4f6; border-color: #d1d5db; color: #374151; }
.bed-cell.occupied   { background: #fee2e2; border-color: #fca5a5; color: #991b1b; }
.bed-cell.reserved   { background: #fef3c7; border-color: #fcd34d; color: #92400e; }
.bed-cell.cleaning   { background: #fef9c3; border-color: #fde047; color: #713f12; }
.bed-cell.maintenance { background: #e5e7eb; border-color: #9ca3af; color: #4b5563; }
.bed-number { font-weight: 700; font-size: 0.9rem; margin-bottom: 4px; }
.bed-status-text { font-size: 0.7rem; opacity: 0.8; }

/* ─── Table Styles ───────────────────────────────────────────── */
.data-table { width: 100%; border-collapse: collapse; }
.data-table th {
  text-align: left;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}
.data-table td {
  padding: 14px 16px;
  font-size: 0.88rem;
  border-bottom: 1px solid var(--border-light);
  color: var(--text-body);
  vertical-align: middle;
}
.data-table tr:hover td { background: var(--surface); }
.data-table tr:last-child td { border: none; }

/* ─── Alerts / Flash ─────────────────────────────────────────── */
.alert {
  padding: 14px 18px;
  border-radius: var(--radius-md);
  margin-bottom: 20px;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 10px;
}
.alert-success { background: #d1fae5; color: #065f46; border: 1px solid #a7f3d0; }
.alert-error   { background: #fee2e2; color: #991b1b; border: 1px solid #fca5a5; }
.alert-info    { background: var(--primary-light); color: var(--primary-dark); border: 1px solid #bae6fd; }
.alert-warning { background: #fef3c7; color: #92400e; border: 1px solid #fcd34d; }

/* ─── Cards / Panels ─────────────────────────────────────────── */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
}
.card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.card-title { font-size: 1rem; font-weight: 600; color: var(--text-dark); }

/* ─── Services hero: 2-column variant ────────────────────────── */
.hero-split-inner {
  grid-template-columns: 1fr 1fr !important;
  text-align: left !important;
  padding: 60px 24px !important;
  align-items: center !important;
  gap: 40px !important;
}
.hero-split-inner .hero-content { text-align: left; }
.hero-split-inner .hero-badge { align-self: flex-start; }
.hero-split-img {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  overflow: hidden;
}
.hero-split-img img { max-height: 380px; max-width: 100%; object-fit: contain; }

/* ─── Home 2×2 procedures grid ────────────────────────────────── */
.procs-grid-2col { grid-template-columns: repeat(2, 1fr); }

/* ─── Contact page grid ───────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

/* ─── Footer ─────────────────────────────────────────────────── */
.csa-footer {
  background: #111827;
  color: rgba(255,255,255,0.6);
  position: relative;
  overflow: hidden;
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 64px 24px 40px;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 48px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.footer-logo .logo-mark {
  background: var(--primary);
  color: white;
}
.footer-logo .logo-primary { color: white; }
.footer-logo .logo-sub     { color: rgba(255,255,255,0.45); }

.footer-brand p {
  color: rgba(255,255,255,0.5);
  font-size: 0.88rem;
  line-height: 1.75;
  max-width: 300px;
}

.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.footer-socials a {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5);
  font-size: 1rem;
  transition: all 0.2s;
}
.footer-socials a:hover { border-color: var(--primary); color: var(--primary); }

.footer-col h4 {
  color: white;
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 18px;
  letter-spacing: 0.03em;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  color: rgba(255,255,255,0.5);
  font-size: 0.87rem;
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--primary); }

.footer-bottom {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 18px 24px;
  border-top: 1px solid rgba(255,255,255,0.07);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom a { color: rgba(255,255,255,0.35); transition: color 0.2s; }
.footer-bottom a:hover { color: var(--primary); }

.footer-watermark {
  position: absolute;
  bottom: -16px; left: 50%;
  transform: translateX(-50%);
  font-size: clamp(5rem, 12vw, 9rem);
  font-weight: 800;
  color: rgba(255,255,255,0.03);
  white-space: nowrap;
  pointer-events: none;
  letter-spacing: -2px;
  user-select: none;
}

/* ─── Doctors grid: 4-up on about page ───────────────────────── */
.doctors-slider { grid-template-columns: repeat(4, 1fr); }

/* ─── Responsive ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .why-grid         { grid-template-columns: repeat(2, 1fr); }
  .procs-grid       { grid-template-columns: repeat(2, 1fr); }
  .procs-grid-2col  { grid-template-columns: repeat(2, 1fr); }
  .journey-steps    { grid-template-columns: repeat(2, 1fr); }
  .journey-steps::before { display: none; }
  .stat-grid        { grid-template-columns: repeat(2, 1fr); }
  .auth-page        { grid-template-columns: 1fr; }
  .auth-visual      { display: none; }
  .footer-inner     { grid-template-columns: 1fr 1fr; }
  .doctors-slider   { grid-template-columns: repeat(2, 1fr); }
  /* Services hero collapses to 1 col */
  .hero-split-inner { grid-template-columns: 1fr !important; text-align: center !important; }
  .hero-split-inner .hero-ctas { justify-content: center; }
  .hero-split-img   { display: none !important; }
  /* Contact collapses */
  .contact-grid     { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  :root { --section-py: 60px; }
  .nav-links, .btn-book-nav { display: none; }
  .nav-burger { display: flex; }
  .mobile-menu { display: flex; }
  .why-grid    { grid-template-columns: 1fr; }
  .procs-grid  { grid-template-columns: 1fr; }
  .procs-grid-2col { grid-template-columns: 1fr; }
  .form-row    { grid-template-columns: 1fr; }
  .results-banner, .team-inner, .story-grid, .mission-layout { grid-template-columns: 1fr; }
  .doctors-slider   { grid-template-columns: repeat(2, 1fr); }
  .footer-inner     { grid-template-columns: 1fr; gap: 32px; }
  .stat-grid   { grid-template-columns: 1fr 1fr; }
  .dash-sidebar { transform: translateX(-100%); }
  .dash-sidebar.open { transform: translateX(0); }
  .dash-main   { margin-left: 0; }
  .facility    { margin: 0; border-radius: 0; }
  .facility-thumbs { display: none; }
  .hero-stats  { gap: 24px; flex-wrap: wrap; justify-content: center; }
  .results-img { height: 260px !important; }
  .team-img    { height: 260px !important; }
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .mission-grid { grid-template-columns: 1fr; }
  .cta-band    { padding: 60px 20px; }
  /* Home hero: full-bleed background image on mobile */
  .hero-inner       { grid-template-columns: 1fr; text-align: center; }
  .hero-image-wrap  { display: none !important; }
  .hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('/images/Subtract.png');
    background-size: cover;
    background-position: 65% 20%;
    -webkit-mask-image: radial-gradient(ellipse 80% 130% at 58% 20%, black 42%, transparent 85%);
    mask-image:         radial-gradient(ellipse 80% 130% at 58% 20%, black 42%, transparent 85%);
    z-index: 0;
  }
  .hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 70, 160, 0.52);
    -webkit-mask-image: radial-gradient(ellipse 80% 130% at 58% 20%, black 42%, transparent 85%);
    mask-image:         radial-gradient(ellipse 80% 130% at 58% 20%, black 42%, transparent 85%);
    z-index: 1;
    pointer-events: none;
  }
  .hero-card-float  { display: none !important; }
  .hero-ctas        { justify-content: center; }
}

@media (max-width: 480px) {
  :root { --section-py: 48px; --nav-h: 64px; }
  .hero { padding-top: var(--nav-h); }
  .hero-inner { padding: 48px 16px !important; }
  .hero-badge { font-size: 0.75rem; padding: 6px 12px; }
  .hero-stats { gap: 16px; }
  .hero-stat-num { font-size: 1.6rem; }
  .hero-ctas  { flex-direction: column; align-items: center; gap: 10px; }
  .btn-primary, .btn-white, .btn-outline, .btn-green {
    width: 100%; max-width: 320px; justify-content: center; padding: 13px 20px;
  }
  h1 { font-size: clamp(1.6rem, 7vw, 2.2rem) !important; }
  h2 { font-size: clamp(1.3rem, 5vw, 1.8rem) !important; }
  .why-grid  { grid-template-columns: 1fr; gap: 16px; }
  .why-card  { padding: 20px 16px; }
  .procs-grid, .procs-grid-2col { grid-template-columns: 1fr; }
  .journey-steps { grid-template-columns: 1fr 1fr; gap: 16px; }
  .results-banner { flex-direction: column; gap: 24px; }
  .results-img { height: 220px !important; }
  .team-img   { height: 220px !important; }
  .section-header { margin-bottom: 36px; }
  .testimonials-list { gap: 12px; }
  .testimonial-card { flex-direction: column; gap: 12px; padding: 20px; }
  .cta-band   { padding: 48px 16px; }
  .cta-band h2 { font-size: 1.4rem; }
  .cta-band-btns { flex-direction: column; align-items: center; }
  .booking-inner { padding: 28px 16px 48px; }
  .booking-form-card { padding: 20px; }
  .footer-inner { padding: 40px 16px 24px; gap: 24px; }
  .footer-watermark { font-size: 4rem; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 6px; }
  .nav-inner  { padding: 0 16px; }
  .container  { padding: 0 16px; }
  .doctors-slider { grid-template-columns: 1fr; }
  .mission-grid   { grid-template-columns: 1fr; }
  .page-hero { padding: 100px 16px 60px !important; }
  .story-img  { height: 260px !important; }
  .facility   { height: 320px; }
  .facility-content { bottom: 24px; left: 20px; max-width: 280px; }
  .facility-content h2 { font-size: 1.2rem; }
  .facility-content p  { font-size: 0.82rem; }
}
