/* ============================================================
   CSS VARIABLES & RESET
============================================================ */
:root {
  --navy:       #0A2463;
  --navy-dark:  #071a47;
  --navy-mid:   #0d2d7a;
  --green:      #2ECC71;
  --green-dark: #27ae60;
  --green-light:#d5f5e3;
  --white:      #ffffff;
  --off-white:  #f8fafc;
  --light-gray: #f1f5f9;
  --mid-gray:   #94a3b8;
  --dark-gray:  #334155;
  --text:       #1e293b;
  --text-light: #64748b;
  --border:     #e2e8f0;
  --shadow-sm:  0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
  --shadow-md:  0 4px 16px rgba(0,0,0,.10);
  --shadow-lg:  0 10px 40px rgba(0,0,0,.14);
  --shadow-xl:  0 20px 60px rgba(0,0,0,.18);
  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --radius-xl:  32px;
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
  --font-head:  'Playfair Display', Georgia, serif;
  --font-body:  'Source Sans 3', 'Segoe UI', sans-serif;
  --font-urdu:  'Noto Nastaliq Urdu', serif;
  --header-h:   76px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
address { font-style: normal; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 96px 0; }

/* ============================================================
   TYPOGRAPHY
============================================================ */
h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.2; }

.section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--green-dark);
  background: var(--green-light);
  padding: 4px 14px;
  border-radius: 100px;
  margin-bottom: 14px;
}

.section-desc {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

/* ============================================================
   BUTTONS
============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  transition: all var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
  min-height: 48px;
}

.btn-primary {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-primary:hover {
  background: var(--navy-mid);
  border-color: var(--navy-mid);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(10,36,99,.3);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-lg { padding: 15px 36px; font-size: 1.05rem; border-radius: var(--radius-lg); }
.btn-sm { padding: 8px 18px; font-size: 0.85rem; min-height: 36px; }
.btn-full { width: 100%; justify-content: center; }

/* ============================================================
   HEADER
============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}

.site-header.scrolled {
  box-shadow: 0 4px 24px rgba(10,36,99,.12);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  height: var(--header-h);
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.logo-icon svg { width: 44px; height: 44px; }

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.logo-en {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
}

.logo-city {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--green-dark);
  letter-spacing: 0.05em;
}

.logo-ur {
  font-family: var(--font-urdu);
  font-size: 0.78rem;
  color: var(--text-light);
  direction: rtl;
}

/* Nav */
.main-nav { margin-left: auto; }

.main-nav ul {
  display: flex;
  gap: 4px;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--dark-gray);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 14px; right: 14px;
  height: 2px;
  background: var(--green);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform var(--transition);
}

.nav-link:hover, .nav-link.active {
  color: var(--navy);
}

.nav-link:hover::after, .nav-link.active::after {
  transform: scaleX(1);
}

/* Header phone */
.header-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--navy);
  color: var(--white);
  padding: 10px 18px;
  border-radius: var(--radius-md);
  font-size: 0.88rem;
  font-weight: 600;
  transition: all var(--transition);
  flex-shrink: 0;
}

.header-phone:hover {
  background: var(--green-dark);
  transform: translateY(-1px);
}

.header-phone i { font-size: 0.8rem; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-left: auto;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all var(--transition);
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  display: none;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 16px 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.mobile-menu.open {
  max-height: 500px;
}

.mobile-menu ul { padding: 0 24px; }

.mobile-nav-link {
  display: block;
  padding: 12px 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark-gray);
  border-bottom: 1px solid var(--border);
  transition: color var(--transition);
}

.mobile-nav-link:hover { color: var(--navy); }

.mobile-call-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  background: var(--navy);
  color: var(--white);
  padding: 14px 20px;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 1rem;
  justify-content: center;
  min-height: 52px;
}

/* ============================================================
   HERO
============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--header-h);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(7,26,71,0.92) 0%,
    rgba(10,36,99,0.85) 40%,
    rgba(10,36,99,0.65) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 80px 24px;
  max-width: 760px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(46,204,113,0.15);
  border: 1px solid rgba(46,204,113,0.4);
  color: #7defa8;
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  margin-bottom: 28px;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(46,204,113,0.6); }
  50% { box-shadow: 0 0 0 8px rgba(46,204,113,0); }
}

.hero-title {
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
}

.accent-text {
  color: var(--green);
  font-style: italic;
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.82);
  margin-bottom: 40px;
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-ctas .btn-primary {
  background: var(--green);
  border-color: var(--green);
  color: var(--white);
}
.hero-ctas .btn-primary:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  box-shadow: 0 8px 24px rgba(46,204,113,.4);
}

.hero-ctas .btn-outline {
  border-color: rgba(255,255,255,0.6);
  color: var(--white);
}
.hero-ctas .btn-outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
}

.hero-trust {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.trust-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.9);
  padding: 7px 16px;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 600;
}

.trust-pill i { color: var(--green); }

.scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.5);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ============================================================
   STATS BAR
============================================================ */
.stats-bar {
  background: var(--navy);
  padding: 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat-card {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 36px 32px;
  border-right: 1px solid rgba(255,255,255,0.1);
  transition: background var(--transition);
}

.stat-card:last-child { border-right: none; }

.stat-card:hover { background: rgba(255,255,255,0.05); }

.stat-icon {
  width: 52px;
  height: 52px;
  background: rgba(46,204,113,0.15);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--green);
  flex-shrink: 0;
}

.stat-num {
  display: flex;
  align-items: baseline;
  gap: 2px;
  font-family: var(--font-head);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}

.stat-unit { font-size: 1.4rem; color: var(--green); }
.stat-fixed { font-size: 2rem; }
.stat-lbl { font-size: 0.82rem; color: rgba(255,255,255,0.6); font-weight: 500; margin-top: 4px; letter-spacing: 0.03em; }

/* ============================================================
   ABOUT
============================================================ */
.about-section { background: var(--off-white); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.about-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: visible;
}

.about-img-wrap img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
}

.about-float-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--navy);
  color: var(--white);
  padding: 18px 22px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-lg);
}

.about-float-badge i {
  font-size: 1.8rem;
  color: var(--green);
}

.about-float-badge span {
  font-size: 0.85rem;
  font-weight: 700;
  line-height: 1.3;
}

.about-lead {
  font-size: 1.1rem;
  color: var(--dark-gray);
  margin-bottom: 16px;
  line-height: 1.8;
}

.about-content p {
  color: var(--text-light);
  margin-bottom: 28px;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 36px;
}

.about-feat {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--dark-gray);
  font-weight: 500;
}

.about-feat i { color: var(--green); margin-top: 3px; flex-shrink: 0; }

/* ============================================================
   SERVICES
============================================================ */
.services-section { background: var(--white); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  cursor: default;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--green);
  transform: scaleX(0);
  transition: transform var(--transition);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.service-card:hover::before { transform: scaleX(1); }

.svc-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.svc-icon.emergency { background: #fef2f2; color: #ef4444; }
.svc-icon.medicine  { background: #eff6ff; color: #3b82f6; }
.svc-icon.surgery   { background: #f0fdf4; color: #22c55e; }
.svc-icon.maternity { background: #fdf4ff; color: #a855f7; }
.svc-icon.pediatrics{ background: #fff7ed; color: #f97316; }
.svc-icon.radiology { background: #f0f9ff; color: #0ea5e9; }
.svc-icon.lab       { background: #fefce8; color: #eab308; }
.svc-icon.opd       { background: #f0fdfa; color: #14b8a6; }

.service-card h3 {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.service-card p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 16px;
}

.svc-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green-dark);
  background: var(--green-light);
  padding: 3px 10px;
  border-radius: 100px;
}

/* ============================================================
   LOCATION
============================================================ */
.location-section { background: var(--off-white); }

.location-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 56px;
  align-items: start;
}

.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.map-wrap iframe { display: block; }

.location-info { display: flex; flex-direction: column; gap: 28px; }

.info-block {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.info-ico {
  width: 44px;
  height: 44px;
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.info-block h3 {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.hours-table { width: 100%; border-collapse: collapse; }
.hours-table td { padding: 6px 0; font-size: 0.9rem; color: var(--dark-gray); }
.hours-table td:first-child { font-weight: 600; width: 55%; }

.open-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--green-light);
  color: var(--green-dark);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 100px;
}

.hours-note {
  margin-top: 10px;
  font-size: 0.82rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 6px;
}

.info-block address { font-size: 0.92rem; color: var(--text-light); line-height: 1.6; }

.info-phone {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  transition: color var(--transition);
}
.info-phone:hover { color: var(--green-dark); }

/* ============================================================
   DOCTORS
============================================================ */
.doctors-section { background: var(--white); }

.doctors-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.doctor-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
}

.doctor-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.doctor-avatar {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.doctor-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 0.5s ease;
}

.doctor-card:hover .doctor-avatar img { transform: scale(1.05); }

.doctor-status {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(255,255,255,0.95);
  padding: 4px 10px;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--green-dark);
  display: flex;
  align-items: center;
  gap: 6px;
}

.doctor-info { padding: 20px; }

.doctor-info h3 {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

.doctor-spec {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--green-dark);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 10px;
}

.doctor-info p {
  font-size: 0.83rem;
  color: var(--text-light);
  line-height: 1.5;
  margin-bottom: 16px;
}

.doctor-info .btn-outline {
  width: 100%;
  justify-content: center;
  font-size: 0.82rem;
  padding: 9px 16px;
  min-height: 40px;
}

/* ============================================================
   REVIEWS
============================================================ */
.reviews-section { background: var(--off-white); }

.overall-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.rating-big {
  font-family: var(--font-head);
  font-size: 4rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
}

.stars-row { color: #f59e0b; font-size: 1.2rem; margin-bottom: 4px; }
.rating-count { font-size: 0.88rem; color: var(--text-light); }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.review-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all var(--transition);
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.review-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.reviewer-avatar {
  width: 44px;
  height: 44px;
  background: var(--navy);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.reviewer-name { font-weight: 700; font-size: 0.95rem; color: var(--text); }
.review-date { font-size: 0.78rem; color: var(--text-light); }

.google-icon {
  margin-left: auto;
  color: #4285f4;
  font-size: 1.1rem;
}

.review-stars { color: #f59e0b; font-size: 0.9rem; margin-bottom: 12px; }

.review-text {
  font-size: 0.9rem;
  color: var(--dark-gray);
  line-height: 1.7;
  font-style: italic;
}

.reviews-cta { text-align: center; }

/* ============================================================
   CONTACT
============================================================ */
.contact-section { background: var(--white); padding-top: 0; }

.contact-hero {
  background: var(--navy);
  padding: 60px 0;
  margin-bottom: 80px;
}

.emergency-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  text-align: center;
}

.emg-icon {
  width: 80px;
  height: 80px;
  background: rgba(46,204,113,0.15);
  border: 2px solid rgba(46,204,113,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--green);
  flex-shrink: 0;
  animation: pulse-ring 2s infinite;
}

@keyframes pulse-ring {
  0%, 100% { box-shadow: 0 0 0 0 rgba(46,204,113,0.3); }
  50% { box-shadow: 0 0 0 16px rgba(46,204,113,0); }
}

.emg-label {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 6px;
}

.emg-number {
  display: block;
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--white);
  transition: color var(--transition);
}

.emg-number:hover { color: var(--green); }

.emg-sub {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  margin-top: 6px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 72px;
  align-items: start;
  padding-bottom: 80px;
}

.contact-info .section-title { margin-top: 12px; }
.contact-info > p { color: var(--text-light); margin-bottom: 36px; }

.contact-details { display: flex; flex-direction: column; gap: 20px; }

.contact-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.contact-ico {
  width: 40px;
  height: 40px;
  background: var(--light-gray);
  color: var(--navy);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-item strong { display: block; font-weight: 700; color: var(--navy); margin-bottom: 2px; }
.contact-item address, .contact-item a, .contact-item span { font-size: 0.92rem; color: var(--text-light); }
.contact-item a:hover { color: var(--navy); }

/* Contact Form */
.contact-form-wrap {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 40px;
}

.contact-form h3 {
  font-family: var(--font-head);
  font-size: 1.4rem;
  color: var(--navy);
  margin-bottom: 28px;
}

.form-group { margin-bottom: 20px; }

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--dark-gray);
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  min-height: 48px;
}

.form-group textarea { resize: vertical; min-height: 120px; }

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(10,36,99,0.1);
}

.form-success {
  display: none;
  align-items: center;
  gap: 10px;
  background: var(--green-light);
  color: var(--green-dark);
  padding: 14px 18px;
  border-radius: var(--radius-md);
  font-weight: 600;
  margin-top: 16px;
}

.form-success.show { display: flex; }

/* ============================================================
   FOOTER
============================================================ */
.site-footer { background: var(--navy-dark); color: rgba(255,255,255,0.75); }

.footer-top { padding: 72px 0 48px; }

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.footer-name-en {
  display: block;
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
}

.footer-name-city {
  display: block;
  font-size: 0.75rem;
  color: var(--green);
  font-weight: 600;
}

.footer-urdu {
  font-family: var(--font-urdu);
  font-size: 1rem;
  color: rgba(255,255,255,0.6);
  direction: rtl;
  margin-bottom: 14px;
}

.footer-tagline { font-size: 0.88rem; line-height: 1.6; margin-bottom: 24px; }

.social-links { display: flex; gap: 10px; }

.social-link {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  transition: all var(--transition);
}

.social-link:hover {
  background: var(--green);
  color: var(--white);
  transform: translateY(-2px);
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-col ul { display: flex; flex-direction: column; gap: 10px; }

.footer-col ul li a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}

.footer-col ul li a:hover { color: var(--green); }

.footer-contact { display: flex; flex-direction: column; gap: 14px; }

.footer-contact li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
}

.footer-contact li i { color: var(--green); margin-top: 3px; flex-shrink: 0; }
.footer-contact li a { color: rgba(255,255,255,0.6); transition: color var(--transition); }
.footer-contact li a:hover { color: var(--green); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
}

.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.4); }

/* ============================================================
   FLOATING BUTTONS
============================================================ */
.fab-whatsapp {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 900;
  width: 58px;
  height: 58px;
  background: #25d366;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  transition: all var(--transition);
}

.fab-whatsapp:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,.5);
}

.fab-call {
  position: fixed;
  bottom: 28px;
  left: 28px;
  z-index: 900;
  display: none;
  align-items: center;
  gap: 8px;
  background: var(--navy);
  color: var(--white);
  padding: 14px 22px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: 0 4px 20px rgba(10,36,99,.35);
  transition: all var(--transition);
  min-height: 52px;
}

.fab-call:hover {
  background: var(--navy-mid);
  transform: translateY(-2px);
}

/* ============================================================
   SCROLL REVEAL ANIMATIONS
============================================================ */
.reveal,
.reveal-left,
.reveal-right,
.reveal-up {
  opacity: 0;
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal       { transform: translateY(30px); }
.reveal-left  { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }
.reveal-up    { transform: translateY(40px); }

.reveal.visible,
.reveal-left.visible,
.reveal-right.visible,
.reveal-up.visible {
  opacity: 1;
  transform: none;
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* Hero fade-in (no scroll trigger) */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  animation: fadeInUp 0.8s ease forwards;
}

.fade-in.delay-1 { animation-delay: 0.2s; }
.fade-in.delay-2 { animation-delay: 0.4s; }
.fade-in.delay-3 { animation-delay: 0.6s; }
.fade-in.delay-4 { animation-delay: 0.8s; }

@keyframes fadeInUp {
  to { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   RESPONSIVE — TABLET (768–1279px)
============================================================ */
@media (max-width: 1279px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .doctors-grid  { grid-template-columns: repeat(2, 1fr); }
  .footer-grid   { grid-template-columns: 1fr 1fr; gap: 36px; }
  .about-grid    { gap: 48px; }
}

@media (max-width: 1024px) {
  .stats-grid    { grid-template-columns: repeat(2, 1fr); }
  .stat-card     { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .stat-card:nth-child(odd)  { border-right: 1px solid rgba(255,255,255,0.1); }
  .stat-card:nth-child(3),
  .stat-card:nth-child(4)    { border-bottom: none; }
  .about-grid    { grid-template-columns: 1fr; }
  .about-img-wrap img { height: 380px; }
  .about-float-badge { bottom: -16px; right: -8px; }
  .location-grid { grid-template-columns: 1fr; }
  .contact-grid  { grid-template-columns: 1fr; gap: 48px; }
  .reviews-grid  { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   RESPONSIVE — MOBILE (≤767px)
============================================================ */
@media (max-width: 767px) {
  :root { --header-h: 64px; }

  .section { padding: 64px 0; }

  /* Header */
  .main-nav, .header-phone { display: none; }
  .hamburger { display: flex; }
  .mobile-menu { display: block; }

  /* Hero */
  .hero-title { font-size: 2.4rem; }
  .hero-ctas  { flex-direction: column; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .hero-trust { gap: 8px; }
  .trust-pill { font-size: 0.75rem; padding: 6px 12px; }

  /* Stats */
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-card  { padding: 24px 20px; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .stat-card:nth-child(odd)  { border-right: 1px solid rgba(255,255,255,0.1); }
  .stat-card:nth-child(3),
  .stat-card:nth-child(4)    { border-bottom: none; }
  .stat-num   { font-size: 1.8rem; }

  /* About */
  .about-grid { grid-template-columns: 1fr; gap: 32px; }
  .about-img-wrap img { height: 280px; }
  .about-float-badge { display: none; }
  .about-features { grid-template-columns: 1fr; }

  /* Services */
  .services-grid { grid-template-columns: 1fr; gap: 16px; }

  /* Location */
  .location-grid { grid-template-columns: 1fr; gap: 32px; }
  .map-wrap iframe { height: 300px; }

  /* Doctors */
  .doctors-grid { grid-template-columns: 1fr; gap: 20px; }
  .doctor-avatar { height: 260px; }

  /* Reviews */
  .reviews-grid { grid-template-columns: 1fr; }

  /* Contact */
  .emergency-banner { flex-direction: column; gap: 16px; }
  .contact-grid { grid-template-columns: 1fr; gap: 32px; padding-bottom: 48px; }
  .contact-form-wrap { padding: 28px 20px; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom .container { flex-direction: column; text-align: center; }

  /* Floating call button — show on mobile */
  .fab-call { display: flex; }
  .fab-whatsapp { bottom: 28px; right: 20px; width: 52px; height: 52px; font-size: 1.4rem; }

  /* Section titles */
  .section-title { font-size: 1.8rem; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2rem; }
  .stats-grid { grid-template-columns: 1fr; }
  .stat-card  { border-right: none !important; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .stat-card:last-child { border-bottom: none; }
  .overall-rating { flex-direction: column; gap: 8px; }
}