:root {
  --primary-cyan: #00a8ec;
  --primary-cyan-hover: #0092cf;
  --primary-cyan-light: #e0f2fe;
  --secondary-blue: #0284c7;
  --emergency-red: #ef4444;
  --emergency-red-dark: #dc2626;
  --dark-navy-bg: #0c1c2e;
  --text-heading: #081626;
  --text-dark: #2c3e50;
  --text-muted: #5f7082;
  --bg-page: #ffffff;
  --card-bg-light: #ebf6fe;
  --border-light: #d8edf9;
  
  --font-heading: 'Roboto', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 28px;
  font-weight: 400;
  color: var(--text-dark);
  background-color: var(--bg-page);
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}

/* ---------------- Emergency Page Wrapper ---------------- */
.emergency-page-wrapper {
  width: 100%;
  padding: 24px 24px 0px;
}

.emergency-container {
  max-width: 1350px;
  margin: 0 auto;
}

/* ---------------- Common Section Headings ---------------- */
.section-heading-main {
  font-family: var(--font-heading);
  font-size: 36px;
  line-height: 48px;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 20px;
  letter-spacing: -0.2px;
}

.section-heading-main.text-center {
  text-align: center;
}

.section-subtitle {
  font-family: var(--font-body);
  font-size: 15.5px;
  line-height: 25px;
  color: var(--text-muted);
  max-width: 820px;
  margin: -20px auto 36px auto;
}

.section-subtitle.text-center {
  text-align: center;
}

.highlight-cyan {
  color: var(--primary-cyan);
}

.about-body-text {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 28px;
  font-weight: 400;
  color: var(--text-muted);
  text-align: justify;
  margin-bottom: 20px;
}

.about-body-text:last-child {
  margin-bottom: 0;
}

/* ==========================================================================
   1. EMERGENCY HERO BANNER SECTION
   ========================================================================== */
.emergency-hero-card {
  position: relative;
  border-radius: 28px;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: var(--dark-navy-bg);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.18);
}

.emergency-hero-bg-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.emergency-hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}

.emergency-hero-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgb(0 0 0 / 73%) 0%, rgb(0 0 0 / 26%) 100%);
}

.emergency-hero-content {
  position: relative;
  z-index: 5;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 40px 20px;
}

.emergency-hero-title {
  font-family: var(--font-heading);
  font-size: 48px;
  line-height: 54px;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  letter-spacing: -0.3px;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.4);
}

.emergency-breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  margin-top: 4px;
}

.breadcrumb-link {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.2s ease, opacity 0.2s ease;
  opacity: 0.92;
}

.breadcrumb-link:hover {
  color: var(--primary-cyan);
  opacity: 1;
}

.breadcrumb-separator {
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
  user-select: none;
}

.breadcrumb-current {
  color: #ffffff;
  opacity: 0.92;
  user-select: none;
}

/* ==========================================================================
   2. SRI CHAKRA MULTISPECIALITY HOSPITAL (24/7 EMERGENCY)
   ========================================================================== */
.emergency-care-section {
  width: 100%;
  background-color: #ffffff;
  padding: 30px 20px;
  border-radius: 28px;
  margin-bottom: 25px;
}

.emergency-care-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: center;
}

.emergency-subheading {
  font-family: var(--font-heading);
  font-size: 24px;
  line-height: 34px;
  font-weight: 600;
  color: var(--text-heading);
  margin-bottom: 16px;
}

.emergency-img-frame {
  width: 100%;
  height: 300px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.emergency-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ==========================================================================
   3. ADVANCED EMERGENCY & TRAUMA CARE CENTER
   ========================================================================== */
.emergency-trauma-section {
  width: 100%;
  background-color: #ebf6fe;
  padding: 40px 30px;
  border-radius: 28px;
  margin-bottom: 25px;
}

.emergency-trauma-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

/* ==========================================================================
   4. 24/7 AMBULANCE & RAPID RESPONSE SERVICES
   ========================================================================== */
.emergency-ambulance-section {
  width: 100%;
  background-color: #ffffff;
  padding: 30px 20px;
  border-radius: 28px;
  margin-bottom: 25px;
}

.ambulance-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: center;
}

.ambulance-img-frame {
  position: relative;
  width: 100%;
  height: 540px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.ambulance-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ambulance-pulse-badge {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(8px);
  color: var(--primary-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

.emergency-badge-tag {
  display: inline-block;
  background: var(--emergency-red);
  color: #000;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  padding: 5px 16px;
  border-radius: 20px;
  margin-bottom: 12px;
  box-shadow: 0 4px 10px rgba(239, 68, 68, 0.25);
}

.ambulance-heading {
  font-family: var(--font-heading);
  font-size: 26px;
  line-height: 36px;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 14px;
}

.ambulance-features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

.ambulance-feature-item {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: 14px;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.03);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.ambulance-feature-item:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 168, 236, 0.4);
}

.feature-icon-cyan {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--primary-cyan-light);
  color: var(--primary-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-text {
  font-family: var(--font-heading);
  font-size: 14.5px;
  line-height: 22px;
  font-weight: 600;
  color: var(--text-heading);
}

.emergency-call-alert {
  background: linear-gradient(135deg, #e11d48 0%, #dc2626 100%);
  color: #ffffff;
  border-radius: 16px;
  padding: 16px 22px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 8px 24px rgba(225, 29, 72, 0.28);
}

.alert-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.alert-text-wrap {
  display: flex;
  flex-direction: column;
  font-family: var(--font-body);
  font-size: 13.5px;
  line-height: 20px;
}

.alert-phone {
  font-size: 16px;
  font-weight: 700;
  margin-top: 2px;
}

.alert-phone a {
  color: #ffffff;
  text-decoration: none;
}

.alert-phone a:hover {
  text-decoration: underline;
}

/* ==========================================================================
   5. COMPREHENSIVE 24/7 EMERGENCY SUPPORT SERVICES
   ========================================================================== */
.emergency-support-section {
  width: 100%;
  background-color: #ebf6fe;
  padding: 40px 30px;
  border-radius: 28px;
}

.emergency-care-highlight-title {
  font-family: var(--font-heading);
  font-size: 16px;
  line-height: 24px;
  font-weight: 700;
  color: var(--primary-cyan);
  margin: -20px auto 25px auto;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-align: center;
}

.support-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.support-card {
  background: #ffffff;
  border: 1px solid rgba(0, 168, 236, 0.16);
  border-radius: 18px;
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 14px;
  box-shadow: 0 6px 18px rgba(0, 168, 236, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.support-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 168, 236, 0.38);
  box-shadow: 0 10px 28px rgba(0, 168, 236, 0.15);
}

.support-card-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #ffffff;
  color: var(--primary-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0, 168, 236, 0.18);
}

.support-card-title {
  font-family: var(--font-heading);
  font-size: 15px;
  line-height: 22px;
  font-weight: 600;
  color: var(--text-heading);
}

/* ==========================================================================
   6. EMERGENCY SPECIALTIES WE HANDLE
   ========================================================================== */
.emergency-specialties-section {
  width: 100%;
  background-color: #ffffff;
  padding: 30px 20px;
  border-radius: 28px;
  margin-bottom: 25px;
}

.specialties-badges-row {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.specialty-badge-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  width: 140px;
  transition: transform 0.25s ease;
}

.specialty-badge-item:hover {
  transform: translateY(-4px);
}

.specialty-circle-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
  transition: transform 0.25s ease;
}

.specialty-badge-title {
  font-family: var(--font-body);
  font-size: 12.5px;
  line-height: 17px;
  font-weight: 600;
  color: var(--text-heading);
}

/* Category Colors */
.bg-indigo { background: #4f46e5; }
.bg-rose { background: #f43f5e; }
.bg-amber { background: #f59e0b; }
.bg-blue { background: #2563eb; }
.bg-cyan { background: #00a8ec; }
.bg-magenta { background: #e11d48; }
.bg-purple { background: #8b5cf6; }

.emergency-protocol-strip {
  background: var(--primary-cyan);
  border-radius: 12px;
  padding: 16px 28px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0, 168, 236, 0.25);
}

.protocol-text {
  font-family: var(--font-heading);
  font-size: 15px;
  line-height: 24px;
  font-weight: 600;
  color: #ffffff;
}

/* ==========================================================================
   7. EXPERIENCED EMERGENCY MEDICAL TEAM
   ========================================================================== */
.emergency-team-section {
  width: 100%;
  background-color: #ebf6fe;
  padding: 40px 30px;
  border-radius: 28px;
}

.emergency-team-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: center;
}

/* ==========================================================================
   8. PATIENT-CENTRIC EMERGENCY CARE APPROACH
   ========================================================================== */
.emergency-approach-section {
  width: 100%;
  background-color: #ffffff;
  padding: 30px 20px;
  border-radius: 28px;
}

.approach-center-wrap {
  text-align: center;
  margin-bottom: 24px;
}

.approach-tag-badge {
  display: inline-block;
  background: var(--primary-cyan);
  color: #ffffff; 
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 18px;
  border-radius: 20px;
  box-shadow: 0 4px 10px rgba(0, 168, 236, 0.22);
}

.emergency-approach-card {
  background: #ebf6fe;
  border: 1px solid rgba(0, 168, 236, 0.16);
  border-radius: 22px;
  padding: 36px 48px;
  max-width: 1080px;
  margin: 0 auto;
  box-shadow: 0 10px 28px rgba(0, 168, 236, 0.08);
  text-align: center;
}

.approach-text {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 28px;
  font-weight: 400;
  color: var(--text-dark);
}
