/* ── Booking Section (Modern Premium) ── */
.booking-section {
  max-width: 1120px;
  margin: 0 auto;
  padding: var(--space-3xl) var(--space-md);
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--bg-secondary);
  border: 1px solid var(--color-primary-light);
  color: var(--color-primary);
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-semibold);
  padding: 5px 14px;
  border-radius: var(--radius-full);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: var(--space-sm);
}

.section-title {
  font-weight: var(--font-weight-bold);
  color: var(--color-black);
  letter-spacing: -0.03em;
  line-height: var(--line-height-tight);
  margin-bottom: var(--space-xs);
}

.section-subtitle {
  font-size: var(--font-size-base);
  color: var(--color-gray-600);
  line-height: var(--line-height-relaxed);
  margin-bottom: var(--space-2xl);
}

/* ── Layout ── */
.booking-layout {
  display: flex;
  gap: var(--space-2xl);
  align-items: stretch;
}

/* ── Booking Image ── */
.booking-image-wrapper {
  flex-shrink: 0;
  width: 50%;
  height: auto;
  position: relative;
}

.booking-process-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* fills container properly */
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-2xl);
  display: block;
}

/* ── Step Cards (Right side) ── */
.steps-list {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.step-card {
  background: var(--color-white);
  border: 1px solid var(--color-gray-200);
  border-radius: var(--radius-md);
  padding: var(--space-xs) var(--space-sm);
  cursor: pointer;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.step-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--color-primary);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform var(--transition-base) ease;
  border-radius: 0 4px 4px 0;
}

.step-card:hover {
  border-color: var(--color-primary-light);
  box-shadow: var(--shadow-md);
}

.step-card.active {
  border-color: var(--color-primary);
  background: var(--bg-secondary);
  box-shadow: var(--shadow-lg);
}

.step-card.active::before {
  transform: scaleY(1);
}

.step-header {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.step-number {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--color-gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-bold);
  color: var(--color-gray-400);
  flex-shrink: 0;
  transition: all var(--transition-base);
}

.step-card.active .step-number {
  background: var(--color-primary);
  color: var(--color-black);
}

.step-header-text h4 {
  margin: 0;
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-bold);
  color: var(--color-black);
  margin-bottom: 2px;
}

.step-header-text span {
  font-size: var(--font-size-xs);
  color: var(--color-primary);
  font-weight: var(--font-weight-semibold);
}

.step-description {
  font-size: var(--font-size-sm);
  color: var(--color-gray-600);
  line-height: var(--line-height-relaxed);
  margin-top: var(--space-xs);
  padding-left: 50px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all var(--transition-base) ease;
}

.step-card.active .step-description {
  max-height: 120px;
  opacity: 1;
}

/* Progress connector line */
.step-card:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 41px;
  bottom: -14px;
  width: 2px;
  height: 14px;
  background: var(--color-gray-200);
  z-index: 1;
}

.step-card.active:not(:last-child)::after {
  background: var(--color-primary);
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .booking-layout {
    flex-direction: column;
    align-items: center;
  }

  .booking-image-wrapper {
    position: static;
    width: 100%;
    max-width: 380px;
  }

  .steps-list {
    width: 100%;
  }
}

@media (max-width: 520px) {
  .section-title {
    font-size: var(--font-size-xl);
  }

  .booking-section {
    padding: var(--space-xl) var(--space-sm);
  }

  .step-card {
    padding: var(--space-sm) var(--space-md);
  }

  .step-description {
    padding-left: 0;
  }
}