/* ============================================================
   MPILO CENTRAL HOSPITAL — STYLESHEET
   Refined Medical · Editorial · Trustworthy
   Fonts: Playfair Display (display) + DM Sans (body)
   Colors:
     --teal:  #0a6e6e  (primary teal)
     --teal-dk: #054e4e
     --teal-lt: #e8f4f4
     --gold:  #c9973a  (warm accent)
     --navy:  #0e2240
     --cream: #faf8f3
     --white: #ffffff
============================================================ */

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

:root {
  --teal:     #0a6e6e;
  --teal-dk:  #054e4e;
  --teal-lt:  #e5f2f2;
  --teal-mid: #0d8a8a;
  --gold:     #c9973a;
  --gold-lt:  #fdf3e3;
  --navy:     #0e2240;
  --navy-lt:  #162e55;
  --cream:    #faf8f3;
  --cream-dk: #f0ece3;
  --white:    #ffffff;
  --red:      #c0392b;
  --red-lt:   #fdf0ef;
  --grey:     #6b7280;
  --grey-lt:  #f4f4f2;
  --text:     #1a2233;
  --border:   rgba(10,110,110,0.12);

  --font-display: 'Playfair Display', serif;
  --font-body:    'DM Sans', sans-serif;

  --radius:    6px;
  --radius-lg: 12px;
  --radius-xl: 20px;
  --shadow:    0 4px 24px rgba(10,110,110,0.10);
  --shadow-lg: 0 12px 48px rgba(10,110,110,0.16);
  --transition: 0.24s cubic-bezier(0.4,0,0.2,1);
}

html { scroll-behavior: smooth; }

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

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

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ─── TYPE HELPERS ─────────────────────────────────────────── */
.section-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  padding: 5px 14px;
  background: var(--teal-lt);
  border-radius: 100px;
  margin-bottom: 18px;
}
.section-tag--light {
  color: rgba(255,255,255,0.9);
  background: rgba(255,255,255,0.12);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.12;
  color: var(--navy);
  margin-bottom: 18px;
}
.section-title em { color: var(--teal); font-style: italic; }
.section-title--light { color: var(--white); }
.section-title--light em { color: var(--gold); }

.section-sub {
  font-size: 17px;
  color: var(--grey);
  max-width: 580px;
  line-height: 1.75;
}
.section-sub--light { color: rgba(255,255,255,0.7); }

.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-header .section-sub { margin: 0 auto; }

/* ─── BUTTONS ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 13px 28px;
  border-radius: var(--radius);
  transition: all var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn--primary { background: var(--teal); color: var(--white); border-color: var(--teal); }
.btn--primary:hover { background: var(--teal-dk); border-color: var(--teal-dk); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(10,110,110,0.3); }

.btn--ghost { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.5); }
.btn--ghost:hover { border-color: var(--white); background: rgba(255,255,255,0.1); }

.btn--gold { background: var(--gold); color: var(--white); border-color: var(--gold); }
.btn--gold:hover { background: #b08530; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(201,151,58,0.35); }

.btn--white { background: var(--white); color: var(--teal); border-color: var(--white); font-weight: 700; }
.btn--white:hover { background: var(--cream); transform: translateY(-2px); }

.btn--outline-white { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.6); }
.btn--outline-white:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }

.btn--lg { padding: 16px 36px; font-size: 15px; }
.btn--full { width: 100%; justify-content: center; }

/* ─── EMERGENCY BAR ───────────────────────────────────────── */
.emergency-bar {
  background: var(--red);
  color: var(--white);
  font-size: 13px;
  font-weight: 500;
  text-align: center;
  padding: 9px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
  z-index: 200;
}
.emergency-bar__pulse {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--white);
  display: inline-block;
  flex-shrink: 0;
  animation: pulse 1.4s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.5; transform: scale(1.4); }
}

/* ─── NAVIGATION ──────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}
.nav.scrolled { box-shadow: 0 4px 30px rgba(10,110,110,0.10); }

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  padding: 0 28px;
  max-width: 1240px;
  margin: 0 auto;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav__logo-cross {
  font-size: 28px;
  color: var(--teal);
  font-weight: 900;
  line-height: 1;
}
.nav__logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.nav__logo-main {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 900;
  color: var(--navy);
  letter-spacing: 0.06em;
}
.nav__logo-sub {
  font-size: 11px;
  font-weight: 500;
  color: var(--teal);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav__links { display: flex; gap: 36px; }
.nav__link {
  font-size: 14px;
  font-weight: 500;
  color: var(--grey);
  transition: color var(--transition);
  position: relative;
  padding-bottom: 3px;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 2px;
  background: var(--teal);
  transition: width var(--transition);
  border-radius: 2px;
}
.nav__link:hover, .nav__link.active { color: var(--teal); }
.nav__link:hover::after, .nav__link.active::after { width: 100%; }

.nav__cta { padding: 10px 22px; font-size: 13px; }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav__burger span { display: block; width: 24px; height: 2px; background: var(--navy); transition: all var(--transition); }

.nav__mobile {
  display: none;
  flex-direction: column;
  padding: 16px 28px 24px;
  background: var(--white);
  border-top: 1px solid var(--border);
}
.nav__mobile a {
  display: block;
  padding: 13px 0;
  font-size: 16px;
  font-weight: 500;
  color: var(--text);
  border-bottom: 1px solid var(--cream-dk);
}
.nav__mobile a:hover { color: var(--teal); }
.nav__mobile .btn { margin-top: 16px; }
.nav__mobile.open { display: flex; }

/* ─── HERO ────────────────────────────────────────────────── */
.hero {
  position: relative;
  background: var(--navy);
  overflow: hidden;
  padding: 80px 0 100px;
  min-height: 88vh;
  display: flex;
  align-items: center;
}
.hero__backdrop {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 10% 60%, rgba(10,110,110,0.25) 0%, transparent 55%),
    radial-gradient(ellipse at 90% 20%, rgba(201,151,58,0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 100%, rgba(10,110,110,0.12) 0%, transparent 60%);
}
.hero__wave {
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 80px;
  background: var(--white);
  clip-path: ellipse(60% 100% at 50% 100%);
}

.hero__inner {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero__eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  padding: 6px 16px;
  border: 1px solid rgba(201,151,58,0.35);
  border-radius: 100px;
}

.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(44px, 5.5vw, 72px);
  font-weight: 700;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 24px;
}
.hero__headline em { color: var(--gold); font-style: italic; }

.hero__sub {
  font-size: 17px;
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 480px;
}

.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 44px; }

.hero__badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 8px 16px;
  border-radius: 100px;
}
.badge span { font-size: 16px; }

/* Hero card stack */
.hero__card-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
  animation: slideIn 0.9s ease 0.3s both;
}
@keyframes slideIn {
  from { opacity: 0; transform: translateX(30px); }
  to   { opacity: 1; transform: translateX(0); }
}

.hero__stat-card {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px 24px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(10px);
  transition: all var(--transition);
}
.hero__stat-card:hover {
  background: rgba(255,255,255,0.10);
  border-color: rgba(10,110,110,0.5);
  transform: translateX(-6px);
}
.hero__stat-card--1 { animation: cardIn 0.6s ease 0.5s both; }
.hero__stat-card--2 { animation: cardIn 0.6s ease 0.65s both; }
.hero__stat-card--3 { animation: cardIn 0.6s ease 0.8s both; }
.hero__stat-card--4 { animation: cardIn 0.6s ease 0.95s both; }
@keyframes cardIn {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero__stat-icon { font-size: 32px; flex-shrink: 0; }
.hero__stat-card strong { display: block; color: var(--white); font-weight: 600; font-size: 15px; }
.hero__stat-card span  { color: rgba(255,255,255,0.5); font-size: 13px; }

/* ─── QUICK STRIP ─────────────────────────────────────────── */
.quick-strip {
  background: var(--teal);
  padding: 0;
}
.quick-strip__inner {
  display: flex;
  align-items: stretch;
  max-width: 100%;
  padding: 0;
  overflow-x: auto;
}
.quick-link {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 22px 32px;
  flex: 1;
  min-width: 180px;
  border-right: 1px solid rgba(255,255,255,0.15);
  transition: background var(--transition);
  color: var(--white);
}
.quick-link:last-child { border-right: none; }
.quick-link:hover { background: var(--teal-dk); }
.quick-link__icon { font-size: 24px; flex-shrink: 0; }
.quick-link strong { display: block; font-size: 14px; font-weight: 600; }
.quick-link small  { font-size: 12px; color: rgba(255,255,255,0.65); }

/* ─── HOSPITALS GRID ──────────────────────────────────────── */
.hospitals { padding: 100px 0; background: var(--white); }
.hospitals__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.hosp-card {
  padding: 36px 28px;
  border-radius: var(--radius-lg);
  border: 1px solid transparent;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.hosp-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
}
.hosp-card--paed { background: var(--teal-lt); border-color: rgba(10,110,110,0.15); }
.hosp-card--paed::before { background: var(--teal); }
.hosp-card--mat  { background: var(--gold-lt); border-color: rgba(201,151,58,0.2); }
.hosp-card--mat::before  { background: var(--gold); }
.hosp-card--gen  { background: #eef1f8; border-color: rgba(14,34,64,0.12); }
.hosp-card--gen::before  { background: var(--navy); }
.hosp-card--oi   { background: #f0eef8; border-color: rgba(100,70,160,0.15); }
.hosp-card--oi::before   { background: #6946a0; }

.hosp-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.hosp-card__header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 20px; }
.hosp-card__icon { font-size: 40px; }
.hosp-card__num {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 900;
  color: rgba(0,0,0,0.06);
  line-height: 1;
}

.hosp-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.2;
}
.hosp-card p {
  font-size: 14px;
  color: var(--grey);
  line-height: 1.7;
  margin-bottom: 20px;
}
.hosp-card ul {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 24px;
}
.hosp-card ul li {
  font-size: 13px;
  color: var(--text);
  padding-left: 16px;
  position: relative;
}
.hosp-card ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--teal);
  font-weight: 700;
}
.hosp-card__link {
  font-size: 13px;
  font-weight: 600;
  color: var(--teal);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap var(--transition);
}
.hosp-card__link:hover { gap: 8px; }

/* ─── UNITS SECTION ───────────────────────────────────────── */
.units { position: relative; padding: 100px 0; overflow: hidden; }
.units__bg {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, var(--teal-dk) 0%, var(--navy) 100%);
}
.units__bg::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 80% 20%, rgba(201,151,58,0.08) 0%, transparent 50%);
}

.units__inner {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: start;
}
.units__text { padding-top: 20px; }
.units__text .btn { margin-top: 32px; }

.units__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.unit-card {
  padding: 28px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(8px);
  transition: all var(--transition);
}
.unit-card:hover {
  background: rgba(255,255,255,0.10);
  border-color: rgba(201,151,58,0.4);
  transform: translateY(-4px);
}
.unit-card__icon { font-size: 32px; margin-bottom: 14px; }
.unit-card h4 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.2;
}
.unit-card p { font-size: 13.5px; color: rgba(255,255,255,0.6); line-height: 1.65; }

/* ─── MISSION STRIP ───────────────────────────────────────── */
.mission-strip {
  padding: 80px 0;
  background: var(--cream);
  border-top: 1px solid var(--cream-dk);
  border-bottom: 1px solid var(--cream-dk);
}
.mission-strip__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
.mission-block { text-align: center; }
.mission-block__icon { font-size: 36px; margin-bottom: 16px; }
.mission-block h4 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.mission-block p { font-size: 14px; color: var(--grey); line-height: 1.7; }

/* ─── CTA BANNER ──────────────────────────────────────────── */
.cta-banner { position: relative; padding: 80px 0; overflow: hidden; }
.cta-banner__bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dk) 100%);
}
.cta-banner__bg::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 24px 24px;
}
.cta-banner__inner {
  position: relative; z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.cta-banner__title {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
  line-height: 1.2;
}
.cta-banner__sub { color: rgba(255,255,255,0.7); font-size: 16px; }
.cta-banner__actions { display: flex; gap: 16px; flex-wrap: wrap; flex-shrink: 0; }

/* ─── FOOTER ──────────────────────────────────────────────── */
.footer { background: var(--navy); color: rgba(255,255,255,0.65); padding-top: 72px; }
.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer__brand p { font-size: 14px; line-height: 1.7; margin: 20px 0 20px; max-width: 280px; }

.footer__emergency {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  color: #ff8a80;
  padding: 8px 16px;
  background: rgba(192,57,43,0.15);
  border: 1px solid rgba(192,57,43,0.3);
  border-radius: 100px;
}
.emergency-dot {
  width: 8px; height: 8px;
  background: #ff5252;
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse 1.4s ease-in-out infinite;
}

.footer__col h5 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}
.footer__col ul { display: flex; flex-direction: column; gap: 10px; }
.footer__col ul a { font-size: 14px; color: rgba(255,255,255,0.55); transition: color var(--transition); }
.footer__col ul a:hover { color: var(--gold); }
.footer__contact li { font-size: 14px; color: rgba(255,255,255,0.55); margin-bottom: 10px; }
.footer__contact a { color: var(--gold); }
.footer__contact a:hover { text-decoration: underline; }

.footer__bottom {
  padding: 20px 0;
}
.footer__bottom .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.3);
}

/* ─── PAGE HERO (inner pages) ─────────────────────────────── */
.page-hero {
  position: relative;
  padding: 80px 0 72px;
  background: linear-gradient(160deg, var(--navy) 0%, var(--teal-dk) 100%);
  overflow: hidden;
}
.page-hero__circles {
  position: absolute; inset: 0;
  overflow: hidden;
}
.page-hero__circles::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.05);
  top: -200px; right: -100px;
}
.page-hero__circles::after {
  content: '';
  position: absolute;
  width: 300px; height: 300px;
  border-radius: 50%;
  border: 1px solid rgba(201,151,58,0.1);
  bottom: -100px; left: 10%;
}

.page-hero__breadcrumb {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 18px;
  position: relative;
}
.page-hero__breadcrumb a { color: rgba(255,255,255,0.4); }
.page-hero__breadcrumb a:hover { color: var(--gold); }

.page-hero__title {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 68px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 20px;
  position: relative;
}
.page-hero__title em { color: var(--gold); font-style: italic; }
.page-hero__sub { font-size: 17px; color: rgba(255,255,255,0.6); max-width: 520px; position: relative; line-height: 1.75; }

/* ─── SERVICES PAGE ───────────────────────────────────────── */
.services-section { padding: 80px 0; }

.service-detail {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 48px;
  align-items: start;
  padding: 60px 0;
}
.service-detail--rev { /* same layout */ }

.service-detail__icon-col { text-align: center; }
.service-detail__badge {
  width: 100px; height: 100px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 44px;
  margin: 0 auto 20px;
}
.service-detail__badge--paed { background: var(--teal-lt); }
.service-detail__badge--mat  { background: var(--gold-lt); }
.service-detail__badge--gen  { background: #eef1f8; }
.service-detail__badge--oi   { background: #f0eef8; }
.service-detail__num {
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 900;
  color: rgba(10,110,110,0.08);
  line-height: 1;
}

.service-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  background: var(--teal-lt);
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 12px;
}

.service-detail__body h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 18px;
  line-height: 1.15;
}
.service-detail__intro {
  font-size: 16px;
  color: var(--grey);
  line-height: 1.8;
  margin-bottom: 32px;
  max-width: 620px;
}

.service-detail__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.service-feat {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.service-feat__dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--teal);
  flex-shrink: 0;
  margin-top: 7px;
}
.service-feat__dot--mat { background: var(--gold); }
.service-feat__dot--oi  { background: #6946a0; }
.service-feat strong { display: block; font-weight: 600; color: var(--navy); font-size: 15px; margin-bottom: 5px; }
.service-feat p { font-size: 14px; color: var(--grey); line-height: 1.65; }

.service-divider {
  height: 1px;
  background: linear-gradient(to right, var(--teal-lt), transparent);
}

/* Specialist Units */
.specialist-units { padding: 80px 0 100px; background: var(--cream); }
.su-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.su-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: all var(--transition);
}
.su-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: var(--teal); }
.su-card__icon { font-size: 40px; margin-bottom: 18px; }
.su-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 14px;
  line-height: 1.25;
}
.su-card p { font-size: 14.5px; color: var(--grey); line-height: 1.75; margin-bottom: 20px; }
.su-card__tags { display: flex; gap: 8px; flex-wrap: wrap; }
.su-card__tags span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--teal);
  background: var(--teal-lt);
  padding: 4px 12px;
  border-radius: 100px;
}

/* ─── ABOUT PAGE ──────────────────────────────────────────── */
.about-intro { padding: 100px 0; }
.about-intro__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}
.about-intro__text .section-title { margin-bottom: 24px; }
.about-intro__text p { font-size: 16px; color: var(--grey); line-height: 1.85; margin-bottom: 20px; }
.about-intro__highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.highlight-card {
  padding: 28px 24px;
  border-radius: var(--radius-lg);
  transition: all var(--transition);
}
.highlight-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.highlight-card--teal { background: var(--teal-lt); border: 1px solid rgba(10,110,110,0.15); }
.highlight-card--gold { background: var(--gold-lt); border: 1px solid rgba(201,151,58,0.2); }
.highlight-card--dark { background: var(--navy); border: 1px solid var(--navy); }
.highlight-card--dark h4, .highlight-card--dark p { color: var(--white) !important; }
.highlight-card--dark p { opacity: 0.7; }

.highlight-card__icon { font-size: 32px; margin-bottom: 14px; }
.highlight-card h4 { font-family: var(--font-display); font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.highlight-card p { font-size: 14px; color: var(--grey); line-height: 1.65; }

.mv-section { position: relative; padding: 100px 0; overflow: hidden; }
.mv-section__bg { position: absolute; inset: 0; background: linear-gradient(160deg, var(--teal) 0%, var(--teal-dk) 100%); }
.mv-section__inner {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 32px;
  align-items: center;
}
.mv-block { text-align: center; padding: 36px 24px; }
.mv-block__icon { font-size: 44px; margin-bottom: 20px; }
.mv-block h3 { font-family: var(--font-display); font-size: 26px; font-weight: 700; color: var(--white); margin-bottom: 16px; }
.mv-block p { font-size: 15px; color: rgba(255,255,255,0.65); line-height: 1.8; }
.mv-divider { width: 1px; height: 160px; background: rgba(255,255,255,0.15); }

.campus { padding: 100px 0; background: var(--white); }
.campus-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.campus-item {
  padding: 28px 22px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--cream);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.campus-item:hover { border-color: var(--teal); background: var(--white); transform: translateY(-3px); box-shadow: var(--shadow); }
.campus-item--large { background: var(--teal-lt); border-color: rgba(10,110,110,0.2); }

.campus-item__num {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 900;
  color: rgba(10,110,110,0.08);
  line-height: 1;
  position: absolute;
  top: 12px; right: 16px;
}
.campus-item__icon { font-size: 28px; margin-bottom: 12px; }
.campus-item h4 { font-family: var(--font-display); font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 8px; line-height: 1.2; }
.campus-item p { font-size: 13px; color: var(--grey); line-height: 1.6; }

.commitment { padding: 100px 0; background: var(--cream); }
.commitment__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}
.commitment__text .section-title { margin-bottom: 24px; }
.commitment__text p { font-size: 16px; color: var(--grey); line-height: 1.85; margin-bottom: 20px; }
.commitment__pillars { display: flex; flex-direction: column; gap: 28px; }
.comm-pillar { display: flex; gap: 20px; align-items: flex-start; }
.comm-pillar__line { width: 3px; height: 60px; background: var(--teal); border-radius: 2px; flex-shrink: 0; }
.comm-pillar h5 { font-weight: 700; font-size: 16px; color: var(--navy); margin-bottom: 6px; }
.comm-pillar p { font-size: 14.5px; color: var(--grey); line-height: 1.65; }

/* ─── CONTACT PAGE ────────────────────────────────────────── */
.emergency-notice {
  background: var(--red-lt);
  border-bottom: 3px solid var(--red);
}
.emergency-notice__inner {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 28px;
  max-width: 1200px;
  margin: 0 auto;
}
.emergency-notice__icon { font-size: 32px; flex-shrink: 0; margin-top: 2px; }
.emergency-notice strong { display: block; font-size: 17px; font-weight: 700; color: var(--red); margin-bottom: 6px; }
.emergency-notice p { font-size: 15px; color: #7f2218; line-height: 1.65; }

.contact-section { padding: 80px 0 100px; }
.contact-section__inner { display: grid; grid-template-columns: 1.3fr 1fr; gap: 64px; align-items: start; }

.contact-form-header { margin-bottom: 32px; }
.contact-form-header h2 { font-family: var(--font-display); font-size: 30px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.contact-form-header p { font-size: 15px; color: var(--grey); line-height: 1.7; }

.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: flex; gap: 20px; }
.form-row--2col > * { flex: 1; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label { font-size: 13px; font-weight: 600; letter-spacing: 0.04em; color: var(--navy); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(10,110,110,0.1);
}
.form-group textarea { resize: vertical; min-height: 140px; }
.form-group select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; }

.form-notice {
  padding: 14px 16px;
  background: var(--teal-lt);
  border: 1px solid rgba(10,110,110,0.2);
  border-radius: var(--radius);
  font-size: 13.5px;
  color: var(--teal-dk);
  line-height: 1.6;
}
.form-success {
  display: none;
  padding: 16px;
  background: var(--teal-lt);
  border: 1px solid rgba(10,110,110,0.3);
  border-radius: var(--radius);
  color: var(--teal-dk);
  font-weight: 600;
  font-size: 15px;
}
.form-success.visible { display: block; }

.contact-details { display: flex; flex-direction: column; gap: 24px; }

.contact-info-block {
  padding: 28px;
  background: var(--cream);
  border-radius: var(--radius-lg);
  border: 1px solid var(--cream-dk);
}
.contact-info-block--emerg {
  background: var(--red-lt);
  border-color: rgba(192,57,43,0.2);
}
.contact-info-block__header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.contact-info-block__header h3 { margin: 0; }
.contact-info-block h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
}
.contact-info-block--emerg h3 { color: var(--red); }
.contact-info-block--emerg p { font-size: 14.5px; color: #7f2218; line-height: 1.65; margin-bottom: 14px; }
.emerg-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  color: var(--red);
  background: rgba(192,57,43,0.1);
  border: 1px solid rgba(192,57,43,0.2);
  padding: 6px 14px;
  border-radius: 100px;
}

.contact-info-list { display: flex; flex-direction: column; gap: 18px; }
.contact-info-list li { display: flex; gap: 14px; align-items: flex-start; }
.contact-info-icon { font-size: 18px; flex-shrink: 0; margin-top: 2px; }
.contact-info-list strong { display: block; font-weight: 600; color: var(--navy); font-size: 14px; margin-bottom: 4px; }
.contact-info-list span { font-size: 14px; color: var(--grey); line-height: 1.65; }

.dept-list { display: flex; flex-direction: column; gap: 12px; }
.dept-list li { display: flex; align-items: center; gap: 14px; padding: 10px 14px; background: var(--white); border-radius: var(--radius); border: 1px solid var(--border); transition: all var(--transition); }
.dept-list li:hover { border-color: var(--teal); transform: translateX(4px); }
.dept-list__icon { font-size: 20px; flex-shrink: 0; }
.dept-list strong { display: block; font-size: 14px; font-weight: 600; color: var(--navy); }
.dept-list small { font-size: 12px; color: var(--grey); }

/* Map */
.map-section { margin-top: 0; }
.map-section__title { font-family: var(--font-display); font-size: 24px; font-weight: 700; color: var(--navy); margin-bottom: 20px; padding: 0 28px; max-width: 1200px; margin-left: auto; margin-right: auto; }
.map-placeholder {
  height: 380px;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.map-grid-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(10,110,110,0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10,110,110,0.12) 1px, transparent 1px);
  background-size: 48px 48px;
}
.map-placeholder__inner { position: relative; z-index: 1; text-align: center; color: var(--white); }
.map-pin { font-size: 56px; margin-bottom: 16px; animation: bounce 2s ease-in-out infinite; }
@keyframes bounce { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
.map-placeholder__inner h4 { font-family: var(--font-display); font-size: 26px; font-weight: 700; margin-bottom: 8px; }
.map-placeholder__inner p { color: rgba(255,255,255,0.6); margin-bottom: 24px; }

/* Notices */
.notice-section { padding: 60px 0; background: var(--cream); }
.notice-section__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.notice-card {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 28px;
  border-radius: var(--radius-lg);
  border: 1px solid transparent;
}
.notice-card--blue { background: var(--teal-lt); border-color: rgba(10,110,110,0.2); }
.notice-card--red  { background: var(--red-lt); border-color: rgba(192,57,43,0.2); }
.notice-card__icon { font-size: 28px; flex-shrink: 0; margin-top: 2px; }
.notice-card h4 { font-weight: 700; font-size: 16px; color: var(--navy); margin-bottom: 8px; }
.notice-card--red h4 { color: var(--red); }
.notice-card p { font-size: 14px; color: var(--grey); line-height: 1.7; }
.notice-card--red p { color: #7f2218; }

/* ─── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__card-stack { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .hospitals__grid { grid-template-columns: 1fr 1fr; }
  .units__inner { grid-template-columns: 1fr; gap: 48px; }
  .mission-strip__inner { grid-template-columns: 1fr 1fr; gap: 40px; }
  .about-intro__inner { grid-template-columns: 1fr; }
  .mv-section__inner { grid-template-columns: 1fr; text-align: center; }
  .mv-divider { width: 80%; height: 1px; margin: 0 auto; }
  .campus-grid { grid-template-columns: repeat(3, 1fr); }
  .commitment__inner { grid-template-columns: 1fr; }
  .contact-section__inner { grid-template-columns: 1fr; }
  .su-grid { grid-template-columns: 1fr 1fr; }
  .service-detail { grid-template-columns: 1fr; }
  .service-detail__icon-col { display: flex; align-items: center; gap: 20px; }
  .service-detail__num { font-size: 44px; }
  .footer__inner { grid-template-columns: 1fr 1fr; gap: 40px; }
  .notice-section__inner { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: flex; }

  .hero { padding: 60px 0 80px; min-height: auto; }
  .hero__headline { font-size: clamp(38px, 10vw, 56px); }
  .hero__card-stack { grid-template-columns: 1fr; }
  .hero__actions { flex-direction: column; align-items: flex-start; }
  .hero__badges { gap: 8px; }

  .quick-strip__inner { flex-wrap: nowrap; overflow-x: auto; }
  .quick-link { min-width: 160px; }

  .hospitals__grid { grid-template-columns: 1fr; }
  .units__cards { grid-template-columns: 1fr; }
  .mission-strip__inner { grid-template-columns: 1fr; }
  .campus-grid { grid-template-columns: 1fr 1fr; }
  .about-intro__highlights { grid-template-columns: 1fr; }
  .su-grid { grid-template-columns: 1fr; }
  .service-detail__features { grid-template-columns: 1fr; }
  .form-row { flex-direction: column; }
  .cta-banner__inner { flex-direction: column; text-align: center; }
  .cta-banner__actions { justify-content: center; }
  .footer__inner { grid-template-columns: 1fr; }
  .footer__bottom .container { flex-direction: column; text-align: center; }
  .emergency-bar { font-size: 12px; text-align: left; justify-content: flex-start; padding: 10px 16px; }
}
