/* ============================================================
   CSS VARIABLES
   ============================================================ */
:root {
  --navy:      #0B1F3A;
  --navy-mid:  #112848;
  --teal:      #0EA5A0;
  --teal-light:#15C4BE;
  --amber:     #F59E0B;
  --emergency: #E53E3E;
  --emergency-dark: #C53030;
  --white:     #FFFFFF;
  --off-white: #F7F9FC;
  --slate:     #64748B;
  --text:      #1E293B;
  --border:    #E2E8F0;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', sans-serif;

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --shadow-card: 0 4px 24px rgba(11,31,58,.08);
  --shadow-hover: 0 12px 40px rgba(11,31,58,.15);
  --transition: .35s cubic-bezier(.4,0,.2,1);
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: 96px 0; }
.section--grey { background: var(--off-white); }
.section--navy { background: var(--navy); }

/* ===== TYPOGRAPHY ===== */
.label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--teal);
}
.h1 {
  font-family: var(--font-display);
  font-size: clamp(44px, 5.5vw, 74px);
  font-weight: 600;
  line-height: 1.08;
  color: var(--white);
}
.h2 {
  font-family: var(--font-display);
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 600;
  line-height: 1.15;
  color: var(--navy);
}
.h3 {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 600;
  color: var(--navy);
}
.body-lg { font-size: 17px; line-height: 1.75; }
.body-sm { font-size: 14px; color: var(--slate); line-height: 1.65; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .04em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
}
.btn.is-loading {
  opacity: .85;
  pointer-events: none;
}
.btn.is-loading::after {
  content: '';
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.6);
  border-top-color: rgba(255,255,255,.15);
  display: inline-block;
  margin-left: 10px;
  animation: btnSpin .8s linear infinite;
}
@keyframes btnSpin {
  to { transform: rotate(360deg); }
}
.btn--primary {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
}
.btn--primary:hover {
  background: var(--teal-light);
  border-color: var(--teal-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(14,165,160,.35);
}
.btn--emergency {
  background: var(--emergency);
  color: var(--white);
  border-color: var(--emergency);
  animation: emergencyPulse 2.5s infinite;
}
.btn--emergency:hover {
  background: var(--emergency-dark);
  border-color: var(--emergency-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(229,62,62,.45);
  animation: none;
}
@keyframes emergencyPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(229,62,62,.5); }
  50% { box-shadow: 0 0 0 10px rgba(229,62,62,0); }
}
.btn--outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.4);
}
.btn--outline-white:hover {
  background: rgba(255,255,255,.12);
  border-color: var(--white);
}
.btn--outline-navy {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn--outline-navy:hover {
  background: var(--navy);
  color: var(--white);
}

/* ============================================================
   TOP BAR
   ============================================================ */
.topbar {
  background: var(--navy-mid);
  padding: 9px 0;
  font-size: 13px;
  color: rgba(255,255,255,.7);
}
.topbar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.topbar__links { display: flex; gap: 20px; }
.topbar__links a { color: rgba(255,255,255,.7); transition: color .2s; }
.topbar__links a:hover { color: var(--teal-light); }
.topbar__right {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.topbar__right a { color: rgba(255,255,255,.7); font-size: 13px; }
.topbar__right a:hover { color: var(--teal-light); }
.topbar__social { display: flex; gap: 12px; }
.topbar__social a {
  width: 26px; height: 26px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px;
  color: rgba(255,255,255,.7);
  transition: var(--transition);
}
.topbar__social a:hover { background: var(--teal); border-color: var(--teal); color: #fff; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 20px rgba(11,31,58,.06);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  position: relative;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav__logo img { width: 140px; max-width: 100%; height: auto; }
.nav__logo-mark {
  width: 40px; height: 40px;
  background: var(--teal);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
}
.nav__logo-text { font-family: var(--font-display); font-size: 22px; font-weight: 700; color: var(--navy); line-height: 1.1; }
.nav__logo-sub  { font-size: 10px; font-weight: 500; color: var(--slate); letter-spacing: .08em; text-transform: uppercase; }
.nav__links { display: flex; align-items: center; gap: 36px; }
.nav__links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  position: relative;
  transition: color .2s;
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--teal);
  transition: width .3s;
  border-radius: 2px;
}
.nav__links a:hover { color: var(--teal); }
.nav__links a:hover::after { width: 100%; }

.nav__toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--white);
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}
.nav__toggle:hover {
  border-color: rgba(14,165,160,.45);
  box-shadow: 0 10px 24px rgba(11,31,58,.12);
}
.nav__toggle:focus-visible { outline: 3px solid rgba(14,165,160,.35); outline-offset: 2px; }
.nav__toggle-bars {
  width: 18px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  position: relative;
  transition: var(--transition);
}
.nav__toggle-bars::before,
.nav__toggle-bars::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--transition);
}
.nav__toggle-bars::before { top: -6px; }
.nav__toggle-bars::after { top: 6px; }
.nav.nav--open .nav__toggle-bars { background: transparent; }
.nav.nav--open .nav__toggle-bars::before { transform: translateY(6px) rotate(45deg); }
.nav.nav--open .nav__toggle-bars::after { transform: translateY(-6px) rotate(-45deg); }

.nav__cta-mobile { display: none; }

/* ============================================================
   HERO — ENHANCED
   ============================================================ */
.hero {
  position: relative;
  min-height: 95vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Real background image via Unsplash */
.hero__bg-image {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1632833239869-a37e3a5806d2?w=1800&q=80&auto=format&fit=crop');
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
  transform: scale(1.03);
  transition: transform 8s ease;
}
.hero:hover .hero__bg-image { transform: scale(1); }

/* Dark navy-teal gradient overlay */
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    rgba(11, 31, 58, 0.93) 0%,
    rgba(11, 31, 58, 0.82) 45%,
    rgba(14, 165, 160, 0.25) 100%
  );
}

/* Subtle grid pattern on top */
.hero__bg-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(14,165,160,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14,165,160,.04) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 1;
}

.hero__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  z-index: 1;
}
.hero__blob--1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(14,165,160,.15) 0%, transparent 70%);
  top: -80px; right: -60px;
}
.hero__blob--2 {
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(229,62,62,.08) 0%, transparent 70%);
  bottom: -60px; left: 8%;
}

.hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: 56px;
  align-items: center;
  padding: 80px 0;
  width: 100%;
}

.hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(14,165,160,.18);
  border: 1px solid rgba(14,165,160,.35);
  color: var(--teal-light);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.hero__tag-dot {
  width: 6px; height: 6px;
  background: var(--teal-light);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%,100%{ opacity:1; transform: scale(1); }
  50%{ opacity:.4; transform: scale(1.6); }
}

.hero__eyebrow { color: rgba(255,255,255,.5); font-size: 13px; letter-spacing: .15em; text-transform: uppercase; margin-bottom: 16px; }
.hero__title { margin-bottom: 20px; }
.hero__title em { color: var(--teal-light); font-style: normal; }
.hero__subtitle {
  color: rgba(255,255,255,.55);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.hero__desc { color: rgba(255,255,255,.68); font-size: 17px; line-height: 1.75; max-width: 520px; margin-bottom: 36px; }
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 52px; }

/* Emergency contact strip below actions */
.hero__contact-strip {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.hero__contact-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 50px;
  padding: 8px 16px 8px 10px;
  backdrop-filter: blur(8px);
  transition: var(--transition);
  cursor: pointer;
}
.hero__contact-chip:hover {
  background: rgba(255,255,255,.13);
  border-color: rgba(14,165,160,.4);
  transform: translateY(-2px);
}
.hero__contact-chip--emergency {
  border-color: rgba(229,62,62,.35);
  background: rgba(229,62,62,.1);
}
.hero__contact-chip--emergency:hover {
  background: rgba(229,62,62,.18);
  border-color: rgba(229,62,62,.55);
}
.hero__contact-chip--whatsapp {
  border-color: rgba(37,211,102,.35);
  background: rgba(37,211,102,.08);
}
.hero__contact-chip--whatsapp:hover {
  background: rgba(37,211,102,.15);
  border-color: rgba(37,211,102,.5);
}
.hero__chip-icon {
  width: 32px; height: 32px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
}
.hero__chip-icon--emergency { background: rgba(229,62,62,.25); }
.hero__chip-icon--enquiry   { background: rgba(14,165,160,.25); }
.hero__chip-icon--whatsapp  { background: rgba(37,211,102,.25); }
.hero__chip-label { font-size: 10px; color: rgba(255,255,255,.45); text-transform: uppercase; letter-spacing: .08em; line-height: 1; }
.hero__chip-value { font-size: 13px; color: rgba(255,255,255,.9); font-weight: 600; line-height: 1.3; }

.hero__stats {
  display: flex;
  gap: 36px;
  padding-top: 36px;
  border-top: 1px solid rgba(255,255,255,.1);
}
.hero__stat-num {
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.hero__stat-num span { color: var(--teal-light); }
.hero__stat-label { font-size: 11px; color: rgba(255,255,255,.45); margin-top: 4px; text-transform: uppercase; letter-spacing: .08em; }

/* Hero Right: Emergency Panel Cards */
.hero__panel {
  display: flex;
  flex-direction: column;
  gap: 41px;
}

/* 24x7 Emergency hero card — prominent */
.hero__emergency-card {
  background: linear-gradient(135deg, rgba(229,62,62,.18) 0%, rgba(229,62,62,.08) 100%);
  border: 1px solid rgba(229,62,62,.4);
  border-radius: var(--radius-md);
  backdrop-filter: blur(20px);
  padding: 24px 28px;
  position: relative;
  overflow: hidden;
}
.hero__emergency-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--emergency), #ff6b6b);
}
.hero__emergency-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(229,62,62,.25);
  border: 1px solid rgba(229,62,62,.5);
  color: #ff8a80;
  padding: 4px 10px;
  border-radius: 50px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.hero__emergency-badge-dot {
  width: 5px; height: 5px;
  background: var(--emergency);
  border-radius: 50%;
  animation: pulse-dot 1.5s infinite;
}
.hero__emergency-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}
.hero__emergency-sub {
  font-size: 12px;
  color: rgba(255,255,255,.5);
  margin-bottom: 18px;
}
.hero__emergency-nums {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 0px;
}
.hero__emergency-num-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  background: rgba(255,255,255,.05);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,.08);
  transition: var(--transition);
  cursor: pointer;
}
.hero__emergency-num-row:hover { background: rgba(255,255,255,.1); border-color: rgba(14,165,160,.3); }
.hero__num-icon {
  width: 30px; height: 30px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px;
  flex-shrink: 0;
}
.hero__num-icon--red   { background: rgba(229,62,62,.3); }
.hero__num-icon--teal  { background: rgba(14,165,160,.3); }
.hero__num-icon--green { background: rgba(37,211,102,.3); }
.hero__num-type  { font-size: 10px; color: rgba(255,255,255,.4); text-transform: uppercase; letter-spacing: .08em; line-height: 1; color: #00ffea; font-weight: bold;}
.hero__num-value { font-size: 14px; color: var(--white); font-weight: 700; line-height: 1.3; }
.hero__emergency-cta {
  display: block;
  width: 100%;
  padding: 12px;
  background: var(--emergency);
  color: white;
  text-align: center;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .04em;
  transition: var(--transition);
  border: none;
  cursor: pointer;
}
.hero__emergency-cta:hover { background: var(--emergency-dark); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(229,62,62,.4); }

/* Appointment + Find Doctor cards */
.hero__card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-md);
  backdrop-filter: blur(20px);
  padding: 24px 28px;
  transition: var(--transition);
}
.hero__card:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(14,165,160,.35);
  transform: translateX(4px);
}
.hero__card-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}
.hero__card-icon {
  width: 40px; height: 40px;
  background: rgba(14,165,160,.2);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 17px;
  flex-shrink: 0;
}
.hero__card-title { font-size: 15px; font-weight: 600; color: var(--white); }
.hero__card-sub { font-size: 14px; color: rgba(255,255,255,.4); }
.hours-grid { display: grid; grid-template-columns: auto 1fr; gap: 5px 14px; }
.hours-grid dt { font-size: 12px; color: rgba(255,255,255,.45); }
.hours-grid dd { font-size: 12px; color: rgba(255,255,255,.75); font-weight: 500; }
.select-group { display: flex; flex-direction: column; gap: 10px; }
.select-styled {
  width: 100%;
  padding: 10px 16px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius-sm);
  color: rgba(255,255,255,.7);
  font-family: var(--font-body);
  font-size: 13px;
  cursor: pointer;
  transition: border-color .2s;
  appearance: none;
}
.select-styled:focus { outline: none; border-color: var(--teal); }
.select-styled option { background: var(--navy-mid); color: var(--white); }

/* ============================================================
   QUICK ACCESS BAR
   ============================================================ */
.quickbar {
  background: var(--teal);
  padding: 0;
}
.quickbar__inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.quickbar__item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 22px 28px;
  border-right: 1px solid rgba(255,255,255,.15);
  transition: background .25s;
  cursor: pointer;
}
.quickbar__item:last-child { border-right: none; }
.quickbar__item:hover { background: rgba(0,0,0,.08); }
.quickbar__icon { font-size: 24px; flex-shrink: 0; }
.quickbar__text-head { font-size: 14px; font-weight: 600; color: var(--white); }
.quickbar__text-sub  { font-size: 12px; color: rgba(255,255,255,.7); }

/* ============================================================
   DEPARTMENTS
   ============================================================ */
.dept-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 56px;
}
.dept-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.dept-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--teal);
  transform: scaleX(0);
  transition: transform .35s;
}
.dept-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-6px); border-color: transparent; }
.dept-card:hover::before { transform: scaleX(1); }
.dept-card__icon {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, rgba(14,165,160,.12), rgba(14,165,160,.06));
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 28px;
  margin: 0 auto 18px;
  transition: transform .35s;
}
.dept-card:hover .dept-card__icon { transform: scale(1.1) rotate(-4deg); }
.dept-card__name { font-size: 15px; font-weight: 600; color: var(--navy); margin-bottom: 8px; }
.dept-card__desc { font-size: 13px; color: var(--slate); line-height: 1.55; }

/* Section header */
.sec-header { text-align: center; max-width: 560px; margin: 0 auto 0; }
.sec-header .label { margin-bottom: 12px; display: block; }
.sec-header .h2 { margin-bottom: 16px; }
.sec-header p { color: var(--slate); font-size: 16px; }

/* ============================================================
   SERVICES STRIP
   ============================================================ */
.services-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.service-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  cursor: pointer;
}
.service-card__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  transition: transform .5s;
}
.service-card:hover .service-card__bg { transform: scale(1.05); }
.service-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11,31,58,.88) 0%, transparent 60%);
}
.service-card__accent {
  position: absolute;
  top: 0; right: 0;
  width: 80px; height: 80px;
  border-radius: 0 0 0 80px;
  background: var(--teal);
  opacity: .15;
}
.service-card__body {
  position: relative;
  padding: 24px;
}
.service-card__icon {
  font-size: 30px;
  margin-bottom: 10px;
}
.service-card__title { font-size: 15px; font-weight: 600; color: var(--white); margin-bottom: 4px; }
.service-card__sub { font-size: 12px; color: rgba(255,255,255,.6); }

/* ============================================================
   DOCTORS
   ============================================================ */
.doctors-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 56px;
}
.doctor-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  transition: var(--transition);
}
.doctor-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}
.doctor-card__img {
  position: relative;
  height: 360px;
  overflow: hidden;
}
.doctor-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}
.doctor-card:hover .doctor-card__img img { transform: scale(1.04); }
.doctor-card__specialty-badge {
  position: absolute;
  left: 20px;
  bottom: 20px;
  background: rgba(255,255,255,.96);
  color: var(--navy);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  border-radius: 999px;
  padding: 8px 14px;
  box-shadow: 0 10px 24px rgba(11,31,58,.12);
}
.doctor-card__body { padding: 24px; }
.doctor-card__name {
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.doctor-card__role {
  font-size: 14px;
  color: var(--slate);
  line-height: 1.75;
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: var(--navy);
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}
.cta-banner__bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 80% at 100% 50%, rgba(14,165,160,.2) 0%, transparent 70%);
}
.cta-banner__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.cta-banner__title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 600;
  color: white;
  line-height: 1.15;
}
.cta-banner__title em { color: var(--teal-light); font-style: normal; }
.cta-banner__sub { color: rgba(255,255,255,.6); font-size: 16px; margin-top: 12px; }
.cta-banner__actions { display: flex; gap: 16px; flex-shrink: 0; }

.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about__img-wrap {
  position: relative;
}
.about__img-main {
  width: 100%;
  height: 500px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}
.about__img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.about__img-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--teal);
  color: white;
  padding: 20px 28px;
  border-radius: var(--radius-md);
  box-shadow: 0 16px 40px rgba(14,165,160,.4);
}
.about__badge-num {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 700;
  line-height: 1;
}
.about__badge-label { font-size: 12px; opacity: .85; margin-top: 4px; }
.about__content .label { margin-bottom: 12px; display: block; }
.about__content .h2 { margin-bottom: 20px; }
.about__content .body-lg { color: var(--slate); margin-bottom: 16px; }
.about__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 32px 0;
}
.about__feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.about__feature-check {
  width: 24px; height: 24px;
  background: rgba(14,165,160,.12);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--teal);
  font-size: 12px;
  flex-shrink: 0;
  margin-top: 1px;
}
.about__feature-text { font-size: 14px; font-weight: 500; color: var(--text); }

/* ============================================================
   MISSION & VISION
   ============================================================ */
.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 56px;
}
.mv-card {
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
}
.mv-card--mission {
  background: var(--navy);
  color: white;
}
.mv-card--vision {
  background: linear-gradient(135deg, var(--teal) 0%, #067d79 100%);
  color: white;
}
.mv-card__label {
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  opacity: .6;
  margin-bottom: 8px;
}
.mv-card__title {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 20px;
}
.mv-card__text { font-size: 15px; line-height: 1.8; opacity: .8; }
.mv-card__deco {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 30px solid rgba(255,255,255,.06);
}

/* ============================================================
   WHY CHOOSE
   ============================================================ */
.why__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  align-items: center;
  min-width: 0;
}
.why__items { display: flex; flex-direction: column; gap: 32px; margin-top: 40px; }
.why__item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 28px;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  transition: var(--transition);
  cursor: default;
  min-width: 0;
}
.why__item:hover { box-shadow: var(--shadow-card); border-color: rgba(14,165,160,.2); transform: translateX(6px); }
.why__item > div:last-child {
  min-width: 0;
  flex: 1;
}
.why__item-num {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 700;
  color: rgba(14,165,160,.2);
  line-height: 1;
  flex-shrink: 0;
  width: 50px;
}
.why__item-title { font-size: 16px; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.why__item-desc {
  font-size: 14px;
  color: var(--slate);
  line-height: 1.65;
  overflow-wrap: anywhere;
}
.why__visual {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  min-width: 0;
  width: 100%;
}
.why__metric {
  background: var(--navy);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  text-align: center;
  min-width: 0;
  overflow: hidden;
}
.why__metric:nth-child(2) { background: var(--teal); margin-top: 24px; }
.why__metric:nth-child(3) { background: linear-gradient(135deg, #1a3a5c, var(--navy-mid)); margin-top: -24px; }
.why__metric:nth-child(4) { background: linear-gradient(135deg, var(--amber), #d97706); }
.why__metric-num {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  color: white;
  line-height: 1;
}
.why__metric-label { font-size: 12px; color: rgba(255,255,255,.65); margin-top: 8px; letter-spacing: .06em; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 640px) {
  .container { padding: 0 16px; }
  .section { padding: 64px 0; }
  .dept-grid, .services-strip, .feat-services, .news-grid, .doctors-grid { grid-template-columns: 1fr; }
  .mv-grid { grid-template-columns: 1fr; }
  .why__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .why__visual { grid-template-columns: 1fr; }
  .why__items { gap: 20px; }
  .why__item {
    gap: 14px;
    padding: 20px;
  }
  .why__item:hover { transform: none; }
  .why__item-num {
    width: 44px;
    font-size: 34px;
  }
  .why__metric {
    padding: 24px 20px;
  }
  .why__metric:nth-child(2),
  .why__metric:nth-child(3),
  .why__metric:nth-child(4) {
    margin-top: 0;
  }
  .doctor-card__img {
    height: 300px;
  }
  .doctors-grid {
    width: 100%;
  }
  .doctor-card {
    width: 100%;
    max-width: none;
  }
  .doctor-card__body {
    padding: 20px;
    width: 100%;
    box-sizing: border-box;
  }
  .doctor-card__name {
    font-size: 20px;
    overflow-wrap: anywhere;
  }
  .doctor-card__role {
    font-size: 13px;
    line-height: 1.65;
    overflow-wrap: anywhere;
  }
  .quickbar__inner { grid-template-columns: 1fr; }
  .cta-banner__inner { flex-direction: column; }
  .footer__grid { grid-template-columns: 1fr; }
  .topbar__links { display: none; }
  .topbar__inner { flex-direction: column; align-items: flex-start; }
  .topbar__right { width: 100%; justify-content: space-between; gap: 12px; }
  .hero__contact-strip { flex-direction: column; }
  .hero__inner { padding: 56px 0; gap: 24px; }
  .hero__panel { gap: 16px; }
  .hero__emergency-card,
  .hero__card { padding: 18px; }
  .hero__emergency-title { font-size: 20px; }
  .hero__emergency-sub { margin-bottom: 14px; }
  .hero__emergency-num-row { padding: 10px 12px; }
  .hero__num-value { font-size: 13px; }
  .hero__inner > div h2 { font-size: clamp(24px, 8vw, 34px) !important; }
  .nav__logo img { width: 124px; }
  .contact-hero { padding: 84px 0 64px; }
  .legal-hero { padding: 84px 0 64px; }
  .contact-hero__card,
  .legal-hero__card,
  .contact-card,
  .legal-sidebar__card,
  .legal-section-block,
  .appointment-modal__dialog { padding: 22px; }
  .contact-hero__actions,
  .contact-card__actions { flex-direction: column; }
  .contact-hero__actions .btn,
  .contact-card__actions .btn { width: 100%; justify-content: center; }
  .appointment-modal { padding: 16px; }
  .appointment-modal__dialog {
    width: 100%;
    border-radius: 20px;
    padding: 20px;
    margin: 16px auto;
  }
  .appointment-modal__title { font-size: clamp(24px, 8vw, 32px); }
  .appointment-form__input {
    padding: 13px 14px;
    font-size: 16px;
  }
  .appointment-modal .g-recaptcha { transform: scale(.86); }
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #080F1C;
  padding: 80px 0 0;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.footer__logo-text { font-family: var(--font-display); font-size: 26px; font-weight: 700; color: white; margin-bottom: 4px; }
.footer__logo-sub { font-size: 11px; color: rgba(255,255,255,.35); letter-spacing: .1em; text-transform: uppercase; }
.footer__about { font-size: 14px; color: rgba(255,255,255,.45); line-height: 1.75; margin: 20px 0; }
.footer__socials { display: flex; gap: 10px; }
.footer__social {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: rgba(255,255,255,.5);
  transition: var(--transition);
}
.footer__social:hover { background: var(--teal); border-color: var(--teal); color: white; }
.footer__col-title { font-size: 13px; font-weight: 600; color: white; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 20px; }
.footer__links { display: flex; flex-direction: column; gap: 12px; }
.footer__links a { font-size: 14px; color: rgba(255,255,255,.45); transition: color .2s; }
.footer__links a:hover { color: var(--teal-light); }
.footer__contact-items { display: flex; flex-direction: column; gap: 16px; }
.footer__contact-item { display: flex; gap: 12px; align-items: flex-start; }
.footer__contact-icon { font-size: 16px; flex-shrink: 0; margin-top: 1px; }
.footer__contact-text { font-size: 14px; color: rgba(255,255,255,.45); line-height: 1.55; }
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  font-size: 13px;
  color: rgba(255,255,255,.25);
}

.contact-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--navy) 0%, #123259 100%);
  padding: 110px 0 90px;
}
.contact-hero__bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(14,165,160,.24) 0%, transparent 35%), radial-gradient(circle at bottom left, rgba(255,255,255,.08) 0%, transparent 30%);
}
.contact-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 40px;
  align-items: center;
}
.contact-hero__eyebrow {
  display: inline-block;
  color: var(--teal-light);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.contact-hero__title { color: var(--white); margin-bottom: 18px; }
.contact-hero__text { max-width: 640px; color: rgba(255,255,255,.72); font-size: 17px; line-height: 1.8; }
.contact-hero__actions { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 30px; }
.contact-hero__card {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(18px);
  padding: 32px;
  box-shadow: 0 20px 50px rgba(0,0,0,.15);
}
.contact-hero__card-title {
  color: var(--white);
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 18px;
}
.contact-hero__card-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: rgba(255,255,255,.78);
  line-height: 1.7;
}
.contact-hero__card-item + .contact-hero__card-item { margin-top: 14px; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.contact-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-card);
}
.contact-card--action {
  background: linear-gradient(180deg, rgba(14,165,160,.07) 0%, rgba(11,31,58,.02) 100%);
}
.contact-card__eyebrow {
  display: inline-block;
  color: var(--teal);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.contact-card__title { margin-bottom: 14px; }
.contact-card__text { color: var(--slate); font-size: 15px; line-height: 1.8; }
.contact-card__actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 28px; }
.contact-list { display: grid; gap: 18px; margin-top: 28px; }
.contact-list__item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  border-radius: var(--radius-md);
  background: var(--off-white);
}
.contact-list__icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(14,165,160,.12);
  font-size: 20px;
  flex-shrink: 0;
}
.contact-list__label {
  color: var(--navy);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.contact-list__value,
.contact-list__value a { color: var(--slate); line-height: 1.7; }
.appointment-alert {
  padding: 14px 0;
  font-size: 14px;
  font-weight: 500;
}
.appointment-alert--success { background: rgba(14,165,160,.1); color: #0b6f6b; }
.appointment-alert--error { background: rgba(229,62,62,.12); color: #b42318; }
.appointment-modal {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .25s ease, visibility .25s ease;
}
.appointment-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.appointment-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8,15,28,.68);
}
.appointment-modal__dialog {
  position: relative;
  width: min(100%, 520px);
  margin: 0 auto;
  background: var(--white);
  border-radius: 24px;
  padding: 22px;
  box-shadow: 0 24px 80px rgba(0,0,0,.28);
  box-sizing: border-box;
}
.appointment-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: var(--off-white);
  color: var(--navy);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}
.appointment-modal__header { margin-bottom: 12px; }
.appointment-modal__eyebrow {
  display: inline-block;
  color: var(--teal);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.appointment-modal__title {
  font-family: var(--font-display);
  font-size: clamp(24px, 3.2vw, 34px);
  color: var(--navy);
  line-height: 1.15;
}
.appointment-modal__text { color: var(--slate); margin-top: 10px; font-size: 15px; line-height: 1.75; }
.appointment-form__group + .appointment-form__group { margin-top: 12px; }
.appointment-form__flash {
  display: none;
  margin-bottom: 12px;
  padding: 12px 14px;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 500;
}
.appointment-form__flash.is-success {
  display: block;
  background: rgba(14,165,160,.1);
  color: #0b6f6b;
}
.appointment-form__flash.is-error {
  display: block;
  background: rgba(229,62,62,.12);
  color: #b42318;
}
.appointment-form__label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}
.appointment-form__input {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 12px 14px;
  font: inherit;
  color: var(--text);
  background: var(--white);
  transition: border-color .2s ease, box-shadow .2s ease;
  box-sizing: border-box;
}
.appointment-form__input:focus {
  outline: none;
  border-color: rgba(14,165,160,.9);
  box-shadow: 0 0 0 4px rgba(14,165,160,.12);
}
.appointment-form__input--textarea {
  min-height: 72px;
  resize: vertical;
}
.appointment-form__input.is-invalid {
  border-color: rgba(229,62,62,.6);
  box-shadow: 0 0 0 4px rgba(229,62,62,.08);
}
.appointment-form__error {
  color: #b42318;
  font-size: 13px;
  margin-top: 8px;
}
.appointment-modal .g-recaptcha {
  transform: scale(.92);
  transform-origin: 0 0;
}
.appointment-form__submit { width: 100%; justify-content: center; margin-top: 16px; }

/* ============================================================
   LEGAL PAGE
   ============================================================ */
.legal-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--navy) 0%, #123259 100%);
  padding: 110px 0 90px;
}
.legal-hero__bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(14,165,160,.24) 0%, transparent 35%), radial-gradient(circle at bottom left, rgba(255,255,255,.08) 0%, transparent 30%);
}
.legal-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 40px;
  align-items: center;
}
.legal-hero__eyebrow {
  display: inline-block;
  color: var(--teal-light);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.legal-hero__title { color: var(--white); margin-bottom: 18px; }
.legal-hero__text { max-width: 680px; color: rgba(255,255,255,.72); font-size: 17px; line-height: 1.8; }
.legal-hero__card {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(18px);
  padding: 32px;
  box-shadow: 0 20px 50px rgba(0,0,0,.15);
}
.legal-hero__card-label {
  color: var(--white);
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 18px;
}
.legal-hero__list {
  margin: 0;
  padding-left: 20px;
  display: grid;
  gap: 12px;
  color: rgba(255,255,255,.78);
  line-height: 1.7;
}
.legal-page {
  padding-top: 56px;
}
.legal-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 28px;
  align-items: start;
}
.legal-sidebar {
  position: sticky;
  top: 120px;
}
.legal-sidebar__card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-card);
}
.legal-sidebar__title {
  color: var(--navy);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 18px;
}
.legal-sidebar__item + .legal-sidebar__item {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}
.legal-sidebar__item span {
  display: block;
  color: var(--teal);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.legal-sidebar__item strong,
.legal-sidebar__item strong a {
  color: var(--navy);
  line-height: 1.7;
}
.legal-content {
  display: grid;
  gap: 22px;
}
.legal-section-block {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 34px;
  box-shadow: var(--shadow-card);
}
.legal-section-block h2 { margin-bottom: 14px; }
.legal-section-block p { color: var(--slate); line-height: 1.85; }

@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; gap: 32px; padding: 64px 0; }
  .hero__panel { width: 100%; max-width: 560px; margin: 0 auto; gap: 22px; }
  .hero__contact-strip { gap: 12px; }
  .dept-grid { grid-template-columns: repeat(2, 1fr); }
  .services-strip { grid-template-columns: repeat(2, 1fr); }
  .about__inner { grid-template-columns: 1fr; }
  .why__inner { grid-template-columns: 1fr; }
  .doctors-grid { grid-template-columns: 1fr 1fr; }
  .feat-services { grid-template-columns: 1fr 1fr; }
  .news-grid { grid-template-columns: 1fr 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .quickbar__inner { grid-template-columns: 1fr 1fr; }
  .contact-hero__inner { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .legal-hero__inner { grid-template-columns: 1fr; }
  .legal-layout { grid-template-columns: 1fr; }
  .legal-sidebar { position: static; }

  .nav__toggle { display: inline-flex; }
  .nav__cta { display: none; }
  .nav__cta-mobile { display: block; width: 100%; }
  .nav__cta-mobile .btn { width: 100%; justify-content: center; }
  .nav__links {
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 0 24px;
    background: var(--white);
    border-top: 1px solid var(--border);
    box-shadow: 0 18px 40px rgba(11,31,58,.14);
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transition: max-height .35s ease, opacity .2s ease, padding .35s ease;
  }
  .nav__links a::after { display: none; }
  .nav.nav--open .nav__links {
    max-height: 70vh;
    opacity: 1;
    pointer-events: auto;
    padding: 16px 24px 20px;
  }
}

@media (max-width: 640px) {
  .contact-hero { padding: 84px 0 64px; }
  .legal-hero { padding: 84px 0 64px; }
  .doctors-grid {
    grid-template-columns: 1fr;
    width: 100%;
  }
  .doctor-card {
    width: 100%;
    max-width: none;
  }
  .doctor-card__img {
    height: 300px;
  }
  .doctor-card__body {
    width: 100%;
    box-sizing: border-box;
    padding: 20px;
  }
  .doctor-card__name {
    font-size: 20px;
    overflow-wrap: anywhere;
  }
  .doctor-card__role {
    font-size: 13px;
    line-height: 1.65;
    overflow-wrap: anywhere;
  }
  .contact-hero__card,
  .legal-hero__card,
  .contact-card,
  .legal-sidebar__card,
  .legal-section-block,
  .appointment-modal__dialog { padding: 22px; }
  .contact-hero__actions,
  .contact-card__actions { flex-direction: column; }
  .contact-hero__actions .btn,
  .contact-card__actions .btn { width: 100%; justify-content: center; }
  .appointment-modal { padding: 16px; }
  .appointment-modal__dialog {
    width: 100%;
    border-radius: 20px;
    padding: 20px;
    margin: 16px auto;
  }
  .appointment-modal__title { font-size: clamp(24px, 8vw, 32px); }
  .appointment-form__input {
    padding: 13px 14px;
    font-size: 16px;
  }
}
