/*
 * Healing Rain Lifecare Surgery - Custom Bespoke Stylesheet
 * Strictly vanilla CSS - no Tailwind, no external frameworks.
 */

:root {
  --primary-blue: #2c63a4;
  --dark-blue: #1b4372;
  --light-blue: #f0f5fa;
  --accent-yellow: #ffbc00;
  --charcoal: #1c2d42;
  --slate-gray: #4a5c6e;
  --border-color: #e5edf5;
  --white: #ffffff;
  --font-sans: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-title: 'Plus Jakarta Sans', var(--font-sans);
  --nav-height: 76px;
  --transition-speed: 0.25s;
}

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

body {
  font-family: var(--font-sans);
  color: var(--charcoal);
  background-color: #f7fafe;
  line-height: 1.6;
  overflow-x: hidden;
}

/* --- STICKY NAV HEADER --- */
.nav-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nav-height);
  background-color: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 2px solid var(--border-color);
  z-index: 1000;
  display: flex;
  align-items: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.nav-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Navigation Brand Logo on Desktop */
.nav-brand-desktop {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav-corporate-logo {
  max-width: 220px;
  max-height: 48px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.nav-droplet-icon {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.nav-brand-text {
  display: flex;
  flex-direction: column;
}

.nav-main-title {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--primary-blue);
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.nav-sub-title {
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 0.6rem;
  color: var(--dark-blue);
  letter-spacing: 0.3em;
  margin-top: 1px;
}

/* Pill-Shaped Navigation Container */
.pill-nav-container {
  border: 1px solid var(--border-color);
  padding: 4px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  background-color: var(--white);
  box-shadow: 0 2px 8px rgba(0, 115, 230, 0.03);
}

.pill-nav-item {
  color: var(--primary-blue);
  text-decoration: none;
  padding: 8px 18px;
  font-weight: 600;
  font-size: 0.92rem;
  border-radius: 50px;
  transition: all var(--transition-speed) ease;
  user-select: none;
}

.pill-nav-item:hover {
  background-color: var(--light-blue);
}

.pill-nav-item.active {
  background-color: var(--primary-blue);
  color: var(--white);
}


/* --- MOBILE HAMBURGER BUTTON --- */
.mobile-hamburger-btn {
  display: none; /* Hidden on desktop */
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  align-items: center;
  justify-content: center;
}

.hamburger-icon-svg {
  width: 32px;
  height: 32px;
  stroke: var(--primary-blue);
  transition: transform var(--transition-speed);
}

/* --- MOBILE DRAWER OVERLAY & BOX --- */
.mobile-drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-speed) ease;
  display: flex;
  justify-content: flex-end; /* Slides out from the right */
}

.mobile-drawer-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.mobile-drawer-box {
  width: 80%;
  max-width: 320px;
  height: 100%;
  background-color: var(--white);
  padding: 40px 24px;
  position: relative;
  box-shadow: -5px 0 25px rgba(0, 0, 0, 0.15);
  transform: translateX(100%);
  transition: transform var(--transition-speed) ease-in-out;
  display: flex;
  flex-direction: column;
}

.mobile-drawer-overlay.active .mobile-drawer-box {
  transform: translateX(0);
}

.drawer-close-btn {
  position: absolute;
  top: 15px;
  right: 20px;
  background: none;
  border: none;
  font-size: 2.2rem;
  color: var(--slate-gray);
  cursor: pointer;
  line-height: 1;
}

.drawer-header {
  margin-top: 25px;
  margin-bottom: 40px;
  display: flex;
  justify-content: center;
}

.drawer-logo {
  max-width: 200px;
  height: auto;
  object-fit: contain;
}

.drawer-nav-menu {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex-grow: 1;
}

.drawer-nav-item {
  font-family: var(--font-title);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--charcoal);
  text-decoration: none;
  padding: 10px 14px;
  border-radius: 10px;
  background-color: transparent;
  transition: background-color 0.2s, color 0.2s;
}

.drawer-nav-item:hover, .drawer-nav-item:active {
  background-color: var(--light-blue);
  color: var(--primary-blue);
}

.drawer-footer-contact {
  border-top: 1px solid var(--border-color);
  padding-top: 20px;
  font-size: 0.88rem;
  color: var(--slate-gray);
}

.drawer-emergency-p {
  margin-bottom: 8px;
}

.drawer-emergency-p strong {
  color: #dd2c00; /* Distinct emergency warning shade */
}


/* --- PARALLAX BACKGROUND SECTION (RELATIVE UPPERHALF) --- */
.hero-parallax-bg {
  position: relative;
  margin-top: var(--nav-height);
  left: 0;
  width: 100%;
  height: auto;
  z-index: 1;
  background-color: var(--white);
  /* Prevent interaction clipping issue, links within here should still be clickable if needed */
  pointer-events: auto;
}

/* Top white strip holding centered logo and female doctor */
.hero-upper-white {
  background-color: var(--white);
  padding: 15px 0 0 0;
  border-bottom: 1px solid var(--border-color);
}

/* Consistent margins */
.hero-inside-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: center; /* Centered horizontally */
  position: static;
  height: 200px; /* Exact spacing on desktop - collapsed from 340px to eliminate whitespace */
}

/* Center Logo group in the white top part */
.main-logo-group {
  display: flex;
  flex-direction: column;
  align-items: center; /* Centered horizontally */
  text-align: center; /* Centered text content */
  justify-content: center;
  flex: 1;
}

.main-corporate-logo {
  max-width: 340px;
  max-height: 155px;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.main-droplet-logo {
  width: 80px;
  height: 80px;
  margin-bottom: 12px;
  object-fit: contain;
}

.main-logo-title {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 2.3rem;
  color: var(--primary-blue);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.main-logo-sub {
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--dark-blue);
  letter-spacing: 0.44em;
  margin-top: 5px;
  text-transform: uppercase;
}

/* Doctor Portrait Overlap Container */
.doctor-portrait-container {
  position: absolute;
  right: 24px;
  bottom: 0; /* Sits perfectly at the bottom of the blue section right above the white part */
  height: 480px;  /* Spans long, high definition */
  z-index: 2;
  display: flex;
  align-items: flex-end;
}

@media (min-width: 1200px) {
  .doctor-portrait-container {
    right: calc((100% - 1200px) / 2 + 24px);
  }
}

.dr-image-element {
  height: 100%;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.08));
  /* We will dynamically adjust to transparent on runtime load */
  transition: opacity 0.3s ease;
  object-position: bottom;
}

/* Bright Blue Who we are section */
.hero-lower-blue {
  background-color: var(--primary-blue);
  padding: 85px 0 95px 0;
  color: var(--white);
  border-bottom: 1px solid var(--dark-blue);
  position: relative;
  z-index: 1;
  text-align: center;
}

.blue-inside-container {
  width: 100%;
  max-width: 850px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.blue-section-heading {
  font-family: var(--font-title);
  font-size: 2.2rem;
  font-weight: 700;
  color: #facc15; /* Beautiful golden yellow matching reference images */
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}

.blue-section-text-wrapper {
  max-width: 100%;
}

.blue-paragraph {
  font-size: 1.12rem;
  font-weight: 400;
  line-height: 1.7;
  margin-bottom: 20px;
  opacity: 0.98;
}

.blue-paragraph:last-child {
  margin-bottom: 0;
}


/* --- RELATIVE SCROLL COVER WRAPPER --- */
.our-services-wrapper {
  position: relative;
  z-index: 10; /* Slide above the sticky header section */
  background-color: #fafbfc;
  box-shadow: 0 -15px 40px rgba(0, 50, 100, 0.05); /* Shadow on overlay */
  /* Margin-top dynamic buffer set inside scripts.js based on header height */
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  padding-top: 1px; /* Avoid collapsing margin */
  overflow: hidden;
}

.services-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 24px 40px 24px;
}

.services-title-heading {
  font-family: var(--font-title);
  font-size: 2.1rem;
  font-weight: 700;
  color: var(--charcoal);
  text-align: center;
  margin-bottom: 50px;
  letter-spacing: -0.01em;
  position: relative;
}

.services-title-heading::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  height: 3px;
  background-color: var(--primary-blue);
  border-radius: 2px;
}

/* Responsive Grid setup */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* Default 2 columns on desktop */
  gap: 30px;
  margin-bottom: 60px;
}

/* Service Card Design */
.service-card {
  display: flex; /* Horizontal row format on desktop */
  background-color: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.02);
  border: 1px solid #ebf1f7;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 115, 230, 0.06);
}

.service-image-box {
  flex: 0 0 240px; /* Fixed width on desktop */
  height: auto;
  min-height: 200px;
  overflow: hidden;
  position: relative;
}

.service-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

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

.service-content-container {
  flex: 1;
  padding: 24px;
  display: flex;
  flex-direction: column;
}

.service-title-text {
  font-family: var(--font-title);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.service-box-checkbox {
  font-size: 1.1rem;
  color: var(--primary-blue);
  opacity: 0.8;
}

.service-card-text-wrapper {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-desc-paragraph {
  font-size: 0.92rem;
  color: var(--slate-gray);
  line-height: 1.55;
}


/* --- BOOKINGS TRIGGER --- */
.bookings-btn-section {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 60px;
}

.big-bookings-pill {
  font-family: var(--font-title);
  background-color: var(--primary-blue);
  color: var(--white);
  font-size: 1.3rem;
  font-weight: 600;
  padding: 14px 50px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 115, 230, 0.2);
  transition: all 0.3s ease;
  outline: none;
}

.big-bookings-pill:hover {
  background-color: var(--dark-blue);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 115, 230, 0.35);
}

.big-bookings-pill:active {
  transform: translateY(1px);
}


/* --- CLIENT REVIEWS SECTION (DYNAMIC SLIDER) --- */
.reviews-section {
  max-width: 800px;
  margin: 20px auto 40px auto;
  padding: 50px 24px 60px 24px;
  background-color: var(--white);
  border-top: 1px solid var(--border-color);
}

.reviews-section-title {
  font-family: var(--font-title);
  font-size: 1.65rem;
  color: var(--charcoal);
  text-align: center;
  margin-bottom: 35px;
  font-weight: 700;
  letter-spacing: -0.02e;
}

.reviews-slider-viewport {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.reviews-slider-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  width: 100%;
}

.review-slide {
  flex: 0 0 100%;
  width: 100%;
  padding: 10px 20px;
  box-sizing: border-box;
  opacity: 0.15;
  transition: opacity 0.6s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.review-slide.active {
  opacity: 1;
}

.review-user-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 18px;
}

.review-user-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background-color: rgba(29, 78, 216, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid rgba(29, 78, 216, 0.15);
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}

.review-avatar-svg {
  width: 26px;
  height: 26px;
}

.review-user-name {
  font-family: var(--font-title);
  font-size: 1.2rem;
  font-weight: 650;
  color: var(--charcoal);
}

.review-comment {
  font-family: var(--font-sans);
  font-size: 1.1rem;
  line-height: 1.65;
  color: var(--slate-gray);
  font-style: italic;
  max-width: 650px;
  margin: 0 auto;
}

/* Page indicator dots */
.reviews-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.review-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #cbd5e1;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.review-dot.active {
  background-color: var(--primary-blue);
  transform: scale(1.3);
}


/* --- FOOTER / ABOUT SECTION --- */
.about-footer-section {
  background-color: var(--primary-blue);
  color: #e5edf5;
  padding: 80px 0 30px 0;
  font-size: 0.95rem;
  border-top: 4px solid var(--dark-blue);
}

.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-col h4 {
  font-family: var(--font-title);
  color: var(--white);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 24px;
  position: relative;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 24px;
  height: 2px;
  background-color: var(--primary-blue);
}

.brand-col {
  padding-right: 40px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--white);
  margin-bottom: 18px;
}

.footer-droplet {
  width: 28px;
  height: 28px;
}

.footer-brand-mission {
  line-height: 1.6;
  font-size: 0.9rem;
}

.footer-col ul {
  list-style-type: none;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul li a {
  color: #c4d1e2;
  text-decoration: none;
  transition: color 0.2s ease;
  font-size: 0.9rem;
}

.footer-col ul li a:hover {
  color: var(--white);
  padding-left: 2px;
}

.hours-line {
  margin-bottom: 8px;
  font-size: 0.9rem;
}

.hours-line.emergency {
  color: #ff8080;
  font-weight: 600;
  margin-top: 12px;
}

.contact-line {
  margin-bottom: 12px;
  font-size: 0.9rem;
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 30px 24px 0 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  font-size: 0.85rem;
}


/* --- INTERACTIVE CALENDAR BOOKING MODAL --- */
.booking-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(14, 27, 47, 0.6);
  backdrop-filter: blur(4px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.booking-modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.booking-modal-box {
  background-color: var(--white);
  border-radius: 20px;
  width: 90%;
  max-width: 500px;
  max-height: 92vh;
  overflow-y: auto;
  padding: 30px;
  position: relative;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  transform: scale(0.95);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.15);
}

.booking-modal-overlay.active .booking-modal-box {
  transform: scale(1);
}

.modal-close-btn {
  position: absolute;
  top: 15px;
  right: 20px;
  background: transparent;
  border: none;
  font-size: 1.8rem;
  color: var(--slate-gray);
  cursor: pointer;
  line-height: 1;
  outline: none;
  transition: color 0.15s ease;
}

.modal-close-btn:hover {
  color: var(--charcoal);
}

.modal-header {
  text-align: center;
  margin-bottom: 15px;
}

.modal-droplet-icon {
  width: 36px;
  height: 36px;
  margin-bottom: 8px;
}

.modal-header h3 {
  font-family: var(--font-title);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 4px;
}

.modal-header p {
  font-size: 0.85rem;
  color: var(--slate-gray);
}

.modal-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.modal-form.hidden {
  display: none;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.form-row label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--charcoal);
}

.form-row select,
.form-row input {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  padding: 9px 12px;
  border-radius: 8px;
  border: 1px solid #cbdbeb;
  outline: none;
  color: var(--charcoal);
  background-color: var(--white);
  transition: border-color 0.2s ease;
}

.form-row select:focus,
.form-row input:focus {
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 3px rgba(0, 115, 230, 0.08);
}

.date-time-flex {
  display: flex;
  gap: 10px;
}

.date-time-flex input,
.date-time-flex select {
  flex: 1;
}

.modal-submit-pill {
  font-family: var(--font-title);
  background-color: var(--primary-blue);
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 11px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s ease;
  margin-top: 5px;
}

.modal-submit-pill:hover {
  background-color: var(--dark-blue);
}

/* Success Form screen */
.booking-success-wrapper {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px 0;
}

.booking-success-wrapper.active {
  display: flex;
}

.success-icon-badge {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background-color: #e1f7ec;
  color: #10b981;
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  animation: scaleUp 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.booking-success-wrapper h4 {
  font-family: var(--font-title);
  color: var(--charcoal);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.booking-success-wrapper p {
  color: var(--slate-gray);
  font-size: 0.95rem;
  margin-bottom: 12px;
  line-height: 1.5;
}

.success-subheading {
  font-size: 0.82rem !important;
  color: #7a8d9f !important;
  margin-bottom: 24px !important;
}

.secondary-theme-btn {
  background-color: #cbdbee;
  color: var(--charcoal);
  width: 100%;
  max-width: 200px;
}

.secondary-theme-btn:hover {
  background-color: #bcd1e8;
}

@keyframes scaleUp {
  0% { transform: scale(0); }
  100% { transform: scale(1); }
}


/* --- RESPONSIVE MEDIA QUERIES --- */

/* Tablet & Mobile Screens */
@media (max-width: 991px) {
  :root {
    --nav-height: 68px;
  }

  /* Sticky Navigation Drawer & Hamburger on Mobile */
  .nav-brand-desktop {
    display: flex;
    align-items: center;
    max-width: 180px;
  }

  .nav-container {
    justify-content: space-between;
    padding: 0 16px;
  }

  /* Hide raw pill container on mobile */
  .pill-nav-container {
    display: none !important;
  }

  /* Show clickable hamburger menu on mobile */
  .mobile-hamburger-btn {
    display: flex;
  }

  /* Blue banner Who we are segment on mobile */
  .hero-lower-blue {
    padding: 60px 16px 75px 16px;
  }

  .blue-inside-container {
    max-width: 100%;
    padding: 0;
  }

  .blue-section-heading {
    font-size: 1.75rem;
    margin-bottom: 18px;
  }

  .blue-paragraph {
    font-size: 0.98rem;
    line-height: 1.62;
    margin-bottom: 16px;
  }

  /* Grid becomes single column */
  .services-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  /* Stacked card layout on mobile */
  .service-card {
    flex-direction: column;
    border-radius: 12px;
  }

  .service-image-box {
    flex: 1 1 auto;
    width: 100%;
    height: 220px;
  }

  .service-content-container {
    padding: 20px;
  }

  .service-title-text {
    font-size: 1.15rem;
  }

  .service-desc-paragraph {
    font-size: 0.88rem;
  }

  /* Bookings modal sizing */
  .booking-modal-box {
    padding: 20px 16px;
  }

  /* Footer layout shift */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .brand-col {
    padding-right: 0;
  }
}

/* Very small devices optimization */
@media (max-width: 480px) {
  .pill-nav-item {
    padding: 6px 8px;
    font-size: 0.76rem;
  }

  .main-logo-title {
    font-size: 1.35rem;
  }

  .doctor-portrait-container {
    height: 260px;
  }

  .big-bookings-pill {
    width: 100%;
    font-size: 1.15rem;
    padding: 12px 0;
  }
}

/* Custom bookings emergency info pill style */
.booking-emergency-info {
  background-color: #eff6ff;
  border-left: 4px solid var(--primary-blue, #0073e6);
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 0.95rem;
  color: #1e3a8a;
  margin-bottom: 5px;
  text-align: center;
}
.booking-emergency-info strong {
  color: var(--primary-blue, #0073e6);
  font-size: 1.05rem;
}
