:root {
  --primary: #307bc4;
  --primary-hover: #2569a8;
  --primary-soft: #6aaee0;
  --primary-dark: #274760;
  --heading: #183b56;
  --text: #556677;
  --muted: #7b8b99;
  --line: #d7e6f2;
  --bg: #ffffff;
  --bg-soft: #eef6fb;
  --bg-hero: #e8f4fb;
  --bg-card: #ffffff;
  --danger: #d64545;
  --success: #2a9d6a;
  --shadow: 0 12px 40px rgba(39, 71, 96, 0.08);
  --shadow-lg: 0 24px 60px rgba(48, 123, 196, 0.14);
  --radius: 20px;
  --radius-lg: 32px;
  --radius-pill: 999px;
  --container: 1200px;
  --header-h: 92px;
  --font: "Poppins", system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font-family: inherit; }
ul { list-style: none; }
.container { width: min(calc(100% - 40px), var(--container)); margin: 0 auto; }
.container-wide { width: min(calc(100% - 40px), 1280px); margin: 0 auto; }

h1, h2, h3, h4, h5 {
  color: var(--heading);
  font-weight: 700;
  line-height: 1.25;
}
h1 { font-size: clamp(2.1rem, 4.2vw, 3.5rem); }
h2 { font-size: clamp(1.7rem, 3vw, 2.5rem); }
h3 { font-size: 1.25rem; }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.section { padding: 90px 0; }
.section-sm { padding: 70px 0; }
.bg-soft { background: var(--bg-soft); }
.text-center { text-align: center; }

.eyebrow {
  display: inline-block;
  color: var(--primary);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.lead { font-size: 1.05rem; color: var(--muted); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--primary-dark);
  color: #fff;
  border: 0;
  border-radius: var(--radius-pill);
  padding: 13px 26px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: 0.25s ease;
  box-shadow: 0 10px 24px rgba(39, 71, 96, 0.18);
}
.btn:hover { background: var(--primary); transform: translateY(-1px); }
.btn-light {
  background: #fff;
  color: var(--primary-dark);
}
.btn-outline {
  background: transparent;
  color: var(--primary-dark);
  border: 1.5px solid var(--primary);
  box-shadow: none;
}
.btn svg { width: 16px; height: 16px; }

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
  height: var(--header-h);
  box-shadow: 0 1px 0 rgba(24, 59, 86, 0.06);
}
.header-inner {
  height: var(--header-h);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo img {
  width: 46px;
  height: 52px;
  object-fit: contain;
}
.logo-text {
  font-weight: 700;
  font-size: 22px;
  color: var(--heading);
  letter-spacing: -0.03em;
}
.logo-text span { color: var(--primary); }

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.nav > a,
.nav .drop > button {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  color: var(--heading);
  font-weight: 500;
  font-size: 15px;
  background: none;
  border: 0;
  cursor: pointer;
  border-radius: 10px;
}
.nav > a:hover,
.nav > a.active,
.nav .drop > button:hover { color: var(--primary); }
.drop { position: relative; }
.drop-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 200px;
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: 0.2s ease;
}
.drop:hover .drop-menu,
.drop.open .drop-menu {
  opacity: 1;
  visibility: visible;
  transform: none;
}
.drop-menu a {
  display: block;
  padding: 10px 12px;
  border-radius: 10px;
  color: var(--heading);
  font-weight: 500;
}
.drop-menu a:hover { background: var(--bg-soft); color: var(--primary); }

.header-actions { display: flex; align-items: center; gap: 8px; }
.icon-btn {
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  border-radius: 12px;
  display: grid;
  place-items: center;
  cursor: pointer;
  color: var(--heading);
}
.icon-btn:hover { background: var(--bg-soft); color: var(--primary); }
.menu-btn { display: grid; }

.hero {
  position: relative;
  background: linear-gradient(180deg, #dff0fb 0%, #eef7fc 42%, #ffffff 100%);
  overflow: hidden;
  padding: 70px 0 40px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
}
.hero h1 { margin-bottom: 18px; max-width: 620px; }
.hero p { max-width: 540px; margin-bottom: 28px; }
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(10px);
  pointer-events: none;
}
.blob-1 { width: 420px; height: 420px; background: #cfe8f8; top: -80px; right: 8%; opacity: 0.9; }
.blob-2 { width: 280px; height: 280px; background: #d9eef9; bottom: 40px; left: -60px; }
.blob-3 { width: 180px; height: 180px; background: #c5e3f6; top: 40px; left: 38%; opacity: 0.6; }

.hero-photos { position: relative; height: 460px; }
.hero-photos img {
  position: absolute;
  object-fit: cover;
  border: 7px solid #fff;
  box-shadow: var(--shadow-lg);
}
.hero-photos .p1 { width: 210px; height: 270px; border-radius: 120px; left: 30px; top: 70px; object-position: top; }
.hero-photos .p2 { width: 180px; height: 230px; border-radius: 110px; left: 170px; top: 0; object-position: top; }
.hero-photos .p3 { width: 230px; height: 310px; border-radius: 140px; right: 10px; top: 90px; object-position: top; }

.info-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: -10px;
  position: relative;
  z-index: 2;
  padding-bottom: 30px;
}
.info-card {
  background: #fff;
  border-radius: 18px;
  padding: 22px 24px;
  display: flex;
  gap: 16px;
  align-items: center;
  box-shadow: var(--shadow);
}
.info-card .ico {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: #e8f3fb;
  color: var(--primary);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.info-card h4 { font-size: 16px; margin-bottom: 2px; }
.info-card p { font-size: 14px; color: var(--muted); margin: 0; }

.section-head { margin-bottom: 40px; }
.section-head.center { text-align: center; }
.section-head.center p { max-width: 640px; margin: 10px auto 0; color: var(--muted); }

.values-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 22px;
}
.value-card { grid-column: span 2; }
.value-card:nth-child(4) { grid-column: 2 / 4; }
.value-card:nth-child(5) { grid-column: 4 / 6; }
.value-card {
  background: #fff;
  border-radius: 22px;
  padding: 32px 28px;
  box-shadow: var(--shadow);
  text-align: center;
}
.value-card .ico {
  width: 62px;
  height: 62px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: #eaf4fb;
  color: var(--primary);
  display: grid;
  place-items: center;
}
.value-card h3 { margin-bottom: 10px; }
.value-card p { color: var(--muted); font-size: 14.5px; }

.about-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 60px;
  align-items: center;
}
.about-photos { position: relative; min-height: 430px; }
.about-photos img {
  border-radius: 28px;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}
.about-photos .a1 { width: 72%; height: 340px; }
.about-photos .a2 {
  width: 48%;
  height: 230px;
  position: absolute;
  right: 0;
  bottom: 0;
  border: 8px solid #fff;
}
.about-copy h2 { margin-bottom: 16px; }
.about-copy p { margin-bottom: 14px; }
.checks { margin: 18px 0 26px; }
.checks li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 10px;
  color: var(--heading);
  font-weight: 500;
}
.checks svg { color: var(--primary); flex-shrink: 0; margin-top: 4px; }

.dept-strip {
  background: linear-gradient(90deg, #d7eefb, #eaf6fc 40%, #d7eefb);
  padding: 28px 0;
}
.dept-icons {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
  text-align: center;
}
.dept-icons div { color: var(--primary); font-weight: 600; font-size: 13px; }
.dept-icons svg { margin: 0 auto 8px; color: var(--primary-dark); }

.dept-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.dept-card {
  background: linear-gradient(180deg, #3b8fd4 0%, #2f7ec4 100%);
  color: #fff;
  border-radius: 22px;
  padding: 28px 24px 24px;
  min-height: 210px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 16px 30px rgba(48, 123, 196, 0.25);
}
.dept-card h3 { color: #fff; margin: 12px 0 8px; }
.dept-card p { color: rgba(255,255,255,0.88); font-size: 14px; flex: 1; }
.dept-card .ico {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(255,255,255,0.16);
  display: grid;
  place-items: center;
}
.dept-card a { color: #fff; font-weight: 600; font-size: 14px; }

.awards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.award-card {
  background: #fff;
  border-radius: 18px;
  padding: 24px 18px;
  text-align: center;
  box-shadow: var(--shadow);
}
.award-card .medal {
  width: 54px;
  height: 54px;
  margin: 0 auto 12px;
  border-radius: 50%;
  background: #eaf4fb;
  color: var(--primary);
  display: grid;
  place-items: center;
}
.award-card h4 { font-size: 15px; margin-bottom: 8px; }
.award-card p { font-size: 13px; color: var(--muted); }

.reviews-wrap {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  align-items: center;
}
.review-avatars { display: flex; flex-direction: column; gap: 16px; }
.review-avatars button {
  display: flex;
  gap: 12px;
  align-items: center;
  background: #fff;
  border: 0;
  border-radius: 16px;
  padding: 12px;
  text-align: left;
  cursor: pointer;
  box-shadow: var(--shadow);
  color: var(--heading);
}
.review-avatars button.active { outline: 2px solid var(--primary); }
.review-avatars img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; }
.review-avatars small { display: block; color: var(--muted); font-weight: 400; }
.review-quote {
  background: #fff;
  border-radius: 24px;
  padding: 36px;
  box-shadow: var(--shadow);
  font-size: 1.15rem;
  color: var(--heading);
}

.cta-banner {
  background: linear-gradient(90deg, #d6eefb, #eaf6fc);
  border-radius: 36px;
  padding: 40px 50px 70px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: end;
  position: relative;
  overflow: hidden;
}
.cta-banner h2 { max-width: 460px; margin-bottom: 12px; }
.cta-banner p { max-width: 420px; margin-bottom: 22px; }
.cta-banner img {
  width: 320px;
  justify-self: end;
  object-fit: contain;
  max-height: 340px;
  object-position: bottom;
  filter: drop-shadow(0 18px 24px rgba(39,71,96,0.18));
}
.shield-overlap {
  position: absolute;
  left: 50%;
  bottom: -58px;
  transform: translateX(-50%);
  width: 116px;
  height: 128px;
  background: linear-gradient(180deg, #d7eefb, #b9dff4);
  clip-path: polygon(50% 0, 100% 18%, 100% 68%, 50% 100%, 0 68%, 0 18%);
  display: grid;
  place-items: center;
  box-shadow: 0 12px 24px rgba(48,123,196,0.18);
  z-index: 3;
}
.shield-overlap img { width: 54px; height: 60px; object-fit: contain; }

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.blog-card {
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: 0.25s ease;
}
.blog-card:hover { transform: translateY(-4px); }
.blog-card img { width: 100%; height: 210px; object-fit: cover; }
.blog-card .body { padding: 22px; }
.blog-card .meta { color: var(--primary); font-size: 13px; font-weight: 600; margin-bottom: 8px; }
.blog-card h3 { font-size: 18px; margin-bottom: 10px; }
.blog-card p { color: var(--muted); font-size: 14px; }

.appoint-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}
.form-card { background: transparent; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 16px; }
.field label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--heading);
  margin-bottom: 6px;
}
.field input,
.field textarea,
.field select {
  width: 100%;
  border: 1.5px solid #d5e4ef;
  border-radius: 40px;
  padding: 13px 18px;
  outline: none;
  color: var(--heading);
  background: #fff;
  transition: 0.2s ease;
}
.field textarea { border-radius: 22px; min-height: 140px; resize: vertical; }
.field input:focus,
.field textarea:focus,
.field select:focus { border-color: var(--primary); box-shadow: 0 0 0 4px rgba(48,123,196,0.12); }
.field .error { display: none; color: var(--danger); font-size: 12px; margin-top: 6px; padding-left: 8px; }
.field.invalid input,
.field.invalid textarea,
.field.invalid select { border-color: var(--danger); }
.field.invalid .error { display: block; }
.radios { display: flex; flex-wrap: wrap; gap: 10px 18px; }
.radios label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  color: var(--text);
  cursor: pointer;
}
.appoint-photo img {
  width: 100%;
  max-height: 520px;
  object-fit: contain;
  object-position: bottom;
}

.faq-list { max-width: 860px; margin: 0 auto; }
.faq-item {
  background: #fff;
  border-radius: 16px;
  margin-bottom: 12px;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.faq-item button {
  width: 100%;
  background: none;
  border: 0;
  text-align: left;
  padding: 18px 22px;
  font-weight: 600;
  color: var(--heading);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-size: 16px;
}
.faq-item .faq-body {
  display: none;
  padding: 0 22px 18px;
  color: var(--muted);
}
.faq-item.open .faq-body { display: block; }
.faq-item .chev { transition: 0.2s; }
.faq-item.open .chev { transform: rotate(180deg); }

.partners {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px 48px;
  opacity: 0.75;
}
.partner {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--primary-dark);
  font-weight: 700;
  font-size: 18px;
}

.footer {
  background: linear-gradient(180deg, #e7f4fb 0%, #d7eef8 100%);
  padding: 90px 0 0;
  margin-top: 70px;
  position: relative;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.8fr 1.2fr;
  gap: 30px;
  padding-bottom: 40px;
}
.footer h4 { margin-bottom: 16px; font-size: 18px; }
.footer p, .footer a { color: var(--text); }
.footer-links a { display: block; margin-bottom: 10px; }
.footer-links a:hover { color: var(--primary); }
.footer-brand p { max-width: 280px; }
.subscribe-mini { display: flex; gap: 8px; margin-top: 12px; }
.subscribe-mini input {
  flex: 1;
  border: 0;
  border-radius: var(--radius-pill);
  padding: 12px 16px;
  outline: none;
}
.subscribe-mini .btn { padding: 12px 18px; }
.legal-links { display: flex; flex-wrap: wrap; gap: 10px 14px; margin-top: 16px; font-size: 13px; }
.legal-links a { color: var(--primary-dark); font-weight: 600; }
.footer-bottom {
  background: var(--primary);
  color: #fff;
  padding: 16px 0;
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  color: #fff;
}
.socials { display: flex; gap: 10px; }
.socials a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,0.16);
  display: grid;
  place-items: center;
  color: #fff;
}
.socials a:hover { background: #fff; color: var(--primary); }

.page-hero {
  background: linear-gradient(180deg, #dff0fb 0%, #f7fbfe 100%);
  padding: 70px 0 50px;
  position: relative;
  overflow: hidden;
}
.page-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 30px;
  align-items: center;
}
.page-hero h1 { margin-bottom: 12px; }
.page-hero .crumb { font-size: 14px; color: var(--muted); margin-bottom: 10px; }
.page-hero .crumb a { color: var(--primary); }
.page-hero img {
  width: min(420px, 100%);
  margin-left: auto;
  object-fit: contain;
  filter: drop-shadow(0 18px 30px rgba(39,71,96,0.16));
}
.float-card {
  background: #fff;
  border-radius: 16px;
  padding: 12px 14px;
  box-shadow: var(--shadow);
  display: flex;
  gap: 10px;
  align-items: center;
  position: absolute;
}
.float-card img { width: 42px; height: 42px; border-radius: 10px; object-fit: cover; filter: none; }
.float-card strong { display: block; font-size: 13px; color: var(--heading); }
.float-card span { font-size: 12px; color: var(--muted); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.service-card {
  background: #fff;
  border-radius: 22px;
  padding: 28px;
  box-shadow: var(--shadow);
}
.service-card .ico {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: #eaf4fb;
  color: var(--primary);
  display: grid;
  place-items: center;
  margin-bottom: 14px;
}
.choose-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.choose-list { display: grid; gap: 18px; }
.choose-item h3 { margin-bottom: 6px; }
.stats {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  background: linear-gradient(90deg, #2f7ec4, #4aa0dc);
  color: #fff;
  border-radius: 28px;
  padding: 28px 18px;
  text-align: center;
}
.stats strong { display: block; font-size: 28px; }
.stats span { font-size: 13px; opacity: 0.92; }

.experts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.expert-card { text-align: center; }
.expert-card img {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 14px;
  border: 8px solid #fff;
  box-shadow: var(--shadow);
}
.gallery {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  grid-template-rows: 220px 220px;
  gap: 14px;
}
.gallery img { width: 100%; height: 100%; object-fit: cover; border-radius: 18px; }
.gallery img:first-child { grid-row: span 2; }

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}
.filters button {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: var(--radius-pill);
  padding: 8px 16px;
  cursor: pointer;
  color: var(--heading);
  font-weight: 500;
}
.filters button.active { background: var(--primary); color: #fff; border-color: var(--primary); }
.doctors-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.doctor-card {
  background: #fff;
  border-radius: 24px;
  padding: 18px 18px 22px;
  box-shadow: var(--shadow);
  text-align: center;
}
.doctor-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  object-position: top;
  border-radius: 18px;
  margin-bottom: 14px;
}
.doctor-card .tag {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  border-radius: var(--radius-pill);
  font-size: 12px;
  padding: 4px 10px;
  margin-bottom: 8px;
}
.doctor-card h3 { margin-bottom: 6px; }
.doctor-card p { font-size: 14px; color: var(--muted); }
.doc-social { display: flex; justify-content: center; gap: 8px; margin-top: 12px; }
.doc-social a {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #eaf4fb;
  color: var(--primary);
  display: grid;
  place-items: center;
}

.blog-layout { display: grid; grid-template-columns: 1fr 320px; gap: 36px; }
.article img.cover { width: 100%; height: 380px; object-fit: cover; border-radius: 24px; margin-bottom: 24px; }
.article h1 { margin-bottom: 12px; }
.article .meta { color: var(--muted); margin-bottom: 22px; font-size: 14px; }
.article h2, .article h3 { margin: 28px 0 12px; }
.article p { margin-bottom: 14px; }
.article ul, .article ol { margin: 0 0 16px 22px; }
.article li { margin-bottom: 8px; list-style: disc; }
.sidebar { display: flex; flex-direction: column; gap: 22px; }
.side-card { background: #fff; border-radius: 20px; padding: 22px; box-shadow: var(--shadow); }
.side-card h4 { margin-bottom: 14px; }
.side-post { display: flex; gap: 12px; margin-bottom: 14px; }
.side-post img { width: 74px; height: 64px; object-fit: cover; border-radius: 10px; }
.side-post strong { display: block; font-size: 14px; color: var(--heading); }
.comment { display: flex; gap: 12px; margin-bottom: 18px; }
.comment img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; }
.related { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 40px; }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.price-card {
  background: #2f7ec4;
  color: #fff;
  border-radius: 24px;
  padding: 28px 24px;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.price-card.alt { background: #3b8fd4; }
.price-card h3 { color: #fff; margin-bottom: 8px; }
.price-card .amount { font-size: 40px; font-weight: 700; margin: 10px 0 16px; }
.price-card .amount small { font-size: 16px; font-weight: 500; }
.price-card ul { margin-bottom: 22px; }
.price-card li { margin-bottom: 8px; display: flex; gap: 8px; }
.price-card .popular {
  position: absolute;
  top: 16px;
  right: 16px;
  background: #fff;
  color: var(--primary);
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
}
.faq-split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}
.faq-photos { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.faq-photos img { border-radius: 18px; height: 180px; width: 100%; object-fit: cover; }

.contact-wrap {
  background: #fff;
  border-radius: 28px;
  box-shadow: var(--shadow-lg);
  padding: 40px;
  margin-top: -40px;
  position: relative;
  z-index: 2;
}
.contact-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 40px;
}
.contact-info .box {
  background: #eaf4fb;
  border-radius: 18px;
  padding: 22px;
  display: flex;
  gap: 12px;
  align-items: center;
}
.contact-info h4 { margin-bottom: 4px; }

.legal { max-width: 900px; margin: 0 auto; }
.legal h2 { margin: 32px 0 12px; font-size: 1.4rem; }
.legal h3 { margin: 22px 0 10px; font-size: 1.1rem; }
.legal p, .legal li { color: var(--text); }
.legal ul, .legal ol { margin: 0 0 16px 22px; }
.legal li { list-style: disc; margin-bottom: 8px; }

.subscribe-box {
  max-width: 640px;
  margin: 0 auto;
  background: #fff;
  border-radius: 28px;
  padding: 40px;
  box-shadow: var(--shadow-lg);
}

.toast {
  position: fixed;
  inset: 0;
  background: rgba(24, 59, 86, 0.45);
  display: none;
  place-items: center;
  z-index: 2000;
  padding: 20px;
}
.toast.show { display: grid; }
.toast-card {
  background: #fff;
  border-radius: 24px;
  padding: 36px 28px;
  max-width: 460px;
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.toast-card .ok {
  width: 64px;
  height: 64px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: #e7f8ef;
  color: var(--success);
  display: grid;
  place-items: center;
}
.search-modal {
  position: fixed;
  inset: 0;
  background: rgba(24, 59, 86, 0.5);
  display: none;
  place-items: center;
  z-index: 2000;
}
.search-modal.show { display: grid; }
.search-modal form {
  width: min(560px, calc(100% - 32px));
  background: #fff;
  border-radius: 20px;
  padding: 22px;
  display: flex;
  gap: 10px;
}
.drawer {
  position: fixed;
  inset: 0 0 0 auto;
  width: min(360px, 92vw);
  background: #fff;
  z-index: 1500;
  transform: translateX(100%);
  transition: 0.28s ease;
  box-shadow: var(--shadow-lg);
  padding: 28px 22px;
  overflow: auto;
}
.drawer.open { transform: none; }
.drawer a, .drawer button {
  display: block;
  width: 100%;
  text-align: left;
  padding: 12px 8px;
  border: 0;
  background: none;
  color: var(--heading);
  font-weight: 600;
  cursor: pointer;
  font-size: 16px;
}
.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(24,59,86,.4);
  z-index: 1400;
  display: none;
}
.drawer-backdrop.show { display: block; }

.pagination { display: flex; justify-content: center; gap: 8px; margin-top: 36px; }
.pagination a, .pagination span {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: #fff;
  box-shadow: var(--shadow);
  color: var(--heading);
  font-weight: 600;
}
.pagination .current { background: var(--primary); color: #fff; }

@media (max-width: 1100px) {
  .hero-grid, .about-grid, .appoint-grid, .page-hero-grid, .choose-grid, .faq-split, .blog-layout, .reviews-wrap {
    grid-template-columns: 1fr;
  }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .awards-grid, .stats { grid-template-columns: repeat(2, 1fr); }
  .gallery { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .hero-photos { height: 380px; margin: 0 auto; width: min(100%, 520px); }
}
@media (max-width: 980px) {
  .nav { display: none; }
  .nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: #fff;
    padding: 16px;
    box-shadow: var(--shadow);
    align-items: stretch;
  }
  .drop-menu { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; }
  .menu-btn { display: grid; }
  .info-row, .values-grid, .dept-grid, .blog-grid, .doctors-grid, .services-grid, .experts, .pricing-grid, .dept-icons, .contact-info, .related {
    grid-template-columns: 1fr;
  }
  .value-card,
  .value-card:nth-child(4),
  .value-card:nth-child(5) { grid-column: auto; }
  .form-row { grid-template-columns: 1fr; }
  .cta-banner { grid-template-columns: 1fr; padding: 32px 24px 80px; }
  .cta-banner img { justify-self: center; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom .container { flex-direction: column; text-align: center; }
  .hero-photos .p1, .hero-photos .p2, .hero-photos .p3 { width: 150px; height: 200px; }
}
@media (max-width: 560px) {
  .values-grid .value-card:nth-child(4) { grid-column: auto; }
  .stats { grid-template-columns: 1fr 1fr; }
}
