/*
 * ============================================
 * CLINICA MALDIVES -STYLESHEET
 * ============================================
 * Brand colors defined as CSS custom properties.
 * Edit --navy or --coral to change the palette.
 * ============================================
 */

:root {
  --navy: #264B7D;
  --navy-dark: #1f3f68;
  --navy-light: #eef2f7;
  --coral: #DB3E4C;
  --charcoal: #111827;
  --muted: #6B7280;
  --muted-2: #4B5563;
  --border: #E5E7EB;
  --bg: #FFFFFF;
  --bg-light: #F9FAFB;
  --nav-link: #374151;

  --space-1: 8px;
  --space-2: 16px;
  --space-3: 24px;
  --space-4: 32px;
  --space-5: 48px;
  --space-6: 64px;
  --space-7: 96px;
}

/* ── RESET ─────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--bg);
  color: var(--charcoal);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; transition: all 150ms ease; }
button { font-family: inherit; cursor: pointer; border: none; transition: all 150ms ease; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

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

/* ── BUTTONS ───────────────────────────────── */
.btn {
  height: 40px;
  padding: 0 20px;
  background: var(--navy);
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  white-space: nowrap;
  gap: 8px;
  text-decoration: none;
}
.btn:hover { background: var(--navy-dark); }
.btn--large { height: 48px; padding: 0 28px; font-size: 15px; border-radius: 8px; }
.btn--outline {
  background: transparent;
  color: var(--navy);
  border: 1px solid var(--border);
}
.btn--outline:hover { border-color: var(--navy); background: var(--navy-light); }
.btn--whatsapp { background: #25D366; }
.btn--whatsapp:hover { background: #1da851; }

.link-secondary {
  font-size: 15px;
  color: var(--navy);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 500;
}
.link-secondary:hover { color: var(--navy-dark); }

/* ── HEADER ────────────────────────────────── */
.header {
  height: 88px;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}
.header-inner {
  height: 88px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo-wrap { display: flex; align-items: center; gap: 10px; }
.logo { height: 64px; width: auto; }
.logo-text {
  font-size: 18px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: -0.01em;
}

.nav { display: flex; gap: 32px; }
.nav a {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--nav-link);
  font-weight: 500;
  padding: 0;
  line-height: 1;
}
.nav a.active {
  color: var(--charcoal);
  text-decoration: underline;
  text-decoration-color: var(--coral);
  text-decoration-thickness: 2px;
  text-underline-offset: 8px;
}
.nav a:hover { color: var(--navy); }

.header-right { display: flex; align-items: center; gap: 16px; }
.header-phone {
  font-size: 14px;
  color: var(--navy);
  font-weight: 500;
}
.header-phone svg { vertical-align: middle; margin-right: 4px; }

/* Appointment dropdown */
.appointment-wrap { position: relative; }
.appointment-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 8px;
  min-width: 220px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  z-index: 200;
}
.appointment-dropdown.show { display: block; }
.appointment-dropdown a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  color: var(--charcoal);
}
.appointment-dropdown a:hover { background: var(--bg-light); }
.appointment-dropdown a svg { flex-shrink: 0; }
.dropdown-divider { height: 1px; background: var(--border); margin: 4px 0; }

/* Hamburger */
.hamburger {
  display: none;
  width: 24px;
  height: 16px;
  position: relative;
  cursor: pointer;
  background: none;
  border: none;
}
.hamburger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--charcoal);
  transition: all 200ms ease;
}
.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2) { top: 7px; }
.hamburger span:nth-child(3) { top: 14px; }
.hamburger.active span:nth-child(1) { top: 7px; transform: rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { top: 7px; transform: rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 88px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--bg);
  z-index: 99;
  padding: 24px;
  flex-direction: column;
  gap: 0;
}
.mobile-nav.show { display: flex; overflow-y: auto; }
.mobile-nav a {
  font-size: 16px;
  font-weight: 500;
  color: var(--charcoal);
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.mobile-nav a:hover { color: var(--navy); }
.mobile-nav-actions {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.mobile-nav-actions .btn { width: 100%; height: 52px; justify-content: center; color: #fff; font-size: 16px; border-bottom: none; padding: 0 24px; border-radius: 10px; }
.mobile-nav-actions .btn--outline { color: var(--navy); }

/* ── HERO ──────────────────────────────────── */
.hero { padding: 80px 0 64px; }
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
}
.eyebrow-dot {
  width: 4px;
  height: 4px;
  background: var(--coral);
  border-radius: 50%;
}
.eyebrow-text {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  font-weight: 500;
  line-height: 1;
}
h1 {
  font-size: 48px;
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--charcoal);
  margin-bottom: 24px;
}
.hero-lead {
  font-size: 17px;
  line-height: 1.7;
  color: var(--muted-2);
  margin-bottom: 32px;
  max-width: 500px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.hero-image {
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  border-radius: 12px;
}
.hero-image img { width: 100%; height: auto; object-fit: cover; }

.hero-meta {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  gap: 32px;
}
.meta-item {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  font-weight: 500;
  position: relative;
  line-height: 1;
}
.meta-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -16px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 14px;
  background: var(--border);
}

/* ── STATS / TRUST BAR ─────────────────────── */
.stats {
  background: var(--navy);
  padding: 56px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 32px;
  text-align: center;
}
.stat-number {
  font-size: 36px;
  font-weight: 600;
  color: #fff;
  line-height: 1.2;
  letter-spacing: -0.01em;
}
.stat-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 6px;
  line-height: 1.4;
}

/* ── CLIENTS ───────────────────────────────── */
.clients {
  padding: 48px 0;
  border-bottom: 1px solid var(--border);
}
.clients-header {
  text-align: center;
  margin-bottom: 32px;
}
.clients-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  font-weight: 500;
}
.clients-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.client-logo {
  height: 44px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  filter: grayscale(100%) opacity(0.45);
  transition: filter 300ms ease;
}
.client-logo:hover {
  filter: grayscale(0%) opacity(1);
}
.client-logo--invert {
  filter: grayscale(100%) opacity(0.45) invert(1);
}
.client-logo--invert:hover {
  filter: grayscale(0%) opacity(1) invert(1);
}

/* ── INSURANCE ROW ─────────────────────────── */
.insurance-row {
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
  text-align: center;
}
.insurance-row .clients-label {
  margin-bottom: 24px;
  display: block;
}
.insurance-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.insurance-logo {
  height: 40px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  filter: grayscale(100%) opacity(0.4);
  transition: filter 300ms ease;
}
.insurance-logo:hover {
  filter: grayscale(0%) opacity(1);
}

/* ── SERVICES ──────────────────────────────── */
.services { padding: 80px 0; }
.section-eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}
.section-title {
  font-size: 28px;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
  line-height: 1.25;
}
.section-subtitle {
  font-size: 16px;
  color: var(--muted);
  margin-bottom: 48px;
  max-width: 560px;
  line-height: 1.6;
}
.services-grid {
  border-top: 1px solid var(--border);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 80px;
}
.service-item {
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.service-title {
  font-size: 17px;
  color: var(--navy);
  font-weight: 600;
  line-height: 1.4;
}
.service-desc {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
}

/* ── PARTNERSHIP ───────────────────────────── */
.partnership {
  padding: 80px 0;
  background: var(--bg-light);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.partnership-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.partnership-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: var(--navy);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 4px;
  margin-bottom: 20px;
}
.partnership h2 {
  font-size: 28px;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 20px;
  line-height: 1.3;
  letter-spacing: -0.01em;
}
.partnership-text {
  font-size: 16px;
  color: var(--muted-2);
  line-height: 1.7;
  margin-bottom: 32px;
}
.partnership-benefits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--charcoal);
  line-height: 1.5;
}
.benefit-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.benefit-icon svg { width: 10px; height: 10px; }

/* ── GALLERY ───────────────────────────────── */
.gallery {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--bg-light);
}
.gallery-track {
  display: flex;
  transition: transform 400ms ease;
}
.gallery-slide {
  min-width: 100%;
  aspect-ratio: 4 / 3;
}
.gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transition: filter 400ms ease;
}
.gallery-slide img:hover {
  filter: grayscale(0%);
}
.gallery-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--charcoal);
  cursor: pointer;
  transition: all 150ms ease;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.gallery-btn:hover { background: #fff; box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15); }
.gallery-btn--prev { left: 12px; }
.gallery-btn--next { right: 12px; }
.gallery-dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 2;
}
.gallery-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: none;
  cursor: pointer;
  transition: all 200ms ease;
  padding: 0;
}
.gallery-dot.active {
  background: #fff;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

.partnership-visual--photo {
  background: var(--bg);
  border: 1px solid var(--border);
  overflow: hidden;
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.partnership-visual--photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.partnership-photo-placeholder {
  text-align: center;
  padding: 48px;
  color: var(--muted);
  font-size: 14px;
}
.partnership-photo-placeholder svg {
  margin: 0 auto 16px;
  opacity: 0.4;
}
.partnership-photo-placeholder p {
  margin-bottom: 4px;
}
.partner-logo-strip {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
  padding: 16px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.partner-logo-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  font-weight: 500;
  white-space: nowrap;
}
.partner-logo-img {
  height: 88px;
  width: auto;
  filter: grayscale(100%) opacity(0.5);
  transition: filter 300ms ease;
}
.partner-logo-img:hover {
  filter: grayscale(0%) opacity(1);
}
.partnership-since {
  font-size: 13px;
  color: var(--muted);
  margin-top: 8px;
}

/* ── DOCTORS ───────────────────────────────── */
.doctors { padding: 80px 0; }
.doctors-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.doctors-grid--3 {
  grid-template-columns: repeat(3, 1fr);
}
.doctor-card {
  border: 1px solid var(--border);
  padding: 32px;
  background: var(--bg);
}
.doctor-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--navy-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--navy);
  font-size: 20px;
  font-weight: 600;
  overflow: hidden;
}
.doctor-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.doctor-name {
  font-size: 19px;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 4px;
  line-height: 1.3;
}
.doctor-title {
  font-size: 14px;
  color: var(--navy);
  margin-bottom: 4px;
  font-weight: 500;
}
.doctor-affiliation {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 16px;
}
.doctor-bio {
  font-size: 15px;
  line-height: 1.7;
  color: var(--muted-2);
}

/* ── ABOUT ─────────────────────────────────── */
.about {
  padding: 80px 0;
  background: var(--bg-light);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.about h2 {
  font-size: 28px;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 20px;
  letter-spacing: -0.01em;
  line-height: 1.3;
}
.about-text {
  font-size: 16px;
  color: var(--muted-2);
  line-height: 1.8;
  margin-bottom: 16px;
}
.about-highlight {
  padding: 24px;
  border-left: 3px solid var(--navy);
  background: var(--bg);
  margin-top: 24px;
}
.about-highlight p {
  font-size: 15px;
  color: var(--muted-2);
  line-height: 1.7;
  font-style: italic;
}

/* ── CONTACT ───────────────────────────────── */
.contact { padding: 80px 0; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}
.contact h2 {
  font-size: 28px;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}
.contact-intro {
  font-size: 16px;
  color: var(--muted-2);
  line-height: 1.7;
  margin-bottom: 32px;
}
.contact-details { display: flex; flex-direction: column; gap: 20px; }
.contact-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.contact-icon {
  width: 40px;
  height: 40px;
  background: var(--navy-light);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-icon svg { width: 18px; height: 18px; color: var(--navy); }
.contact-item-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  font-weight: 500;
  margin-bottom: 2px;
}
.contact-item-value {
  font-size: 15px;
  color: var(--charcoal);
  line-height: 1.5;
}
.contact-item-value a { color: var(--navy); font-weight: 500; }
.contact-item-value a:hover { text-decoration: underline; }

.contact-cta {
  background: var(--bg-light);
  border: 1px solid var(--border);
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.contact-cta h3 {
  font-size: 22px;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 12px;
}
.contact-cta p {
  font-size: 15px;
  color: var(--muted-2);
  line-height: 1.6;
  margin-bottom: 24px;
}
.contact-cta-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.contact-cta-buttons .btn {
  flex: 1;
  min-width: 160px;
  justify-content: center;
  height: 48px;
  border-radius: 8px;
  font-size: 15px;
}
.contact-hours {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.contact-hours h4 {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  font-weight: 500;
  margin-bottom: 12px;
}
.hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  padding: 6px 0;
  color: var(--charcoal);
}
.hours-row span:last-child { color: var(--muted-2); }

/* ── FOOTER ────────────────────────────────── */
.footer {
  background: var(--charcoal);
  padding: 48px 0;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-left {
  display: flex;
  align-items: center;
  gap: 24px;
}
.footer-text {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}
.footer-links {
  display: flex;
  gap: 20px;
}
.footer-links a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  transition: color 150ms ease;
}
.footer-links a:hover { color: #fff; }
.footer-social {
  display: flex;
  gap: 16px;
}
.footer-social a {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 6px;
  transition: all 150ms ease;
}
.footer-social a:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
}
.footer-social svg { width: 14px; height: 14px; }

/* ── MODALS ─────────────────────────────────── */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.modal-overlay.show { display: flex; }
.modal {
  background: var(--bg);
  border-radius: 12px;
  max-width: 640px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.15);
}
.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 32px;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  background: var(--bg);
  border-radius: 12px 12px 0 0;
}
.modal-header h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--charcoal);
}
.modal-close {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--muted);
  background: none;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}
.modal-close:hover { background: var(--bg-light); color: var(--charcoal); }
.modal-body {
  padding: 32px;
}
.modal-body h4 {
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  margin: 20px 0 8px;
}
.modal-body h4:first-child { margin-top: 0; }
.modal-body p {
  font-size: 14px;
  color: var(--muted-2);
  line-height: 1.7;
  margin-bottom: 8px;
}
.modal-body a { color: var(--navy); text-decoration: underline; }

/* ── RESPONSIVE ────────────────────────────── */
@media (max-width: 1024px) {
  .nav, .header-phone { display: none; }
  .hamburger { display: block; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-right { order: -1; }
  h1 { font-size: 40px; }
  .stats-grid { grid-template-columns: repeat(3, 1fr); }
  .partnership-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .stats { padding: 40px 0; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .services, .doctors, .partnership, .about, .contact { padding: 64px 0; }
  .section-title { font-size: 24px; }
  .services-grid { grid-template-columns: 1fr; column-gap: 0; }
  .service-item { gap: 4px; }
  .service-desc { font-size: 14px; }
  .doctors-grid, .doctors-grid--3 { grid-template-columns: 1fr; gap: 24px; }
  .hero-meta { flex-wrap: wrap; row-gap: 16px; }
  .meta-item:not(:last-child)::after { display: none; }
  h1 { font-size: 34px; }
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 16px; }
  .partnership-benefits { grid-template-columns: 1fr; }
  .contact-cta-buttons { flex-direction: row; }
  .contact-cta-buttons .btn { min-width: auto; flex: 1; height: 52px; border-radius: 10px; font-size: 15px; font-weight: 600; }
}

@media (max-width: 480px) {
  h1 { font-size: 30px; line-height: 1.15; }
  .hero { padding: 48px 0 40px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .btn--large { width: 100%; }
  .link-secondary { text-align: center; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-number { font-size: 28px; }
  .contact-cta { padding: 24px; }
}
