/* ===== CSS VARIABLES ===== */
:root {
  --primary: #0a5c9e;
  --primary-dark: #073f6e;
  --primary-light: #1a7dc4;
  --secondary: #00a89c;
  --secondary-dark: #007a71;
  --accent: #e8f4fd;
  --gold: #f0a500;
  --danger: #e63946;
  --text-dark: #1a1a2e;
  --text-mid: #4a4a6a;
  --text-light: #8888aa;
  --white: #ffffff;
  --off-white: #f8fafc;
  --border: #e0eaf4;
  --shadow: 0 4px 24px rgba(10,92,158,0.10);
  --shadow-lg: 0 8px 40px rgba(10,92,158,0.16);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', 'Segoe UI', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5 { font-family: 'Playfair Display', 'Georgia', serif; font-weight: 700; line-height: 1.2; }
.section-title { font-size: clamp(1.8rem, 4vw, 2.6rem); color: var(--primary-dark); margin-bottom: 0.5rem; }
.section-subtitle { color: var(--text-mid); font-size: 1.05rem; max-width: 600px; }
.section-header { text-align: center; margin-bottom: 3rem; }
.badge-pill { display: inline-block; background: var(--accent); color: var(--primary); font-size: 0.78rem; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; padding: 5px 16px; border-radius: 50px; margin-bottom: 1rem; }

/* ===== UTILITIES ===== */
.section-pad { padding: 80px 0; }
.bg-light-blue { background: var(--accent); }
.bg-dark { background: var(--primary-dark); }
.text-primary { color: var(--primary) !important; }
.text-secondary-color { color: var(--secondary) !important; }

/* ===== BUTTONS ===== */
.btn-primary-custom {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: var(--white);
  border: none;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 15px rgba(10,92,158,0.3);
}
.btn-primary-custom:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(10,92,158,0.4); color: var(--white); }
.btn-secondary-custom {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.7);
  padding: 11px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-secondary-custom:hover { background: rgba(255,255,255,0.15); color: var(--white); }
.btn-outline-primary-custom {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.btn-outline-primary-custom:hover { background: var(--primary); color: var(--white); }
.btn-danger-custom {
  background: linear-gradient(135deg, var(--danger) 0%, #c1121f 100%);
  color: var(--white);
  border: none;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 20px rgba(230,57,70,0.4);
  animation: pulse-danger 2s infinite;
}
.btn-danger-custom:hover { transform: scale(1.04); color: var(--white); }
@keyframes pulse-danger {
  0%, 100% { box-shadow: 0 4px 20px rgba(230,57,70,0.4); }
  50% { box-shadow: 0 4px 30px rgba(230,57,70,0.7); }
}
.btn-teal {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
  color: var(--white);
  border: none;
  padding: 11px 26px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.btn-teal:hover { transform: translateY(-2px); color: var(--white); }

/* ===== NAVBAR ===== */
#mainNav {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 0 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: var(--transition);
  box-shadow: 0 2px 20px rgba(10,92,158,0.08);
}
#mainNav .navbar-brand { display: flex; align-items: center; gap: 10px; text-decoration: none; padding: 10px 0; }
.nav-logo-icon {
  width: 42px; height: 42px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 1.2rem; font-weight: 700; flex-shrink: 0;
}
.nav-brand-text .hospital-name { font-family: 'Playfair Display', serif; font-size: 1.05rem; font-weight: 700; color: var(--primary-dark); line-height: 1.1; }
.nav-brand-text .hospital-tagline { font-size: 0.65rem; color: var(--secondary); font-weight: 500; letter-spacing: 0.5px; text-transform: uppercase; }
.navbar-nav .nav-link { color: var(--text-dark) !important; font-weight: 500; font-size: 0.9rem; padding: 8px 12px !important; border-radius: 6px; transition: var(--transition); }
.navbar-nav .nav-link:hover, .navbar-nav .nav-link.active { color: var(--primary) !important; background: var(--accent); }
.navbar-nav .nav-item { margin: 0 2px; }
.nav-book-btn {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: white !important;
  padding: 8px 20px !important;
  border-radius: 50px !important;
  font-weight: 600 !important;
  box-shadow: 0 3px 12px rgba(10,92,158,0.3);
  margin-left: 6px;
}
.nav-book-btn:hover { background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%) !important; color: white !important; transform: translateY(-1px); box-shadow: 0 5px 18px rgba(10,92,158,0.4); }

/* ===== TOP BAR ===== */
.top-bar {
  background: var(--primary-dark);
  color: rgba(255,255,255,0.85);
  font-size: 0.8rem;
  padding: 6px 0;
}
.top-bar a { color: rgba(255,255,255,0.85); transition: var(--transition); }
.top-bar a:hover { color: var(--white); }
.top-bar .badge-open { background: var(--secondary); color: white; padding: 2px 10px; border-radius: 20px; font-size: 0.72rem; font-weight: 600; }

/* ===== HERO SECTION ===== */
.hero-section {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, #1565c0 100%);
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-section::before {
  content: '';
  position: absolute; inset: 0;
  background: url('https://images.unsplash.com/photo-1538108149393-fbbd81895907?w=1400&q=80') center/cover no-repeat;
  opacity: 0.12;
}
.hero-section::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(0,168,156,0.15) 0%, transparent 60%);
}
.hero-content { position: relative; z-index: 2; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.15); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.2); color: white; padding: 6px 18px; border-radius: 50px; font-size: 0.82rem; font-weight: 500; margin-bottom: 1.5rem; }
.hero-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--secondary); display: inline-block; animation: blink 1.5s infinite; }
@keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: 0.3; } }
.hero-title { font-size: clamp(2.2rem, 5vw, 3.8rem); color: white; line-height: 1.1; margin-bottom: 1.2rem; }
.hero-title span { color: #7dd3fc; }
.hero-description { color: rgba(255,255,255,0.85); font-size: 1.1rem; margin-bottom: 2rem; max-width: 520px; }
.hero-stats { display: flex; gap: 2rem; margin-top: 2.5rem; flex-wrap: wrap; }
.hero-stat { text-align: center; }
.hero-stat .number { font-size: 1.8rem; font-weight: 700; color: white; font-family: 'Playfair Display', serif; }
.hero-stat .label { font-size: 0.78rem; color: rgba(255,255,255,0.7); text-transform: uppercase; letter-spacing: 1px; }
.hero-image-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative; z-index: 2;
}
.hero-emergency-card {
  background: linear-gradient(135deg, var(--danger) 0%, #c1121f 100%);
  color: white;
  padding: 20px 24px;
  border-radius: var(--radius);
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 8px 30px rgba(230,57,70,0.4);
}
.hero-emergency-card .icon { font-size: 2rem; }
.hero-emergency-card .num { font-size: 1.5rem; font-weight: 700; }
.hero-emergency-card small { font-size: 0.8rem; opacity: 0.85; }

/* ===== SERVICE CARDS ===== */
.service-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  height: 100%;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transform: scaleX(0);
  transition: var(--transition);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 60px; height: 60px;
  background: var(--accent);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 16px;
  transition: var(--transition);
}
.service-card:hover .service-icon { background: linear-gradient(135deg, var(--primary), var(--secondary)); }
.service-card:hover .service-icon i { filter: brightness(10); }
.service-card h5 { font-size: 1.05rem; margin-bottom: 8px; color: var(--primary-dark); }
.service-card p { font-size: 0.88rem; color: var(--text-mid); margin-bottom: 16px; }

/* ===== DOCTOR CARDS ===== */
.doctor-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid var(--border);
}
.doctor-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.doctor-card .card-img-wrap {
  height: ; overflow: hidden;
  background: linear-gradient(135deg, var(--accent) 0%, #dceffe 100%);
  position: relative;
  display: flex; align-items: center; justify-content: center;
}
.doctor-card .card-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.doctor-placeholder {
  width: 100px; height: 100px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 2.5rem; color: white;
}
.availability-badge {
  position: absolute; top: 12px; right: 12px;
  display: none;
  background: #e8f5e9; color: #2e7d32;
  font-size: 0.72rem; font-weight: 600;
  padding: 3px 10px; border-radius: 20px;
  border: 1px solid #c8e6c9;
}
.doctor-card .card-body { padding: 20px; }
.doctor-card .specialization { color: var(--secondary); font-size: 0.82rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 4px; }
.doctor-card h5 { font-size: 1.1rem; margin-bottom: 4px; }
.doctor-card .qualification { font-size: 0.82rem; color: var(--text-mid); margin-bottom: 12px; }
.doctor-meta { display: flex; gap: 16px; font-size: 0.82rem; color: var(--text-mid); margin-bottom: 16px; }
.doctor-meta span { display: flex; align-items: center; gap: 4px; }

/* ===== STATS SECTION ===== */
.stats-section {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}
.stats-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(0,168,156,0.2), transparent 60%);
}
.stat-item { text-align: center; position: relative; z-index: 1; }
.stat-item .number { font-size: 3rem; font-weight: 700; color: white; font-family: 'Playfair Display', serif; display: block; }
.stat-item .label { color: rgba(255,255,255,0.75); font-size: 0.9rem; }
.stat-divider { width: 1px; background: rgba(255,255,255,0.2); }

/* ===== WHY CHOOSE US ===== */
.why-card {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 20px;
  border-radius: var(--radius);
  transition: var(--transition);
}
.why-card:hover { background: var(--accent); }
.why-icon { width: 50px; height: 50px; background: linear-gradient(135deg, var(--primary), var(--secondary)); border-radius: 12px; display: flex; align-items: center; justify-content: center; color: white; font-size: 1.3rem; flex-shrink: 0; }
.why-card h6 { font-size: 1rem; margin-bottom: 4px; }
.why-card p { font-size: 0.85rem; color: var(--text-mid); margin: 0; }

/* ===== TESTIMONIALS ===== */
.testimonial-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  height: 100%;
  position: relative;
}
.testimonial-card::before {
  content: '\201C';
  position: absolute; top: 16px; right: 24px;
  font-size: 5rem; color: var(--accent); line-height: 1;
  font-family: Georgia, serif;
}
.stars { color: var(--gold); font-size: 0.9rem; margin-bottom: 12px; }
.testimonial-text { font-size: 0.95rem; color: var(--text-mid); font-style: italic; margin-bottom: 20px; line-height: 1.7; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, var(--primary), var(--secondary)); display: flex; align-items: center; justify-content: center; color: white; font-weight: 700; font-size: 1rem; }
.author-name { font-weight: 600; font-size: 0.95rem; }
.author-detail { font-size: 0.8rem; color: var(--text-light); }

/* ===== EMERGENCY BANNER ===== */
.emergency-banner {
  background: linear-gradient(135deg, #c1121f 0%, var(--danger) 100%);
  padding: 50px 0;
  position: relative;
  overflow: hidden;
}
.emergency-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="80" cy="20" r="40" fill="rgba(255,255,255,0.04)"/><circle cx="20" cy="80" r="30" fill="rgba(255,255,255,0.03)"/></svg>');
}
.emergency-number { font-size: clamp(2.5rem, 6vw, 4rem); font-weight: 700; color: white; font-family: 'Playfair Display', serif; }
.emergency-label { color: rgba(255,255,255,0.85); font-size: 0.9rem; letter-spacing: 2px; text-transform: uppercase; }

/* ===== APPOINTMENT MODAL ===== */
.modal-header-custom {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  color: white;
  padding: 24px 28px;
  border-radius: 16px 16px 0 0;
}
.modal-header-custom .btn-close { filter: invert(1); opacity: 0.8; }
.modal-content { border-radius: 16px; border: none; box-shadow: 0 20px 60px rgba(0,0,0,0.3); }
.form-label { font-size: 0.85rem; font-weight: 600; color: var(--text-dark); margin-bottom: 5px; }
.form-control, .form-select {
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 0.9rem;
  transition: var(--transition);
}
.form-control:focus, .form-select:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(10,92,158,0.1); }
.required-star { color: var(--danger); }

/* ===== FOOTER ===== */
footer {
  background: var(--primary-dark);
  color: rgba(255,255,255,0.8);
  padding: 60px 0 0;
}
footer h5 { color: white; font-size: 1rem; margin-bottom: 1.2rem; position: relative; padding-bottom: 10px; }
footer h5::after { content: ''; position: absolute; bottom: 0; left: 0; width: 30px; height: 2px; background: var(--secondary); }
footer a { color: rgba(255,255,255,0.7); font-size: 0.88rem; line-height: 2; transition: var(--transition); display: block; }
footer a:hover { color: var(--secondary); padding-left: 6px; }
footer p { font-size: 0.88rem; line-height: 1.8; }
.footer-bottom { background: rgba(0,0,0,0.2); padding: 18px 0; margin-top: 40px; font-size: 0.82rem; }
.social-links { display: flex; gap: 10px; margin-top: 16px; }
.social-link { width: 36px; height: 36px; background: rgba(255,255,255,0.1); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: white; font-size: 0.9rem; transition: var(--transition); }
.social-link:hover { background: var(--secondary); color: white; transform: translateY(-2px); }
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; }
.footer-contact-item .icon { color: var(--secondary); margin-top: 3px; flex-shrink: 0; }

/* ===== SCROLL TO TOP ===== */
#scrollTopBtn {
  position: fixed; bottom: 30px; right: 30px; z-index: 999;
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white; border: none; border-radius: 50%;
  display: none; align-items: center; justify-content: center;
  font-size: 1.1rem; cursor: pointer;
  box-shadow: 0 4px 15px rgba(10,92,158,0.4);
  transition: var(--transition);
}
#scrollTopBtn.show { display: flex; }
#scrollTopBtn:hover { transform: translateY(-3px); box-shadow: 0 8px 25px rgba(10,92,158,0.5); }

/* ===== PAGE HERO ===== */
.page-hero {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url('https://images.unsplash.com/photo-1519494026892-80bbd2d6fd0d?w=1200&q=60') center/cover no-repeat;
  opacity: 0.08;
}
.page-hero h1 { color: white; font-size: clamp(1.8rem, 4vw, 3rem); margin-bottom: 0.5rem; position: relative; z-index: 1; }
.page-hero p { color: rgba(255,255,255,0.8); position: relative; z-index: 1; }
.breadcrumb { background: transparent; padding: 0; margin-top: 12px; position: relative; z-index: 1; }
.breadcrumb-item a { color: rgba(255,255,255,0.7); }
.breadcrumb-item.active { color: rgba(255,255,255,0.9); }
.breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.5); }

/* ===== GALLERY ===== */
.gallery-item {
  position: relative; overflow: hidden; border-radius: var(--radius); cursor: pointer;
  aspect-ratio: 1;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,92,158,0.8), transparent);
  opacity: 0; transition: var(--transition);
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem; color: white;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item:hover .gallery-overlay { opacity: 1; }

/* ===== CONTACT ===== */
.contact-info-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px;
  text-align: center;
  transition: var(--transition);
  height: 100%;
}
.contact-info-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.contact-info-icon {
  width: 64px; height: 64px;
  background: var(--accent);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; color: var(--primary);
  margin: 0 auto 16px;
}
.contact-info-card h6 { color: var(--primary-dark); font-size: 1rem; margin-bottom: 8px; }
.contact-info-card p { font-size: 0.88rem; color: var(--text-mid); margin: 0; }

/* ===== MAP SECTION ===== */
.map-container { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.map-container iframe { width: 100%; height: 400px; border: none; display: block; }

/* ===== FACILITY CARDS ===== */
.facility-card {
  background: white;
  border-radius: var(--radius);
  padding: 20px;
  display: flex; align-items: center; gap: 16px;
  border: 1px solid var(--border);
  transition: var(--transition);
}
.facility-card:hover { border-color: var(--primary); background: var(--accent); }
.facility-icon { width: 46px; height: 46px; background: var(--accent); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--primary); font-size: 1.3rem; flex-shrink: 0; }
.facility-card h6 { font-size: 0.95rem; margin: 0; }

/* ===== LIGHTBOX ===== */
#lightbox {
  display: none; position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,0.92);
  align-items: center; justify-content: center;
}
#lightbox.show { display: flex; }
#lightbox img { max-width: 90vw; max-height: 85vh; border-radius: var(--radius); }
#lightbox .close-lb { position: absolute; top: 20px; right: 24px; color: white; font-size: 2rem; cursor: pointer; z-index: 1; }

/* ===== ANIMATIONS ===== */
.fade-up { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-in { opacity: 0; transition: opacity 0.6s ease; }
.fade-in.visible { opacity: 1; }

/* ===== APPOINTMENT PAGE ===== */
.appt-form-wrapper {
  background: white;
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}
.appt-sidebar {
  background: linear-gradient(160deg, var(--primary-dark) 0%, var(--primary) 100%);
  border-radius: var(--radius-lg);
  padding: 36px;
  color: white;
  height: 100%;
}
.appt-sidebar h4 { color: white; margin-bottom: 1.5rem; }
.appt-info-item { display: flex; gap: 14px; margin-bottom: 20px; align-items: flex-start; }
.appt-info-item .ic { width: 38px; height: 38px; background: rgba(255,255,255,0.15); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; }
.appt-info-item strong { display: block; font-size: 0.9rem; color: white; }
.appt-info-item span { font-size: 0.82rem; opacity: 0.8; }

/* ===== EMERGENCY PAGE ===== */
.emergency-hero {
  background: linear-gradient(135deg, #7b0000 0%, var(--danger) 100%);
  min-height: 60vh;
  display: flex; align-items: center;
  position: relative; overflow: hidden;
}
.emergency-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><text x="50%" y="55%" text-anchor="middle" font-size="150" fill="rgba(255,255,255,0.03)">🚑</text></svg>');
  font-size: 20rem;
}
.pulse-ring {
  width: 160px; height: 160px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  position: relative;
  margin: 0 auto 30px;
  animation: pulseRing 2s infinite;
}
.pulse-ring::before, .pulse-ring::after {
  content: '';
  position: absolute; inset: -12px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.3);
  animation: ringExpand 2s infinite;
}
.pulse-ring::after { animation-delay: 0.5s; }
@keyframes pulseRing { 0%,100% { transform: scale(1); } 50% { transform: scale(1.05); } }
@keyframes ringExpand { 0% { transform: scale(1); opacity: 1; } 100% { transform: scale(1.5); opacity: 0; } }

/* ===== ABOUT PAGE ===== */
.timeline { position: relative; }
.timeline::before { content: ''; position: absolute; left: 20px; top: 0; bottom: 0; width: 2px; background: var(--border); }
.timeline-item { padding-left: 55px; position: relative; margin-bottom: 28px; }
.timeline-dot { width: 16px; height: 16px; background: var(--primary); border-radius: 50%; position: absolute; left: 13px; top: 4px; border: 3px solid white; box-shadow: 0 0 0 3px var(--primary); }
.mission-card { background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%); color: white; border-radius: var(--radius-lg); padding: 36px; height: 100%; }
.mission-card h4 { color: white; }
.vision-card { background: linear-gradient(135deg, var(--secondary-dark) 0%, var(--secondary) 100%); color: white; border-radius: var(--radius-lg); padding: 36px; height: 100%; }
.vision-card h4 { color: white; }

/* ===== SUCCESS STATE ===== */
.success-message { display: none; background: #e8f5e9; border: 1px solid #c8e6c9; border-radius: var(--radius); padding: 20px; text-align: center; color: #2e7d32; }
.success-message i { font-size: 2.5rem; margin-bottom: 10px; display: block; }

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
  .hero-section { min-height: auto; padding: 80px 0 60px; }
  .stats-section .stat-divider { display: none; }
}
@media (max-width: 767px) {
  .section-pad { padding: 55px 0; }
  .hero-stats { gap: 1.5rem; }
  .appt-form-wrapper { padding: 24px; }
  .navbar-collapse { background: white; padding: 16px; border-radius: 0 0 12px 12px; box-shadow: var(--shadow); }
}
