/* ===== MEMON CHARITABLE HOSPITAL - CUSTOM CSS ===== */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700;900&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --red: #c2272c;
  --red-dark: #a11f23;
  --red-light: #ff6b6b;
  --white: #fff;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-900: #111827;
}

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

body {
  font-family: 'Inter', sans-serif;
  color: var(--gray-900);
  overflow-x: hidden;
}

/* ===== TOP BAR ===== */
.top-bar {
  background: linear-gradient(to right, var(--red), var(--red-light));
  color: white;
  font-size: 13px;
  padding: 8px 0;
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.top-bar a { color: white; text-decoration: none; }
.top-bar a:hover { opacity: 0.85; }
.top-bar .uan-badge {
  background: rgba(255,255,255,0.2);
  padding: 3px 14px;
  border-radius: 20px;
  font-weight: 600;
}

/* ===== NAVBAR ===== */
.navbar { background: white; box-shadow: 0 2px 20px rgba(0,0,0,0.08); position: sticky; top: 0; z-index: 100; }
.navbar .container { display: flex; justify-content: space-between; align-items: center; padding: 10px 24px; }
.navbar-brand img { height: 70px; width: 70px; object-fit: contain; }
.nav-menu { display: flex; list-style: none; gap: 4px; align-items: center; }
.nav-menu > li { position: relative; }
.nav-menu > li > a {
  display: block;
  padding: 8px 14px;
  color: var(--gray-700);
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  border-radius: 8px;
  transition: all 0.2s;
}
.nav-menu > li > a:hover, .nav-menu > li.active > a { color: var(--red); background: #fff0f0; }
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
  min-width: 220px;
  padding: 8px;
  z-index: 200;
  border: 1px solid var(--gray-100);
}
.nav-menu > li:hover .dropdown-menu { display: block; }
.dropdown-menu a {
  display: block;
  padding: 8px 14px;
  color: var(--gray-700);
  text-decoration: none;
  border-radius: 8px;
  font-size: 14px;
  transition: all 0.2s;
}
.dropdown-menu a:hover { background: #fff0f0; color: var(--red); }
.nav-donate-btn {
  background: linear-gradient(to right, var(--red), var(--red-light));
  color: white !important;
  padding: 8px 20px !important;
  border-radius: 25px !important;
}
.nav-donate-btn:hover { opacity: 0.9; background: linear-gradient(to right, var(--red), var(--red-light)) !important; }

/* Mobile nav toggle */
.nav-toggle { display: none; background: none; border: none; cursor: pointer; font-size: 24px; color: var(--red); }
.mobile-menu { display: none; background: white; border-top: 1px solid var(--gray-100); padding: 16px; }
.mobile-menu.open { display: block; }
.mobile-menu a { display: block; padding: 10px 0; border-bottom: 1px solid var(--gray-100); color: var(--gray-700); text-decoration: none; font-weight: 500; }
.mobile-menu a:hover { color: var(--red); }

/* ===== HERO SLIDER ===== */
.hero-slider { position: relative; height: 600px; overflow: hidden; }
.hero-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1s ease; }
.hero-slide.active { opacity: 1; }
.hero-slide img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to right, rgba(0,0,0,0.7) 40%, rgba(0,0,0,0.2)); }
.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  width: 90%;
  max-width: 800px;
}
.hero-badge { display: inline-block; background: var(--red); color: white; font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; padding: 6px 18px; border-radius: 20px; margin-bottom: 20px; }
.hero-title { font-family: 'Playfair Display', serif; font-size: clamp(36px, 6vw, 72px); font-weight: 900; line-height: 1.1; margin-bottom: 20px; }
.hero-title span { color: var(--red-light); }
.hero-subtitle { font-size: 18px; color: rgba(255,255,255,0.85); margin-bottom: 32px; max-width: 600px; margin-left: auto; margin-right: auto; }
.hero-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.slider-dots { position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; z-index: 10; }
.slider-dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,0.5); cursor: pointer; border: none; transition: all 0.3s; }
.slider-dot.active { background: white; transform: scale(1.3); }

/* ===== EMERGENCY BANNER ===== */
.emergency-banner {
  background: linear-gradient(to right, #1a1a2e, #c2272c);
  color: white;
  padding: 20px 0;
}
.emergency-banner .container { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.emergency-banner h3 { font-size: 20px; font-weight: 700; margin-bottom: 4px; }
.emergency-banner p { font-size: 14px; opacity: 0.85; }
.emergency-call-btn { background: white; color: var(--red); font-weight: 700; padding: 12px 28px; border-radius: 30px; text-decoration: none; font-size: 16px; display: flex; align-items: center; gap: 8px; transition: all 0.3s; white-space: nowrap; }
.emergency-call-btn:hover { background: var(--red-light); color: white; }

/* ===== SECTIONS ===== */
section { padding: 80px 0; }
.section-title { font-family: 'Inter', sans-serif; font-size: clamp(28px, 4vw, 42px); font-weight: 700; color: var(--gray-900); margin-bottom: 16px; }
.section-subtitle { color: var(--gray-600); font-size: 16px; line-height: 1.7; max-width: 600px; margin: 0 auto 50px; }
.section-label { display: inline-block; color: var(--red); font-size: 13px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 12px; }

/* ===== BUTTONS ===== */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 12px 28px; border-radius: 30px; font-weight: 600; font-size: 15px; text-decoration: none; transition: all 0.3s; cursor: pointer; border: none; }
.btn-primary { background: linear-gradient(to right, var(--red), var(--red-light)); color: white; box-shadow: 0 8px 25px rgba(194,39,44,0.3); }
.btn-primary:hover { opacity: 0.9; transform: translateY(-2px); box-shadow: 0 12px 30px rgba(194,39,44,0.4); }
.btn-secondary { background: white; color: var(--red); border: 2px solid var(--red); }
.btn-secondary:hover { background: var(--red); color: white; }
.btn-outline-white { background: transparent; color: white; border: 2px solid white; }
.btn-outline-white:hover { background: white; color: var(--red); }

/* ===== ABOUT SECTION ===== */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-img { border-radius: 24px; overflow: hidden; box-shadow: 0 30px 80px rgba(0,0,0,0.15); }
.about-img img { width: 100%; height: 450px; object-fit: cover; }
.about-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 32px; }
.stat-card { background: var(--gray-50); border-radius: 16px; padding: 20px; display: flex; align-items: center; gap: 14px; border: 1px solid var(--gray-100); }
.stat-icon { width: 44px; height: 44px; background: #fff0f0; border-radius: 12px; display: flex; align-items: center; justify-content: center; color: var(--red); font-size: 20px; flex-shrink: 0; }
.stat-val { font-size: 24px; font-weight: 700; color: var(--red); }
.stat-lbl { font-size: 13px; color: var(--gray-600); }

/* ===== SERVICES SECTION ===== */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.service-card {
  background: white;
  border-radius: 20px;
  padding: 32px;
  border: 1px solid var(--gray-100);
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: var(--red);
  transform: scaleY(0);
  transition: transform 0.3s;
}
.service-card:hover { transform: translateY(-8px); box-shadow: 0 25px 60px rgba(0,0,0,0.12); border-color: rgba(194,39,44,0.3); }
.service-card:hover::before { transform: scaleY(1); }
.service-icon { width: 60px; height: 60px; background: #fff0f0; border-radius: 16px; display: flex; align-items: center; justify-content: center; font-size: 28px; margin-bottom: 20px; }
.service-card h3 { font-size: 18px; font-weight: 700; color: var(--gray-900); margin-bottom: 12px; }
.service-card p { color: var(--gray-600); font-size: 14px; line-height: 1.7; }

/* ===== DOCTORS TABLE ===== */
.doctors-table { width: 100%; border-collapse: collapse; border-radius: 16px; overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,0.08); }
.doctors-table thead { background: linear-gradient(to right, var(--red), var(--red-light)); color: white; }
.doctors-table th { padding: 14px 20px; text-align: left; font-size: 14px; font-weight: 600; }
.doctors-table tbody tr { background: white; border-bottom: 1px solid var(--gray-100); transition: background 0.2s; }
.doctors-table tbody tr:hover { background: #fff8f8; }
.doctors-table td { padding: 14px 20px; font-size: 14px; color: var(--gray-700); }
.doctors-table td:first-child { font-weight: 600; color: var(--gray-900); }
.doctor-contact-btn { display: inline-flex; align-items: center; gap: 6px; background: #fff0f0; color: var(--red); padding: 5px 12px; border-radius: 20px; font-size: 13px; font-weight: 600; text-decoration: none; transition: all 0.2s; }
.doctor-contact-btn:hover { background: var(--red); color: white; }

/* ===== CARDS SECTION - 3 CARDS PER ROW ===== */
.cards-container {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 24px !important;
  margin: 30px 0 !important;
  width: 100% !important;
}

.scard {
  background: white;
  border-radius: 20px;
  padding: 24px;
  border: 1px solid var(--gray-100);
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  width: 100% !important;
}

.scard:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(194, 39, 44, 0.15);
  border-color: var(--red-light);
}

.scard::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(to right, var(--red), var(--red-light));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.scard:hover::before {
  transform: scaleX(1);
}

.scard-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.scard-ico {
  width: 50px;
  height: 50px;
  background: #fff0f0;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--red);
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.scard:hover .scard-ico {
  background: var(--red);
  color: white;
  transform: rotate(5deg);
}

.scard-head h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--gray-900);
  margin: 0;
}

.scard p {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 16px;
  flex-grow: 1;
}

.scard-stats {
  display: flex;
  justify-content: space-between;
  background: var(--gray-50);
  border-radius: 12px;
  padding: 12px;
  margin: 12px 0 16px;
  border: 1px solid var(--gray-100);
}

.scard-stats > div {
  text-align: center;
  flex: 1;
}

.sv {
  font-size: 18px;
  font-weight: 700;
  color: var(--red);
  line-height: 1.2;
}

.sl {
  font-size: 11px;
  color: var(--gray-600);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-round {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(to right, var(--red), var(--red-light));
  color: white;
  padding: 12px 20px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  margin-top: 8px;
  box-shadow: 0 4px 15px rgba(194, 39, 44, 0.2);
  width: 100%;
  text-align: center;
}

.btn-round:hover {
  background: linear-gradient(to right, var(--red-dark), var(--red));
  transform: translateX(5px);
  box-shadow: 0 8px 25px rgba(194, 39, 44, 0.3);
  color: white;
}

.btn-round i {
  font-size: 14px;
  transition: transform 0.3s ease;
}

.btn-round:hover i {
  transform: translateX(5px);
}

/* ===== PARTNERS / LOGOS ===== */
.partners-marquee { overflow: hidden; padding: 20px 0; }
.marquee-track { display: flex; gap: 32px; animation: marquee 25s linear infinite; }
.marquee-track:hover { animation-play-state: paused; }
.partner-logo {
  flex-shrink: 0;
  width: 120px; height: 80px;
  background: white;
  border-radius: 12px;
  padding: 12px;
  border: 2px solid var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  transition: all 0.3s;
}
.partner-logo:hover { border-color: rgba(194,39,44,0.3); box-shadow: 0 8px 25px rgba(0,0,0,0.1); }
.partner-logo img { max-width: 100%; max-height: 100%; object-fit: contain; }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ===== GALLERY ===== */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px; }
.gallery-item { border-radius: 16px; overflow: hidden; aspect-ratio: 4/3; position: relative; cursor: pointer; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay { position: absolute; inset: 0; background: rgba(194,39,44,0.7); opacity: 0; transition: opacity 0.3s; display: flex; align-items: center; justify-content: center; color: white; font-size: 32px; }
.gallery-item:hover .gallery-overlay { opacity: 1; }

/* ===== LIGHTBOX ===== */
.lightbox { position: fixed; inset: 0; background: rgba(0,0,0,0.95); z-index: 9999; display: none; align-items: center; justify-content: center; }
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 90vh; border-radius: 12px; object-fit: contain; }
.lightbox-close { position: absolute; top: 20px; right: 20px; color: white; font-size: 36px; cursor: pointer; background: none; border: none; line-height: 1; }

/* ===== CONTACT SECTION ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: start; }
.contact-info-card { background: white; border-radius: 20px; padding: 32px; border: 1px solid var(--gray-100); box-shadow: 0 8px 30px rgba(0,0,0,0.05); }
.contact-item { display: flex; gap: 16px; align-items: flex-start; padding: 20px 0; border-bottom: 1px solid var(--gray-100); }
.contact-item:last-child { border-bottom: none; }
.contact-icon { width: 48px; height: 48px; background: #fff0f0; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 22px; flex-shrink: 0; }
.contact-item h4 { font-size: 14px; font-weight: 700; color: var(--gray-900); margin-bottom: 4px; }
.contact-item p, .contact-item a { font-size: 14px; color: var(--gray-600); text-decoration: none; display: block; }
.contact-item a:hover { color: var(--red); }
.map-container { border-radius: 20px; overflow: hidden; height: 350px; box-shadow: 0 8px 30px rgba(0,0,0,0.1); }
.map-container iframe { width: 100%; height: 100%; border: none; }

/* ===== DONATION SECTION ===== */
.donation-section { background: linear-gradient(135deg, var(--red), var(--red-dark)); color: white; padding: 80px 0; text-align: center; }
.bank-details { background: rgba(255,255,255,0.1); border-radius: 20px; padding: 32px; display: inline-block; margin-top: 32px; backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.2); }
.bank-details h4 { font-size: 14px; opacity: 0.8; margin-bottom: 8px; }
.bank-details p { font-size: 18px; font-weight: 700; letter-spacing: 1px; }
.account-number { font-size: 22px; font-weight: 800; letter-spacing: 2px; background: rgba(255,255,255,0.15); padding: 10px 24px; border-radius: 10px; margin: 8px 0; display: inline-block; }

/* ===== FOOTER ===== */
footer { background: var(--gray-900); color: white; padding: 60px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand p { color: rgba(255,255,255,0.6); font-size: 14px; line-height: 1.8; margin-top: 16px; }
.footer-brand img { height: 60px; filter: brightness(0) invert(1); }
footer h5 { font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 20px; color: var(--red-light); }
footer ul { list-style: none; }
footer ul li { margin-bottom: 10px; }
footer ul li a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 14px; transition: color 0.2s; }
footer ul li a:hover { color: white; }
.footer-bottom { background: rgba(0,0,0,0.3); padding: 20px 0; margin-top: 20px; }
.footer-bottom .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { color: rgba(255,255,255,0.5); font-size: 13px; }
.social-links { display: flex; gap: 12px; }
.social-link { width: 36px; height: 36px; background: rgba(255,255,255,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; text-decoration: none; font-size: 16px; transition: all 0.2s; }
.social-link:hover { background: var(--red); }

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float { position: fixed; bottom: 28px; right: 28px; z-index: 999; width: 56px; height: 56px; background: linear-gradient(135deg, #25D366, #128C7E); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; font-size: 26px; text-decoration: none; box-shadow: 0 8px 25px rgba(37,211,102,0.4); transition: all 0.3s; animation: float 3s ease-in-out infinite; }
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 12px 35px rgba(37,211,102,0.5); animation: none; }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

/* ===== PAGE HEADERS ===== */
.page-header { position: relative; height: 320px; display: flex; align-items: center; justify-content: center; overflow: hidden; background: var(--gray-900); }
.page-header img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.4; }
.page-header-content { position: relative; z-index: 1; text-align: center; color: white; }
.page-header h1 {font-family: 'Inter', sans-serif; font-size: clamp(32px, 5vw, 56px); font-weight: 900; margin-bottom: 12px; }
.page-header p { font-size: 16px; opacity: 0.8; }

/* ===== CARDS GENERAL ===== */
.card { background: white; border-radius: 20px; overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,0.07); border: 1px solid var(--gray-100); transition: all 0.3s; }
.card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.12); }
.card-body { padding: 24px; }

/* ===== EVENTS ===== */
.event-card { display: flex; gap: 20px; background: white; border-radius: 16px; padding: 24px; border: 1px solid var(--gray-100); box-shadow: 0 4px 15px rgba(0,0,0,0.05); transition: all 0.3s; }
.event-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.1); }
.event-date { background: linear-gradient(to bottom, var(--red), var(--red-dark)); color: white; border-radius: 12px; padding: 14px; text-align: center; min-width: 60px; flex-shrink: 0; }
.event-date .day { font-size: 24px; font-weight: 800; line-height: 1; }
.event-date .month { font-size: 11px; text-transform: uppercase; letter-spacing: 1px; }
.event-content h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.event-content p { font-size: 14px; color: var(--gray-600); line-height: 1.6; }

/* ===== CAREERS ===== */
.job-card { background: white; border-radius: 20px; padding: 28px; border: 1px solid var(--gray-100); box-shadow: 0 4px 20px rgba(0,0,0,0.05); margin-bottom: 20px; transition: all 0.3s; }
.job-card:hover { border-color: rgba(194,39,44,0.3); box-shadow: 0 12px 40px rgba(0,0,0,0.1); }
.job-card h3 { font-size: 19px; font-weight: 700; margin-bottom: 8px; }
.job-badge { display: inline-block; background: #fff0f0; color: var(--red); font-size: 12px; font-weight: 700; padding: 3px 12px; border-radius: 20px; margin-bottom: 12px; }

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #f1f1f1; }
::-webkit-scrollbar-thumb { background: var(--red); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--red-dark); }

/* ===== CONTAINER ===== */
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
  .cards-container { 
    grid-template-columns: repeat(3, 1fr) !important;
  }
}

@media (max-width: 992px) {
  .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-menu { display: none; }
  .nav-toggle { display: block; }
  .cards-container { 
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 768px) {
  .cards-container { 
    grid-template-columns: repeat(2, 1fr) !important;
  }
  .scard {
    padding: 20px;
  }
  .scard-ico {
    width: 45px;
    height: 45px;
    font-size: 22px;
  }
  .scard-head h3 {
    font-size: 18px;
  }
}

@media (max-width: 600px) {
  .hero-slider { height: 460px; }
  .footer-grid { grid-template-columns: 1fr; }
  section { padding: 50px 0; }
  .about-stats { grid-template-columns: 1fr; }
  .emergency-banner .container { flex-direction: column; text-align: center; }
  .top-bar .container { flex-direction: column; text-align: center; font-size: 12px; }
  .cards-container { 
    grid-template-columns: 1fr !important;
  }
}

/* ===== BG COLORS ===== */
.bg-light { background: var(--gray-50); }
.bg-white { background: white; }
.text-center { text-align: center; }
.text-red { color: var(--red); }
.mb-0 { margin-bottom: 0; }

/* ===== SPECIALITY PAGE ===== */
.speciality-page-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: start; }
.emergency-features { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 24px; }
.emergency-feature { background: var(--gray-50); border-radius: 12px; padding: 16px; display: flex; align-items: center; gap: 12px; }
.emergency-feature span { font-size: 22px; }
.emergency-feature p { font-size: 14px; font-weight: 600; color: var(--gray-700); }