:root {
  --primary-cyan: #00a8ec;
  --primary-cyan-hover: #0092cf;
  --primary-cyan-light: #e0f2fe;
  --secondary-blue: #0284c7;
  --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;
}

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

.facilities-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;
}

.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. FACILITIES HERO BANNER SECTION
   ========================================================================== */
.facilities-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);
}

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

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

.facilities-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%);
}

.facilities-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;
}

.facilities-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);
}

.facilities-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. SURGICAL EXCELLENCE AT SRI CHAKRA
   ========================================================================== */
.facilities-excellence-section {
  width: 100%;
  background-color: #ffffff;
  padding: 30px 20px;
  border-radius: 28px;
  margin-bottom: 25px;
}

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

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

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

/* ==========================================================================
   3. ADVANCED LAPAROSCOPIC SURGERY EXPERTISE
   ========================================================================== */
.facilities-laparoscopic-section {
  width: 100%;
  background-color: #ebf6fe;
  padding: 40px 30px;
  border-radius: 28px;
}

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

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

/* ==========================================================================
   4. OPERATION SUITE
   ========================================================================== */
.facilities-suite-section {
  width: 100%;
  background-color: #ffffff;
  padding: 30px 20px;
  border-radius: 28px;
}

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

.suite-content-col {
  display: flex;
  flex-direction: column;
}

.suite-subheading {
  font-family: var(--font-heading);
  font-size: 20px;
  line-height: 28px;
  font-weight: 600;
  color: var(--primary-cyan);
  margin-bottom: 16px;
}

.suite-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 24px;
}

.suite-feature-card {
  background: var(--card-bg-light);
  border: 1px solid rgba(0, 168, 236, 0.16);
  border-radius: 16px;
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 12px;
  box-shadow: 0 4px 16px rgba(0, 168, 236, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.suite-feature-card:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 168, 236, 0.38);
  box-shadow: 0 8px 22px rgba(0, 168, 236, 0.14);
}

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

.suite-card-title {
  font-family: var(--font-heading);
  font-size: 14.5px;
  line-height: 20px;
  font-weight: 600;
  color: var(--text-heading);
}

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