:root {
  --teal: #1a9e8f;
  --teal-dark: #137b70;
  --teal-light: #e8f7f5;
  --dark: #0e1b22;
  --dark2: #1a2c36;
  --text: #1a1a1a;
  --muted: #6b7c84;
  --border: #e4e9eb;
  --bg-light: #f7f9fa;
  --white: #fff;
  --serif: 'DM Serif Display', Georgia, serif;
  --sans: 'DM Sans', system-ui, sans-serif;
  --nav-h: 68px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--sans); color: var(--text); background: var(--white); overflow-x: hidden; }

img { display: block; max-width: 100%; }
svg { display: inline-block; vertical-align: middle; flex-shrink: 0; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: var(--sans); cursor: pointer; border: none; background: none; }

/* ─── UTILITY ─── */
.container { width: 100%; max-width: 1240px; margin: 0 auto; padding: 0 24px; }
.teal { color: var(--teal); }
.section-eyebrow {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--teal); font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  margin-bottom: 12px;
}
.section-eyebrow::before { content: ''; width: 20px; height: 2px; background: var(--teal); }
.section-title { font-family: var(--serif); font-size: clamp(28px, 4vw, 42px); line-height: 1.1; color: var(--text); }
.section-title-center { text-align: center; }
.section-desc { font-size: 15px; color: var(--muted); line-height: 1.75; }
.section-desc-center { text-align: center; max-width: 560px; margin: 0 auto; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--text); color: var(--white);
  padding: 13px 26px; font-size: 13px; font-weight: 600; letter-spacing: .5px; text-transform: uppercase;
  transition: background .2s;
}
.btn-primary:hover { background: var(--teal); }
.btn-teal {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--teal); color: var(--white);
  padding: 13px 26px; font-size: 13px; font-weight: 600; letter-spacing: .5px; text-transform: uppercase;
  transition: background .2s;
}
.btn-teal:hover { background: var(--teal-dark); }

/* ─── TOP BAR ─── */
.top-bar {
  background: var(--dark); color: #8a9eaa;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 24px; height: 38px; font-size: 12px; gap: 12px;
}
.top-bar-left { display: flex; align-items: center; gap: 20px; }
.top-bar-left a { color: #8a9eaa; display: flex; align-items: center; gap: 5px; transition: color .15s; }
.top-bar-left a:hover { color: var(--teal); }
.top-bar-right { display: flex; align-items: center; gap: 10px; }
.social-icon { width: 26px; height: 26px; border: 1px solid rgba(255,255,255,.1); display: flex; align-items: center; justify-content: center; color: #8a9eaa; transition: all .2s; }
.social-icon:hover { border-color: var(--teal); color: var(--teal); }
.top-bar-cta { background: var(--teal); color: #fff; padding: 0 14px; height: 38px; display: flex; align-items: center; font-size: 11px; font-weight: 700; letter-spacing: .8px; text-transform: uppercase; transition: background .2s; }
.top-bar-cta:hover { background: var(--teal-dark); }
@media (max-width: 768px) { .top-bar-left .hide-sm { display: none; } }
@media (max-width: 480px) { .top-bar { justify-content: center; } .top-bar-right { display: none; } }

/* ─── NAV ─── */
nav {
  background: var(--white); border-bottom: 1px solid var(--border);
  position: sticky; top: 0; z-index: 1000;
  height: var(--nav-h); display: flex; align-items: center;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; width: 100%; gap: 16px; }
.nav-logo { font-family: var(--serif); font-size: 28px; color: var(--dark); letter-spacing: -1px; flex-shrink: 0; }
.nav-logo span { color: var(--teal); }
.nav-links { display: flex; gap: 0; }
.nav-links li a {
  display: block; padding: 0 18px; height: var(--nav-h); line-height: var(--nav-h);
  font-size: 14px; font-weight: 500; color: #444;
  border-bottom: 2px solid transparent; transition: all .15s;
}
.nav-links li a:hover { color: var(--teal); border-bottom-color: var(--teal); }
.nav-cta { background: var(--dark); color: var(--white); padding: 10px 20px; font-size: 12px; font-weight: 700; letter-spacing: .7px; text-transform: uppercase; transition: background .2s; flex-shrink: 0; }
.nav-cta:hover { background: var(--teal); }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 6px; cursor: pointer; }
.hamburger span { width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: all .3s; display: block; }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-menu {
  display: none; flex-direction: column; background: var(--white);
  border-top: 1px solid var(--border); padding: 16px 0;
  position: fixed; top: var(--nav-h); left: 0; right: 0;
  box-shadow: 0 8px 24px rgba(0,0,0,.1); z-index: 999;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { padding: 14px 24px; font-size: 15px; font-weight: 500; color: var(--text); border-bottom: 1px solid var(--border); }
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover { color: var(--teal); background: var(--teal-light); }
.mobile-menu-cta { margin: 12px 24px 0; }

@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
}

/* ─── HERO ─── */
.hero {
  background: var(--dark);
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: clamp(480px, 70vh, 620px);
  overflow: hidden;
}
.hero-left {
  padding: clamp(40px, 6vw, 80px);
  display: flex; flex-direction: column; justify-content: center;
  position: relative; z-index: 2;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(26,158,143,.15); border: 1px solid rgba(26,158,143,.3);
  color: var(--teal); font-size: 10px; font-weight: 700; letter-spacing: 2px;
  padding: 6px 14px; text-transform: uppercase; margin-bottom: 24px; width: fit-content;
}
.hero h1 {
  font-family: var(--serif); font-size: clamp(44px, 6vw, 80px);
  line-height: .95; color: var(--white); margin-bottom: 24px;
}
.hero h1 em { font-style: italic; color: var(--teal); display: block; }
.hero-desc { color: #8aa5b2; font-size: clamp(14px, 1.5vw, 16px); line-height: 1.7; max-width: 420px; margin-bottom: 32px; }
.hero-emergency { margin-top: 18px; display: flex; align-items: center; gap: 6px; color: #4d6e7c; font-size: 12px; }
.hero-emergency svg { color: var(--teal); }
.hero-right { position: relative; overflow: hidden; }
.hero-right img { width: 100%; height: 100%; object-fit: cover; opacity: .85; }
.hero-badge-overlay {
  position: absolute; top: 16px; right: 16px;
  background: rgba(255,255,255,.1); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.2); color: var(--white);
  font-size: 10px; font-weight: 700; letter-spacing: 2px; padding: 7px 12px; text-transform: uppercase;
}
.hero-tag-overlay {
  position: absolute; bottom: 16px; left: 16px;
  background: rgba(26,158,143,.9);
  color: var(--white); font-size: 10px; font-weight: 700;
  letter-spacing: 2px; padding: 8px 14px; text-transform: uppercase;
}

@media (max-width: 768px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-right { height: 250px; }
  .hero-left { padding: 40px 24px 32px; }
}
@media (max-width: 480px) {
  .hero-right { height: 200px; }
}

/* ─── STATS STRIP ─── */
.stats-strip { background: var(--teal); padding: 28px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; }
.stat-item { text-align: center; padding: 12px 16px; border-right: 1px solid rgba(255,255,255,.2); }
.stat-item:last-child { border-right: none; }
.stat-num { font-family: var(--serif); font-size: clamp(28px, 4vw, 40px); color: var(--white); line-height: 1; margin-bottom: 4px; }
.stat-label { font-size: 11px; color: rgba(255,255,255,.75); letter-spacing: 1px; text-transform: uppercase; }
@media (max-width: 640px) { .stats-grid { grid-template-columns: repeat(2,1fr); } .stat-item:nth-child(2) { border-right: none; } .stat-item:nth-child(3), .stat-item:nth-child(4) { border-top: 1px solid rgba(255,255,255,.2); } }
@media (max-width: 360px) { .stats-grid { grid-template-columns: 1fr 1fr; } }

/* ─── EXCELLENCE SECTION ─── */
.excellence { background: var(--bg-light); padding: clamp(48px, 7vw, 90px) 0 0; }
.excellence-head { text-align: center; margin-bottom: 48px; }
.excellence-head .section-eyebrow { justify-content: center; }
.excellence-head .section-title { margin-bottom: 14px; }
.excellence-head .section-desc { margin-top: 12px; }

.excellence-grid { display: grid; grid-template-columns: 1fr 1fr 340px; gap: 0; align-items: stretch; }
.service-cards { display: grid; grid-template-columns: 1fr 1fr; grid-column: span 2; }
.service-card {
  background: var(--white); border: 1px solid var(--border);
  border-right: none; border-bottom: none;
  padding: clamp(22px, 3vw, 36px) clamp(18px, 2.5vw, 30px);
  transition: all .2s;
}
.service-card:nth-child(even) { border-right: 1px solid var(--border); }
.service-card:nth-child(3), .service-card:nth-child(4) { border-bottom: 1px solid var(--border); }
.service-card:hover { background: #fafcfc; transform: translateY(-1px); box-shadow: 0 4px 16px rgba(0,0,0,.04); }
.svc-icon { width: 48px; height: 48px; background: var(--teal-light); border: 1px solid #c6e8e4; display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.svc-icon svg { color: var(--teal); }
.service-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 10px; }
.service-card p { font-size: 13px; color: var(--muted); line-height: 1.7; }

.patient-panel { background: var(--dark); color: var(--white); padding: 36px 28px; display: flex; flex-direction: column; }
.pp-title { font-size: 18px; font-weight: 700; margin-bottom: 6px; display: flex; align-items: center; gap: 8px; }
.pp-title svg { color: var(--teal); }
.pp-desc { font-size: 13px; color: #7a9aaa; line-height: 1.65; margin-bottom: 20px; }
.pp-feat { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 14px; }
.pp-feat-icon { width: 36px; height: 36px; background: rgba(26,158,143,.15); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.pp-feat-icon svg { color: var(--teal); }
.pp-feat-body p { font-size: 13px; font-weight: 500; color: #d8e4ec; margin-bottom: 2px; }
.pp-feat-body small { font-size: 12px; color: #5a7888; }
.pp-specs-label { font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: #3d5e6e; margin: 18px 0 12px; border-top: 1px solid rgba(255,255,255,.08); padding-top: 18px; }
.spec-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 20px; }
.spec-item { display: flex; align-items: center; gap: 7px; font-size: 12px; color: #8aaabb; }
.spec-item svg { color: var(--teal); }
.btn-explore { display: flex; align-items: center; justify-content: space-between; background: var(--white); color: var(--text); padding: 13px 16px; font-size: 13px; font-weight: 700; transition: all .2s; margin-top: auto; }
.btn-explore:hover { background: var(--teal); color: var(--white); }

@media (max-width: 1024px) {
  .excellence-grid { grid-template-columns: 1fr 1fr; }
  .service-cards { grid-column: span 2; }
  .patient-panel { grid-column: span 2; flex-direction: row; flex-wrap: wrap; gap: 24px; }
  .patient-panel .pp-feat { flex: 1 1 200px; }
}
@media (max-width: 640px) {
  .excellence-grid { grid-template-columns: 1fr; }
  .service-cards { grid-template-columns: 1fr; grid-column: span 1; }
  .service-card:nth-child(even) { border-right: none; }
  .service-card:nth-child(1), .service-card:nth-child(2) { border-bottom: none; }
  .service-card:nth-child(3), .service-card:nth-child(4) { border-bottom: 1px solid var(--border); }
  .patient-panel { grid-column: span 1; }
}

/* ─── EMERGENCY BANNER ─── */
.emergency-banner {
  background: var(--teal-light); border-top: 1px solid #c6e8e4; border-bottom: 1px solid #c6e8e4;
  padding: clamp(24px, 4vw, 36px) 0;
}
.emergency-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.emergency-inner h3 { font-family: var(--serif); font-size: clamp(20px, 3vw, 28px); }
@media (max-width: 560px) { .emergency-inner { flex-direction: column; text-align: center; } }

/* ─── EXPERTISE SECTION ─── */
.expertise { padding: clamp(48px, 7vw, 90px) 0; }
.expertise-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 0; min-height: 520px; }
.expertise-left { padding: clamp(40px, 5vw, 70px) clamp(24px, 5vw, 60px) clamp(40px, 5vw, 70px) 0; display: flex; flex-direction: column; }
.expertise-left .section-title { margin-bottom: 14px; }
.expertise-left > p { font-size: 14px; color: var(--muted); line-height: 1.75; margin-bottom: 28px; }
.accordion-item { border-bottom: 1px solid var(--border); }
.accordion-header { display: flex; align-items: center; justify-content: space-between; padding: 16px 0; cursor: pointer; font-size: 15px; font-weight: 600; color: var(--text); }
.accordion-header svg { color: #bbb; transition: transform .25s; }
.accordion-header.active svg { transform: rotate(180deg); color: var(--teal); }
.accordion-body { padding: 0 0 16px; font-size: 13px; color: var(--muted); line-height: 1.7; display: none; }
.accordion-body.open { display: block; }
.premium-box { background: var(--bg-light); border: 1px solid var(--border); padding: 24px; margin-top: 28px; }
.premium-box h4 { font-size: 14px; font-weight: 700; margin-bottom: 16px; }
.ps-item { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.ps-icon { width: 34px; height: 34px; background: var(--white); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.ps-icon svg { color: var(--teal); }
.ps-item p { font-size: 13px; color: #444; }
.btn-appointment { display: flex; align-items: center; justify-content: center; gap: 8px; background: var(--text); color: var(--white); padding: 13px; font-size: 13px; font-weight: 600; letter-spacing: .3px; margin-top: 16px; transition: background .2s; }
.btn-appointment:hover { background: var(--teal); }
.expertise-right { position: relative; overflow: hidden; }
.expertise-right img { width: 100%; height: 100%; object-fit: cover; }

@media (max-width: 900px) {
  .expertise-inner { grid-template-columns: 1fr; }
  .expertise-left { padding: 40px 0 28px; }
  .expertise-right { height: 320px; }
}

/* ─── DOCTORS ─── */
.doctors { background: var(--bg-light); padding: clamp(48px, 7vw, 80px) 0; }
.doctors-head { margin-bottom: 36px; }
.doctors-head .section-title { margin-bottom: 0; }
.doctor-row {
  background: var(--white); border: 1px solid var(--border);
  display: grid; grid-template-columns: auto 1fr auto auto;
  align-items: center; padding: 20px 24px; gap: 20px;
  margin-bottom: 8px; transition: border-color .2s;
}
.doctor-row:hover { border-color: var(--teal); }
.doc-name h3 { font-size: 16px; font-weight: 700; margin-bottom: 5px; }
.badge { display: inline-flex; align-items: center; gap: 5px; font-size: 11px; font-weight: 600; padding: 3px 10px; border-radius: 20px; }
.badge::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: currentColor; }
.badge.available { background: #e8f7f4; color: var(--teal); }
.badge.oncall { background: #fff5eb; color: #e08a2f; }
.doc-meta { text-align: center; }
.doc-meta-label { font-size: 10px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: #bbb; margin-bottom: 4px; }
.doc-meta-val { font-size: 16px; font-weight: 700; color: var(--text); }
.btn-view-all { display: block; text-align: center; background: var(--text); color: var(--white); padding: 16px; font-size: 13px; font-weight: 700; letter-spacing: .8px; text-transform: uppercase; margin-top: 14px; transition: background .2s; }
.btn-view-all:hover { background: var(--teal); }

@media (max-width: 640px) {
  .doctor-row { grid-template-columns: auto 1fr; gap: 14px; }
  .doc-meta { display: none; }
}

/* ─── GALLERY ─── */
.gallery-section { padding: clamp(48px, 7vw, 80px) 0; }
.gallery-head { text-align: center; margin-bottom: 40px; }
.gallery-head .section-eyebrow { justify-content: center; }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.gallery-item { height: 220px; overflow: hidden; background: #ccd8dc; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.gallery-item:hover img { transform: scale(1.05); }
@media (max-width: 768px) { .gallery-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .gallery-grid { grid-template-columns: 1fr; } .gallery-item { height: 200px; } }

/* ─── MISSION ─── */
.mission { padding: clamp(48px, 7vw, 80px) 0; border-top: 1px solid var(--border); }
.mission-inner { display: grid; grid-template-columns: 3px 1fr; gap: 48px; align-items: start; }
.mission-bar { background: var(--teal); height: 100%; min-height: 160px; }
.mission-content .section-title { margin-bottom: 18px; }
.mission-content p { font-size: 15px; color: var(--muted); line-height: 1.8; margin-bottom: 14px; }
@media (max-width: 640px) { .mission-inner { gap: 24px; } }

/* ─── DEPARTMENTS ─── */
.departments { background: var(--bg-light); padding: clamp(48px, 7vw, 80px) 0; }
.dept-head { margin-bottom: 32px; }
.dept-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; }
.dept-card { background: var(--white); border: 1px solid var(--border); padding: clamp(24px, 3vw, 36px) clamp(20px, 2.5vw, 28px); border-right: none; transition: all .2s; }
.dept-card:last-child { border-right: 1px solid var(--border); }
.dept-card:hover { border-color: var(--teal); box-shadow: 0 4px 16px rgba(26,158,143,.08); position: relative; z-index: 1; }
.dept-card.featured { background: var(--dark); color: var(--white); border-color: var(--dark); }
.dept-icon { width: 46px; height: 46px; background: var(--teal-light); border: 1px solid #c6e8e4; display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.dept-card.featured .dept-icon { background: rgba(26,158,143,.18); border-color: rgba(26,158,143,.3); }
.dept-icon svg { color: var(--teal); }
.dept-card h3 { font-size: 15px; font-weight: 700; margin-bottom: 10px; }
.dept-card p { font-size: 13px; color: var(--muted); line-height: 1.7; }
.dept-card.featured p { color: #8aa0b0; }
@media (max-width: 900px) {
  .dept-grid { grid-template-columns: repeat(2, 1fr); }
  .dept-card:nth-child(even) { border-right: 1px solid var(--border); }
  .dept-card { border-bottom: none; }
  .dept-card:nth-child(3), .dept-card:nth-child(4) { border-top: 1px solid var(--border); }
}
@media (max-width: 520px) {
  .dept-grid { grid-template-columns: 1fr; }
  .dept-card, .dept-card:nth-child(even) { border-right: 1px solid var(--border); border-bottom: none; }
  .dept-card:last-child { border-bottom: 1px solid var(--border); }
}

/* ─── STORIES ─── */
.stories { padding: clamp(48px, 7vw, 80px) 0; }
.stories-head { text-align: center; margin-bottom: 48px; }
.stories-head .section-eyebrow { justify-content: center; }
.stories-head .section-title { margin-bottom: 14px; }
.stories-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.story-card { border: 1px solid var(--border); padding: 36px 28px; border-right: none; position: relative; overflow: hidden; transition: box-shadow .2s; }
.story-card:last-child { border-right: 1px solid var(--border); }
.story-card:hover { box-shadow: 0 6px 24px rgba(0,0,0,.07); z-index: 1; position: relative; }
.story-card::before { content: '"'; position: absolute; top: 12px; left: 16px; font-size: 100px; line-height: 1; color: #f0f0f0; font-family: Georgia, serif; font-weight: 900; z-index: 0; }
.stars { color: #f5a200; font-size: 13px; letter-spacing: 2px; margin-bottom: 14px; position: relative; z-index: 1; }
.story-card blockquote { font-size: 14px; color: #444; line-height: 1.75; margin-bottom: 20px; position: relative; z-index: 1; font-style: normal; }
.story-author { display: flex; align-items: center; gap: 12px; position: relative; z-index: 1; }
.author-avatar { width: 42px; height: 42px; border-radius: 50%; overflow: hidden; background: var(--teal-light); flex-shrink: 0; }
.author-avatar img { width: 100%; height: 100%; object-fit: cover; }
.author-name { font-size: 13px; font-weight: 700; color: var(--text); }
.author-city { font-size: 11px; color: #aaa; margin-top: 1px; }
@media (max-width: 768px) {
  .stories-grid { grid-template-columns: 1fr 1fr; }
  .story-card:nth-child(even) { border-right: 1px solid var(--border); }
  .story-card:nth-child(3) { border-right: none; border-top: 1px solid var(--border); grid-column: span 2; }
}
@media (max-width: 560px) {
  .stories-grid { grid-template-columns: 1fr; }
  .story-card, .story-card:nth-child(even) { border-right: 1px solid var(--border); border-bottom: none; }
  .story-card:last-child { border-bottom: 1px solid var(--border); }
  .story-card:nth-child(3) { grid-column: auto; border-top: none; }
}

/* ─── PARTNERS ─── */
.partners { background: var(--bg-light); padding: clamp(40px, 6vw, 64px) 0; overflow: hidden; position: relative; }
.partners-label { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: #bbb; margin-bottom: 24px; }
.partners-row { display: flex; align-items: center; flex-wrap: wrap; gap: 40px 60px; }
.partner-name { font-family: var(--serif); font-size: clamp(24px, 4vw, 36px); font-weight: 700; letter-spacing: 2px; color: #c8c8d0; transition: color .2s; cursor: default; }
.partner-name:hover { color: var(--teal); }

/* ─── CONTACT ─── */
.contact { padding: clamp(48px, 7vw, 80px) 0; }
.contact-head { margin-bottom: 48px; }
.contact-head .section-eyebrow { justify-content: center; }
.contact-head .section-title { text-align: center; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.contact-info { background: var(--bg-light); padding: clamp(24px, 4vw, 40px); }
.contact-info-title { font-family: var(--serif); font-size: clamp(22px, 3vw, 30px); margin-bottom: 12px; }
.contact-info-desc { font-size: 14px; color: var(--muted); line-height: 1.75; margin-bottom: 28px; }
.ci-row { display: grid; grid-template-columns: 44px 1fr; gap: 14px; margin-bottom: 18px; align-items: start; }
.ci-icon { width: 44px; height: 44px; background: var(--white); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; }
.ci-icon svg { color: var(--teal); }
.ci-text h5 { font-size: 13px; font-weight: 700; margin-bottom: 3px; }
.ci-text p, .ci-text a { font-size: 13px; color: var(--muted); }
.ci-text a { color: var(--teal); }
.social-label { font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: #aaa; margin: 24px 0 12px; }
.social-row { display: flex; gap: 8px; }
.social-btn { width: 38px; height: 38px; background: var(--white); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; color: #666; transition: all .2s; }
.social-btn:hover { background: var(--dark); border-color: var(--dark); color: var(--white); }

.contact-form { border: 1px solid var(--border); padding: clamp(24px, 4vw, 40px); }
.form-title { font-family: var(--serif); font-size: 22px; margin-bottom: 5px; }
.form-subtitle { font-size: 13px; color: #aaa; margin-bottom: 28px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 12px; font-weight: 700; color: var(--text); margin-bottom: 7px; letter-spacing: .2px; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; border: 1px solid var(--border); padding: 11px 14px;
  font-size: 14px; font-family: var(--sans); color: var(--text); background: var(--white);
  outline: none; transition: border .15s; border-radius: 0; appearance: none;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--teal); }
.form-group input::placeholder, .form-group textarea::placeholder { color: #ccc; }
.form-group small { display: block; font-size: 11px; color: #bbb; margin-top: 5px; }
.form-group textarea { height: 110px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.btn-submit { width: 100%; background: var(--text); color: var(--white); border: none; padding: 14px; font-size: 13.5px; font-weight: 700; letter-spacing: .5px; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 8px; font-family: var(--sans); transition: background .2s; }
.btn-submit:hover { background: var(--teal); }

@media (max-width: 768px) { .contact-grid { grid-template-columns: 1fr; } .form-row { grid-template-columns: 1fr; } }

/* ─── FOOTER ─── */
footer { background: var(--dark); color: var(--white); padding: clamp(40px, 6vw, 60px) 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: clamp(30px, 5vw, 60px); padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,.07); }
.footer-logo { font-family: var(--serif); font-size: 24px; color: var(--white); margin-bottom: 18px; display: block; }
.footer-logo span { color: var(--teal); }
.footer-info-row { display: flex; align-items: flex-start; gap: 8px; margin-bottom: 10px; font-size: 13px; color: #6a8090; line-height: 1.6; }
.footer-info-row svg { color: var(--teal); margin-top: 2px; }
.footer-col h4 { font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: #a0b4c0; margin-bottom: 18px; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { font-size: 13px; color: #5a7480; transition: color .15s; }
.footer-links a:hover { color: var(--teal); }
.footer-social { display: flex; gap: 8px; margin-bottom: 18px; }
.footer-social-btn { width: 36px; height: 36px; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); display: flex; align-items: center; justify-content: center; color: #6a8090; transition: all .2s; }
.footer-social-btn:hover { background: var(--teal); border-color: var(--teal); color: var(--white); }
.footer-hospital-img { width: 100%; height: 120px; object-fit: cover; overflow: hidden; }
.footer-hospital-img img { width: 100%; height: 100%; object-fit: cover; }
.footer-bottom { text-align: center; padding: 18px 0; color: #2e4a58; font-size: 12px; }

@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > div:first-child { grid-column: span 2; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-grid > div:first-child { grid-column: auto; }
}

/* ─── FLOATING EMERGENCY BTN (mobile) ─── */
.float-emergency {
  display: none; position: fixed; bottom: 20px; right: 20px; z-index: 900;
  background: #e53935; color: var(--white); padding: 12px 18px;
  font-size: 12px; font-weight: 700; letter-spacing: .5px;
  box-shadow: 0 4px 20px rgba(229,57,53,.4);
  align-items: center; gap: 7px;
  animation: pulse-ring 2s ease-out infinite;
}
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(229,57,53,.5); } 70% { box-shadow: 0 0 0 12px rgba(229,57,53,0); } 100% { box-shadow: 0 0 0 0 rgba(229,57,53,0); } }
@media (max-width: 768px) { .float-emergency { display: flex; } }

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px; /* space between logos */
}
.doctor-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.5rem;
}

@media (max-width: 1200px) {
  .doctor-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 768px) {
  .doctor-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .doctor-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}

.doctor-card {
  background: #fff;
  border-radius: 18px;
  padding: 24px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  transition: 0.3s ease;
}

.doctor-card:hover {
  transform: translateY(-5px);
}


.doc-name h3 {
  margin-bottom: 10px;
}

.doc-meta {
  margin-top: 14px;
}

.doc-meta-label {
  font-size: 13px;
  color: #777;
}

.doc-meta-val {
  font-weight: 600;
  margin-top: 4px;
}

.badge {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  margin-top: 5px;
}

.available {
  background: #e8f7ee;
  color: #1d8f4d;
}

.oncall {
  background: #fff4e5;
  color: #c77700;
}

.doctor-btn-wrap {
  text-align: center;
  margin-top: 40px;
}

.doc-avatar {
  width: 100%;
  height: 100px; /* adjust height as needed */
  border-radius: 0;
  overflow: hidden;
    border-radius: 16px;
  margin-bottom: 18px;
}

.doc-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top; /* keeps face visible */
  display: block;
}

.partners {
  padding: 70px 0;
  background: #f8fbfc;
}

.partners-label {
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 40px;
}

/* First 6 logos */
.partners-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.partner-card {
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  height: 100px;

  display: flex;
  align-items: center;
  justify-content: center;

  box-shadow: 0 5px 18px rgba(0,0,0,0.06);
}

.partner-card img {
  max-width: 100%;
  max-height: 60px;
  object-fit: contain;
}

/* Auto scrolling */
.partners-slider {
  overflow: hidden;
  width: 100%;
  position: relative;
}

.partners-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: scrollPartners 100s linear infinite;
}

.partner-slide {
  width: 180px;
  height: 100px;
  background: #fff;
  border-radius: 16px;

  display: flex;
  align-items: center;
  justify-content: center;

  box-shadow: 0 5px 18px rgba(0,0,0,0.06);
  flex-shrink: 0;
}

.partner-slide img {
  max-width: 80%;
  max-height: 60px;
  object-fit: contain;
}

@keyframes scrollPartners {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* Responsive */
@media (max-width: 992px) {
  .partners-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 600px) {
  .partners-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}