/* =====================================================================
   WAVES LAUNDRY - BOOKING PAGE STYLES
   ===================================================================== */

/* 1. HERO BANNER OVERRIDES */
.booking-hero {
  display: flex;
  align-items: center;
  height: 45vh;
  min-height: 380px;
  background:
    linear-gradient(
      to right,
      rgba(15, 23, 42, 0.9) 0%,
      rgba(15, 23, 42, 0.65) 50%,
      rgba(15, 23, 42, 0.3) 100%
    ),
    url("../images/contact/contact_hero_bg.png") no-repeat center center / cover;
  color: var(--white);
  position: relative;
  overflow: hidden;
  padding-top: 140px;
  box-sizing: border-box;
}

.booking-hero-content {
  position: relative;
  z-index: 5;
  max-width: 650px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.booking-hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

/* Breadcrumb Navigation */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
}

.breadcrumb-item {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb-item:hover {
  color: var(--white);
}

.breadcrumb-item.active {
  color: var(--white);
  pointer-events: none;
}

.breadcrumb-separator {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.75rem;
  display: flex;
  align-items: center;
}

/* =====================================================================
   2. BOOKING SECTION OVERRIDES
   ===================================================================== */
.booking-section {
  background-color: var(--background); /* Light premium slate/blue background */
  padding-top: 80px;
  padding-bottom: 80px;
}

.booking-section .section-subtitle {
  color: var(--yellow-dark) !important;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 0.75rem;
}

.booking-section .section-title {
  font-size: 2.25rem;
  font-weight: 800;
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    #239adf 10%,
    var(--secondary) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
  margin-bottom: 16px;
  line-height: 1.25;
}

.booking-section .booking-intro p {
  color: var(--slate-body);
  font-size: 0.95rem;
  max-width: 600px;
  margin: 0 auto 30px auto;
  line-height: 1.6;
}

/* Custom Spacing & card refinements */
.booking-section .wizard-card {
  width: 100%;
  background-color: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: 0 10px 30px -5px rgba(15, 23, 42, 0.08);
}

/* Responsive updates */
@media (max-width: 991px) {
  .booking-hero {
    height: auto;
    min-height: auto;
    padding-top: 150px;
    padding-bottom: 60px;
    background:
      linear-gradient(
        to bottom,
        rgba(15, 23, 42, 0.9) 0%,
        rgba(15, 23, 42, 0.7) 100%
      ),
      url("../images/booking/waves_hero_bg.png") no-repeat center center / cover;
  }
  .booking-hero-title {
    font-size: 2.25rem;
    margin-bottom: 10px;
  }
}

@media (max-width: 768px) {
  .booking-section {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .booking-section .section-title {
    font-size: 1.75rem;
  }
}

@media (max-width: 576px) {
  .booking-hero-actions {
    flex-direction: column;
    width: 100%;
  }
  .booking-hero-actions .btn {
    width: 100%;
  }
}

.wizard-step-desc {
  text-align: left;
  margin: 0 0 24px 0;
  max-width: 600px;
}
