/* ============================================================
   KMM HOSPITAL – Modern Redesign Stylesheet
   Author: Redesigned 2025
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=DM+Sans:wght@300;400;500;600&display=swap');

/* ── CSS VARIABLES ── */
:root {
  --navy:        #0A2342;
  --navy-mid:    #163762;
  --navy-light:  #e8edf5;
  --teal:        #0F8A7A;
  --teal-mid:    #0a7268;
  --teal-light:  #E0F4F1;
  --gold:        #C8973A;
  --gold-light:  #FBF3E3;
  --red-emg:     #C0392B;
  --white:       #FFFFFF;
  --off-white:   #F7F8FA;
  --gray-100:    #EEF0F3;
  --gray-300:    #B0B8C5;
  --gray-600:    #5A6475;
  --gray-900:    #1C2333;
  --font-head:   'Playfair Display', Georgia, serif;
  --font-body:   'DM Sans', -apple-system, sans-serif;
  --radius:      12px;
  --radius-lg:   20px;
  --shadow-sm:   0 2px 12px rgba(10,35,66,.07);
  --shadow-md:   0 8px 30px rgba(10,35,66,.12);
  --shadow-lg:   0 16px 48px rgba(10,35,66,.15);
  --transition:  all 0.25s ease;
}

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--gray-900);
  background: var(--white);
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--teal); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--teal-mid); }
ul { list-style: none; }

/* ── UTILITY ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-label {
  font-size: 12px; font-weight: 700; color: var(--teal);
  text-transform: uppercase; letter-spacing: .1em; margin-bottom: 10px;
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(26px, 3vw, 38px);
  color: var(--navy); line-height: 1.2; margin-bottom: 14px;
}
.section-sub {
  font-size: 17px; color: var(--gray-600); line-height: 1.7; max-width: 560px;
}
.btn-primary {
  display: inline-block; background: var(--teal); color: var(--white);
  padding: 13px 28px; border-radius: 10px; font-size: 15px; font-weight: 600;
  border: none; cursor: pointer; font-family: var(--font-body); transition: var(--transition);
}
.btn-primary:hover { background: var(--teal-mid); color: var(--white); transform: translateY(-1px); }
.btn-outline {
  display: inline-block; background: transparent; color: var(--navy);
  padding: 12px 26px; border-radius: 10px; font-size: 15px; font-weight: 500;
  border: 1.5px solid var(--gray-300); cursor: pointer; font-family: var(--font-body); transition: var(--transition);
}
.btn-outline:hover { border-color: var(--navy); color: var(--navy); }
.btn-outline-white {
  display: inline-block; background: transparent; color: var(--white);
  padding: 12px 26px; border-radius: 10px; font-size: 15px; font-weight: 500;
  border: 1.5px solid rgba(255,255,255,.4); cursor: pointer; font-family: var(--font-body); transition: var(--transition);
}
.btn-outline-white:hover { border-color: var(--white); color: var(--white); background: rgba(255,255,255,.1); }

/* ── EMERGENCY BAR ── */
.emergency-bar {
  background: var(--red-emg); color: var(--white);
  text-align: center; padding: 10px 24px;
  font-size: 14px; font-weight: 600; letter-spacing: .02em;
}
.emergency-bar a { color: #FFD0CC; font-weight: 700; }
.emergency-bar a:hover { color: var(--white); }

/* ── TOP INFO BAR ── */
.topbar {
  background: var(--navy); color: #b8cde8;
  font-size: 13px; padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,.06);
}
.topbar .topbar-inner {
  display: flex; justify-content: space-between; align-items: center;
}
.topbar-right { display: flex; gap: 24px; align-items: center; }
.topbar-right a { color: #7ab0d8; }
.topbar-right a:hover { color: var(--white); }

/* ── STICKY NAV ── */
#site-header {
  background: var(--white);
  border-bottom: 1px solid var(--gray-100);
  position: sticky; top: 0; z-index: 1000;
  box-shadow: var(--shadow-sm);
}
.header-inner {
  display: flex; align-items: center;
  justify-content: space-between; padding: 0;
}
.site-logo {
  display: flex; align-items: center;
  padding: 8px 0; text-decoration: none; flex-shrink: 0;
}
.site-logo-img {
  height: 58px;
  width: auto;
  display: block;
  object-fit: contain;
}

/* nav links */
.nav-links { display: flex; gap: 0; align-items: stretch; }
.nav-links > li { position: relative; }
.nav-links > li > a {
  display: flex; align-items: center; gap: 4px;
  font-size: 14px; font-weight: 500; color: var(--gray-600);
  padding: 22px 14px; border-bottom: 3px solid transparent;
  transition: var(--transition); white-space: nowrap;
}
.nav-links > li > a:hover,
.nav-links > li.active > a { color: var(--navy); border-bottom-color: var(--teal); }
.nav-links .has-dropdown > a::after {
  content: '▾'; font-size: 10px; opacity: .6;
}

/* dropdown */
.dropdown-menu {
  display: none; position: absolute; top: calc(100% + 2px); left: 0;
  background: var(--white); border: 1px solid var(--gray-100); border-radius: var(--radius);
  box-shadow: var(--shadow-md); min-width: 220px; z-index: 200; padding: 8px 0;
}
.has-dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu li a {
  display: block; padding: 9px 18px; font-size: 14px; color: var(--gray-600);
  transition: var(--transition);
}
.dropdown-menu li a:hover { background: var(--teal-light); color: var(--teal); }

.nav-cta {
  background: var(--teal); color: var(--white); border: none;
  padding: 10px 22px; border-radius: 8px; font-size: 14px; font-weight: 600;
  font-family: var(--font-body); cursor: pointer; white-space: nowrap;
  transition: var(--transition); text-decoration: none; display: inline-block;
}
.nav-cta:hover { background: var(--teal-mid); color: var(--white); }

/* mobile menu toggle */
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span {
  display: block; width: 24px; height: 2px; background: var(--navy);
  margin: 5px 0; transition: var(--transition); border-radius: 2px;
}

/* ── HERO SLIDER ── */

/* Wrapper: contains slides + arrows + thumbs only. Stats sit below. */
.hero-slider-section {
  position: relative;
  width: 100%;
  background: var(--navy);
  padding-bottom: 62px; /* space for thumbnail strip */
}

/* Slides stack via absolute; active one is position:relative to set height */
.slide {
  position: absolute; top: 0; left: 0;
  width: 100%; height: 500px;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity .8s ease-in-out;
  z-index: 1;
}
.slide.active {
  opacity: 1; z-index: 2;
  position: relative; /* drives section height */
}
.slide.prev { opacity: 0; z-index: 1; }

/* Dark gradient overlay */
.slide-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    90deg,
    rgba(5,20,50,.78) 0%,
    rgba(5,20,50,.52) 55%,
    rgba(5,20,50,.18) 100%
  );
}

/* Caption */
.slide-content {
  position: absolute;
  top: 50%; left: 0;
  transform: translateY(-50%);
  padding: 0 max(28px, calc((100vw - 1200px)/2 + 28px));
  z-index: 3; 
  /*max-width: 680px;*/
  width: 100%;
}
.slide-sub {
  font-size: 18px; font-weight: 400;
  color: rgba(255,255,255,.88);
  margin: 0 0 10px; letter-spacing: .02em;
  text-shadow: 0 1px 4px rgba(0,0,0,.4);
}
.slide-title {
  font-family: var(--font-head);
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 700; line-height: 1.12;
  color: var(--white); margin: 0 0 28px;
  text-shadow: 0 2px 8px rgba(0,0,0,.45);
}
.slide-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.slide-btn-primary {
  display: inline-block; background: var(--teal); color: var(--white);
  padding: 13px 28px; border-radius: 10px; font-size: 15px; font-weight: 600;
  text-decoration: none; transition: var(--transition); border: none;
}
.slide-btn-primary:hover { background: var(--teal-mid); color: var(--white); transform: translateY(-1px); }
.slide-btn-outline {
  display: inline-block; background: transparent; color: var(--white);
  padding: 12px 26px; border-radius: 10px; font-size: 15px; font-weight: 500;
  text-decoration: none; border: 1.5px solid rgba(255,255,255,.5);
  transition: var(--transition);
}
.slide-btn-outline:hover { background: rgba(255,255,255,.15); color: var(--white); border-color: var(--white); }

/* Arrows — centred on the image (not the thumb padding) */
.slider-arrow {
  position: absolute; top: 250px; z-index: 10;
  transform: translateY(-50%);
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,.15); border: 1.5px solid rgba(255,255,255,.3);
  color: var(--white); font-size: 28px; line-height: 1;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: var(--transition); backdrop-filter: blur(4px);
}
.slider-arrow:hover { background: var(--teal); border-color: var(--teal); }
.slider-prev { left: 20px; }
.slider-next { right: 20px; }

/* Thumbnail strip — sits in the padding-bottom area below the image */
.slider-thumbs {
  position: absolute;
  bottom: 8px; left: 50%;
  transform: translateX(-50%);
  display: flex; gap: 8px; z-index: 10;
}
.slider-thumb {
  width: 72px; height: 46px; border-radius: 6px;
  background-size: cover; background-position: center;
  border: 2px solid rgba(255,255,255,.3);
  cursor: pointer; transition: var(--transition);
  opacity: .65;
}
.slider-thumb.active,
.slider-thumb:hover { border-color: var(--teal); opacity: 1; }

/* ── STATS BAR — separate element rendered BELOW the slider in HTML ── */
.slider-stats-bar {
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,.12);
  border-bottom: 3px solid var(--teal);
  padding: 18px 0;
}
.slider-stats {
  display: flex; align-items: center; justify-content: center;
  gap: 0; flex-wrap: wrap;
}
.slider-stat {
  display: flex; flex-direction: column; align-items: center;
  padding: 6px 40px;
}
.slider-stat-num {
  font-family: var(--font-head); font-size: 28px;
  font-weight: 700; color: var(--white); line-height: 1;
}
.slider-stat-num sup { font-size: 14px; }
.slider-stat-label {
  font-size: 11px; color: #8aafc8;
  text-transform: uppercase; letter-spacing: .07em; margin-top: 4px;
}
.slider-stat-divider {
  width: 1px; height: 36px; background: rgba(255,255,255,.15); flex-shrink: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-slider-section { padding-bottom: 0; }
  .slide { height: 420px; }
  .slide-title { font-size: clamp(26px, 6vw, 38px); }
  .slide-sub { font-size: 15px; }
  .slider-thumbs { display: none; }
  .slider-arrow { top: 210px; }
  .slider-stat { padding: 4px 18px; }
  .slider-stat-num { font-size: 22px; }
  .slider-stat-label { font-size: 10px; }
}
@media (max-width: 480px) {
  .slide { height: 360px; }
  .slide-content { padding: 0 20px; }
  .slide-btn-primary, .slide-btn-outline { padding: 10px 18px; font-size: 14px; }
  .slider-arrow { top: 180px; }
  .slider-stats-bar { padding: 12px 0; }
}
/* ── TRUST STRIP ── */
.trust-strip {
  background: var(--teal-light);
  border-top: 1px solid #c2e8e3; border-bottom: 1px solid #c2e8e3;
  padding: 18px 0;
}
.trust-inner { display: flex; justify-content: space-around; align-items: center; flex-wrap: wrap; gap: 16px; }
.trust-item { display: flex; align-items: center; gap: 10px; }
.trust-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--teal); flex-shrink: 0; }
.trust-item span { font-size: 13px; font-weight: 500; color: var(--navy); }

/* ── ABOUT SECTION ── */
.about-section { padding: 80px 0; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-img-wrap { position: relative; }
.about-img-bg {
  background: var(--teal-light); border-radius: var(--radius-lg);
  height: 400px; overflow: hidden; display: flex; align-items: center; justify-content: center;
}
.about-img-bg img { width: 100%; height: 100%; object-fit: cover; }
.about-img-placeholder {
  display: flex; align-items: center; justify-content: center;
  font-size: 80px; color: rgba(15,138,122,.3);
}
.about-float-badge {
  position: absolute; bottom: -20px; right: -20px;
  background: var(--gold); color: var(--white);
  border-radius: 16px; padding: 18px 24px;
  box-shadow: 0 8px 24px rgba(200,151,58,.35);
}
.about-float-badge strong {
  display: block; font-family: var(--font-head);
  font-size: 28px; font-weight: 700; line-height: 1;
}
.about-float-badge small { font-size: 12px; opacity: .9; }
.about-points { display: flex; flex-direction: column; gap: 18px; margin-top: 28px; }
.about-point { display: flex; gap: 14px; align-items: flex-start; }
.about-point-icon {
  width: 42px; height: 42px; border-radius: 10px;
  background: var(--teal-light); display: flex; align-items: center;
  justify-content: center; flex-shrink: 0; font-size: 18px;
}
.about-point-text strong { display: block; font-size: 15px; font-weight: 600; color: var(--navy); }
.about-point-text p { font-size: 14px; color: var(--gray-600); margin: 2px 0 0; }

/* ── DEPARTMENTS ── */
.dept-section { background: var(--off-white); padding: 80px 0; }
.dept-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 44px; }
.dept-cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 22px; }
.dept-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 28px 24px; border: 1px solid var(--gray-100);
  transition: var(--transition); cursor: pointer;
}
.dept-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.dept-card-icon {
  width: 52px; height: 52px; border-radius: 14px;
  margin-bottom: 18px; display: flex; align-items: center;
  justify-content: center; font-size: 22px;
}
.ic-teal { background: var(--teal-light); }
.ic-gold { background: var(--gold-light); }
.ic-navy { background: var(--navy-light); }
.dept-card h3 { font-size: 15px; font-weight: 600; color: var(--navy); margin-bottom: 8px; }
.dept-card p { font-size: 13px; color: var(--gray-600); line-height: 1.55; }
.dept-card-link {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 13px; font-weight: 600; color: var(--teal);
  margin-top: 14px; text-decoration: none;
}
.dept-card-link:hover { color: var(--teal-mid); }

/* ── DOCTORS SECTION ── */
.doctors-section { padding: 80px 0; }
.doctors-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 44px; }
.doctors-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(210px, 1fr)); gap: 22px; }
.doctor-card {
  background: var(--white); border-radius: var(--radius-lg);
  border: 1px solid var(--gray-100); overflow: hidden; transition: var(--transition);
}
.doctor-card:hover { box-shadow: var(--shadow-md); }
.doctor-avatar {
  height: 180px; background: linear-gradient(135deg, var(--teal-light), #b2e0d9);
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.doctor-avatar img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.avatar-initials {
  width: 72px; height: 72px; border-radius: 50%; background: var(--teal);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-size: 22px; color: var(--white); font-weight: 700;
}
.doctor-info { padding: 16px 18px; }
.doctor-info h3 { font-size: 14px; font-weight: 600; color: var(--navy); margin-bottom: 3px; line-height: 1.3; }
.doctor-info .doc-dept { font-size: 12px; color: var(--teal); font-weight: 600; }
.doctor-info .doc-qual { font-size: 12px; color: var(--gray-300); margin-top: 3px; }

/* ── FACILITIES SECTION ── */
.facilities-section { background: var(--navy); padding: 80px 0; }
.facilities-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.facilities-section .section-title { color: var(--white); }
.facilities-section .section-sub { color: #8aafc8; }
.facility-list {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 28px;
}
.facility-item {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  border-radius: 10px; padding: 13px 15px;
  display: flex; align-items: center; gap: 10px;
}
.facility-dot { width: 7px; height: 7px; border-radius: 50%; background: #5cd4c4; flex-shrink: 0; }
.facility-item span { color: #b8cde8; font-size: 13px; font-weight: 500; }

/* appointment panel */
.appt-panel {
  background: rgba(15,138,122,.15);
  border: 1px solid rgba(15,138,122,.35);
  border-radius: var(--radius-lg); padding: 32px;
}
.appt-panel h3 {
  color: var(--white); font-family: var(--font-head);
  font-size: 22px; margin-bottom: 6px;
}
.appt-panel > p { color: #8aafc8; font-size: 14px; margin-bottom: 22px; }
.appt-field { margin-bottom: 14px; }
.appt-field label {
  display: block; font-size: 11px; color: #8aafc8;
  font-weight: 700; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 6px;
}
.appt-field input,
.appt-field select {
  width: 100%; background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15); border-radius: 8px;
  color: var(--white); font-family: var(--font-body); font-size: 14px; padding: 11px 14px;
  outline: none; transition: var(--transition);
}
.appt-field input:focus,
.appt-field select:focus { border-color: rgba(15,138,122,.7); }
.appt-field input::placeholder { color: #5a7a99; }
.appt-field select option { background: var(--navy); }
.appt-submit {
  width: 100%; background: var(--teal); color: var(--white);
  border: none; border-radius: 10px; padding: 14px;
  font-family: var(--font-body); font-size: 15px; font-weight: 600;
  cursor: pointer; margin-top: 8px; transition: var(--transition);
}
.appt-submit:hover { background: var(--teal-mid); }

/* ── NEWS SECTION ── */
.news-section { padding: 80px 0; background: var(--off-white); }
.news-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 24px; margin-top: 44px; }
.news-card {
  background: var(--white); border-radius: var(--radius-lg);
  border: 1px solid var(--gray-100); padding: 28px;
  transition: var(--transition);
}
.news-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.news-date { font-size: 12px; color: var(--teal); font-weight: 600; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 10px; }
.news-card h3 { font-size: 16px; font-weight: 600; color: var(--navy); margin-bottom: 10px; line-height: 1.4; }
.news-card p { font-size: 14px; color: var(--gray-600); line-height: 1.6; }

/* ── INSURANCE SECTION ── */
.insurance-section {
  background: var(--gold-light);
  border-top: 1px solid #f0deb3; border-bottom: 1px solid #f0deb3;
  padding: 80px 0;
}
.insurance-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.ins-tag {
  display: inline-block; background: var(--gold); color: var(--white);
  padding: 5px 14px; border-radius: 20px; font-size: 12px;
  font-weight: 700; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 14px;
}
.partners { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.partner-chip {
  background: var(--white); border: 1px solid #e8d8b0;
  border-radius: 8px; padding: 9px 16px;
  font-size: 13px; font-weight: 600; color: var(--navy);
}
.ins-steps { display: flex; flex-direction: column; gap: 18px; margin-top: 28px; }
.ins-step { display: flex; gap: 16px; align-items: flex-start; }
.ins-step-num {
  width: 30px; height: 30px; border-radius: 50%; background: var(--gold); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700; flex-shrink: 0;
}
.ins-step-text strong { display: block; font-size: 14px; color: var(--navy); }
.ins-step-text p { font-size: 13px; color: var(--gray-600); margin-top: 2px; }

/* ── BEFORE FOOTER – Gallery + Facilities + News ── */
.before-footer { padding: 60px 0; }
.before-footer-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 40px; }
.bfoot-col h3 {
  font-family: var(--font-head); font-size: 20px; color: var(--navy); margin-bottom: 20px;
}
.gallery-thumbs { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 12px; }
.gallery-thumb { border-radius: 8px; overflow: hidden; aspect-ratio: 1; }
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.gallery-thumb:hover img { transform: scale(1.05); }
.gallery-view-all {
  display: flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 600; color: var(--teal);
  justify-content: flex-end;
}
.foot-facilities li {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 0; border-bottom: 1px solid var(--gray-100);
  font-size: 14px; color: var(--gray-600);
}
.foot-facilities li::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--teal); flex-shrink: 0;
}
.foot-facilities li:last-child { border-bottom: none; }
.news-scroll { display: flex; flex-direction: column; gap: 14px; }
.news-item {
  padding: 12px 14px; background: var(--off-white); border-radius: 8px;
  border-left: 3px solid var(--teal);
}
.news-item a { font-size: 13px; font-weight: 500; color: var(--navy); display: block; line-height: 1.45; }
.news-item a:hover { color: var(--teal); }
.news-item small { font-size: 11px; color: var(--gray-300); display: block; margin-top: 4px; }
.no-news { font-size: 14px; color: var(--gray-300); font-style: italic; }

/* ── SITE FOOTER ── */
.site-footer { background: var(--gray-900); padding: 56px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 44px; }
.footer-brand .footer-logo {
  display: flex; align-items: center; gap: 12px; margin-bottom: 14px;
}
.footer-logo-img {
  height: 52px;
  width: auto;
  display: block;
  object-fit: contain;
}
.footer-brand p { color: #8090a8; font-size: 14px; line-height: 1.7; max-width: 260px; }
.footer-social { display: flex; gap: 10px; margin-top: 16px; }
.social-link {
  width: 34px; height: 34px; border-radius: 8px;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  color: #8090a8; font-size: 14px; transition: var(--transition);
}
.social-link:hover { background: var(--teal); color: var(--white); border-color: var(--teal); }
.footer-col h4 { color: var(--white); font-size: 14px; font-weight: 600; margin-bottom: 16px; letter-spacing: .03em; }
.footer-col ul li { margin-bottom: 9px; }
.footer-col ul li a { color: #8090a8; font-size: 14px; transition: var(--transition); }
.footer-col ul li a:hover { color: #5cd4c4; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08); padding-top: 22px;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px;
}
.footer-bottom p { color: #8090a8; font-size: 13px; }

/* ── INNER PAGE BANNER ── */
.inner-page-banner {
  background: var(--navy); padding: 48px 0;
  border-bottom: 3px solid var(--teal);
}
.inner-page-banner h1 {
  font-family: var(--font-head); color: var(--white);
  font-size: clamp(26px, 3vw, 40px); margin-bottom: 8px;
}
.breadcrumb { display: flex; gap: 8px; align-items: center; }
.breadcrumb a { color: #8aafc8; font-size: 13px; }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb span { color: #5a7a99; font-size: 13px; }

/* ── GOOGLE MAP ── */
#map-section { height: 300px; }
#map-section iframe { width: 100%; height: 100%; border: none; display: block; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .about-grid, .facilities-grid, .insurance-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .before-footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-links.open { display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--white); border-top: 1px solid var(--gray-100); padding: 16px; box-shadow: var(--shadow-md); z-index: 999; }
  .nav-links.open > li > a { padding: 12px 0; border-bottom: 1px solid var(--gray-100); }
  .nav-toggle { display: block; }
  .trust-inner { justify-content: flex-start; }
  .dept-cards, .doctors-grid { grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); }
  .before-footer-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .topbar .topbar-right { display: none; }
  .site-logo-img { height: 44px; }
}
@media (max-width: 480px) {
  .dept-cards { grid-template-columns: 1fr 1fr; }
  .doctors-grid { grid-template-columns: 1fr 1fr; }
  .facility-list { grid-template-columns: 1fr; }
}
