/* ========================================
   J&S Mobile Detailing — Online Booking
   Premium black & gold wizard UI
   ======================================== */

.booking-page {
  min-height: 100vh;
  padding-top: var(--header-height);
  background: var(--black);
}

.booking-hero {
  padding: 48px 0 32px;
  border-bottom: 1px solid var(--black-border);
  background: linear-gradient(165deg, #050505 0%, #0a0a0a 100%);
}

.booking-hero__inner {
  max-width: 760px;
}

.booking-hero__eyebrow {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.booking-hero__title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  letter-spacing: var(--tracking-title);
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 12px;
}

.booking-hero__desc {
  font-size: 1.05rem;
  color: var(--grey-light);
  line-height: 1.7;
  max-width: 560px;
}

.booking-main {
  padding: 48px 0 100px;
}

.booking-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 40px;
  align-items: start;
}

/* ---- Progress sidebar ---- */
.booking-progress {
  position: sticky;
  top: calc(var(--header-height) + 24px);
  padding: 28px 24px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(212, 175, 55, 0.12);
  border-radius: 16px;
}

.booking-progress__title {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

.booking-progress__list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.booking-progress__item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 12px 0;
  border-left: 2px solid var(--black-border);
  margin-left: 11px;
  padding-left: 22px;
  position: relative;
  transition: opacity 260ms ease-out;
}

.booking-progress__item:last-child {
  border-left-color: transparent;
}

.booking-progress__item::before {
  content: '';
  position: absolute;
  left: -7px;
  top: 16px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--black-card);
  border: 2px solid var(--black-border);
  transition: border-color 260ms ease-out, background 260ms ease-out, box-shadow 260ms ease-out, transform 260ms ease-out;
}

.booking-progress--transitioning .booking-progress__item--active::before {
  animation: bookingProgressActivePulse 260ms ease-out;
}

@keyframes bookingProgressActivePulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 12px rgba(201, 168, 76, 0.4);
  }
  50% {
    transform: scale(1.12);
    box-shadow: 0 0 18px rgba(201, 168, 76, 0.55);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 12px rgba(201, 168, 76, 0.4);
  }
}

.booking-progress__item--active .booking-progress__label {
  color: var(--white);
  transition: color 260ms ease-out;
}

.booking-progress__item--active::before {
  border-color: var(--gold);
  background: var(--gold);
  box-shadow: 0 0 12px rgba(201, 168, 76, 0.4);
}

.booking-progress__item--complete::before {
  border-color: var(--gold);
  background: var(--gold-dark);
}

.booking-progress__item--upcoming {
  opacity: 0.45;
}

.booking-progress__label {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--grey-light);
  line-height: 1.4;
}

.booking-progress__item--complete .booking-progress__label {
  color: var(--gold-light);
}

/* ---- Wizard panel ---- */
.booking-wizard {
  position: relative;
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: 16px;
  overflow: hidden;
  animation: bookingFadeIn 0.4s ease;
}

@keyframes bookingFadeIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.booking-step {
  display: none;
  padding: 36px 32px;
}

.booking-step--active {
  display: block;
}

.booking-step--leaving {
  display: block;
  opacity: 0.55;
  transform: translateY(-6px);
  pointer-events: none;
  transition: opacity 260ms ease-out, transform 260ms ease-out;
}

.booking-step--entering {
  animation: bookingStepEnter 260ms ease-out forwards;
}

@keyframes bookingStepEnter {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.booking-step__header {
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--black-border);
}

.booking-step__number {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.booking-step__title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: var(--tracking-title);
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 8px;
}

.booking-step__desc {
  font-size: 0.95rem;
  color: var(--grey-light);
  line-height: 1.6;
}

.booking-step__error {
  margin-bottom: 20px;
  padding: 12px 16px;
  font-size: 0.9rem;
  color: #e74c3c;
  background: rgba(231, 76, 60, 0.08);
  border: 1px solid rgba(231, 76, 60, 0.25);
  border-radius: var(--radius);
}

.booking-step__error[hidden] {
  display: none;
}

/* ---- Service selection ---- */
.booking-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.booking-option {
  position: relative;
  cursor: pointer;
}

.booking-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.booking-option__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 120px;
  padding: 24px 16px;
  text-align: center;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--black-border);
  border-radius: 12px;
  transition: border-color var(--transition), background var(--transition), transform var(--transition);
}

.booking-option:hover .booking-option__card {
  border-color: rgba(201, 168, 76, 0.35);
  transform: translateY(-2px);
}

.booking-option input:checked + .booking-option__card {
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.08);
  box-shadow: 0 0 20px rgba(201, 168, 76, 0.12);
}

.booking-option__icon {
  width: 40px;
  height: 40px;
  margin-bottom: 12px;
  color: var(--gold);
}

.booking-option__label {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
}

/* ---- Package selection ---- */
.booking-packages {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.booking-packages__empty {
  padding: 24px;
  text-align: center;
  color: var(--grey);
  font-size: 0.95rem;
}

.booking-package {
  position: relative;
  cursor: pointer;
  display: block;
}

.booking-package input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.booking-package__card {
  position: relative;
  padding: 22px 24px 20px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--black-border);
  border-radius: 14px;
  transition:
    border-color 0.35s ease,
    background 0.35s ease,
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.booking-package:hover .booking-package__card {
  border-color: rgba(212, 175, 55, 0.38);
  transform: translateY(-5px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
}

.booking-package:hover .booking-price-amount {
  color: #e8c96a;
}

.booking-package input:checked + .booking-package__card {
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.06);
  box-shadow: 0 0 24px rgba(201, 168, 76, 0.1);
}

.booking-package__badge {
  position: absolute;
  top: 14px;
  right: 14px;
  padding: 4px 10px;
  font-family: var(--font-heading);
  font-size: 0.52rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(212, 175, 55, 0.85);
  background: transparent;
  border: 1px solid rgba(201, 168, 76, 0.42);
  border-radius: 100px;
  line-height: 1.2;
}

.booking-package__name {
  font-family: var(--font-heading);
  font-size: 1.045rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.88);
  margin: 0 0 10px;
  padding-right: 96px;
  line-height: 1.25;
}

/* ---- Premium price hierarchy ---- */
.booking-price-wrapper {
  position: relative;
  display: inline-block;
  font-size: 2.48rem;
  line-height: 1;
}

.booking-price-label {
  position: absolute;
  top: -0.6rem;
  left: 0.16rem;
  font-family: var(--font-heading);
  font-size: 0.2em;
  font-weight: 600;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: rgba(212, 176, 73, 0.58);
  line-height: 1;
  margin-bottom: -0.12em;
  pointer-events: none;
}

.booking-price-amount {
  display: block;
  font-family: var(--font-heading);
  font-size: 1em;
  font-weight: 800;
  line-height: 1;
  color: var(--gold);
  font-variant-numeric: tabular-nums;
  transition: color 0.35s ease;
}

.booking-package__price {
  margin: 0 0 2px;
}

.booking-package__price > .booking-price-amount {
  font-size: 2.48rem;
}

.booking-package__price-wrap {
  margin-bottom: -0.08em;
}

.booking-package__vehicle-note {
  margin: 0 0 12px;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: rgba(160, 160, 160, 0.85);
  line-height: 1.3;
}

.booking-progress__price-wrap {
  font-size: 1.5rem;
  margin-bottom: -0.1em;
}

.booking-package__includes {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 0;
  padding-left: 0;
  list-style: none;
}

.booking-package__include {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--grey-light);
  line-height: 1.55;
}

.booking-package__check {
  flex-shrink: 0;
  width: 13px;
  height: 13px;
  margin-top: 3px;
  color: rgba(201, 168, 76, 0.75);
}

.booking-package__include span {
  flex: 1;
}

/* ---- Ceramic upsell panel ---- */
.booking-upsell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 6px;
  padding: 22px 24px;
  background: rgba(255, 255, 255, 0.015);
  border: 1px solid rgba(201, 168, 76, 0.14);
  border-radius: 14px;
}

.booking-upsell__title {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 6px;
  line-height: 1.3;
}

.booking-upsell__text {
  font-size: 0.875rem;
  color: var(--grey-light);
  line-height: 1.6;
  max-width: 520px;
  margin: 0;
}

.booking-upsell__btn {
  flex-shrink: 0;
  min-width: auto;
  padding: 12px 20px;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  white-space: nowrap;
}

.booking-package__addons {
  margin-top: 20px;
  padding-top: 20px;
  padding-bottom: 4px;
  border-top: 1px solid var(--black-border);
}

.booking-package__addons[hidden] {
  display: none;
}

.booking-package__addons-title {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.booking-addon {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  margin-bottom: 8px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--black-border);
  border-radius: 8px;
  cursor: pointer;
  transition:
    border-color 0.25s ease,
    background 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
  transform: scale(1);
  transform-origin: center;
}

.booking-addon:last-child {
  margin-bottom: 0;
}

.booking-addon:hover {
  border-color: rgba(212, 175, 55, 0.25);
}

.booking-addon:has(input:checked):not(.booking-upgrade),
.booking-addon--selected:not(.booking-upgrade) {
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.06);
  box-shadow:
    0 0 0 1px rgba(212, 175, 55, 0.5),
    0 0 20px rgba(212, 175, 55, 0.15);
  transform: scale(1.02);
}

.booking-addon input {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  accent-color: var(--gold);
  cursor: pointer;
}

.booking-addon__label {
  flex: 1;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--white);
}

.booking-addon__price {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold-light);
  white-space: nowrap;
}

.booking-upgrades {
  --upgrade-ease: ease-out;
  --upgrade-dur: 240ms;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
  width: 100%;
}

.booking-upgrades--double {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.booking-upgrades .booking-upgrade.booking-addon {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  margin-bottom: 0;
}

.booking-upgrade {
  --upgrade-border: var(--black-border);
  --upgrade-bg: rgba(255, 255, 255, 0.02);
  --upgrade-shadow: none;
  --upgrade-glow: 0;
  position: relative;
  flex-direction: column;
  height: 100%;
  min-height: 132px;
  padding: 18px;
  margin: 0;
  background: var(--upgrade-bg);
  border: 1px solid var(--upgrade-border);
  border-radius: 12px;
  cursor: pointer;
  overflow: hidden;
  box-shadow: var(--upgrade-shadow);
  transition:
    border-color var(--upgrade-dur) var(--upgrade-ease),
    background var(--upgrade-dur) var(--upgrade-ease),
    box-shadow var(--upgrade-dur) var(--upgrade-ease),
    transform var(--upgrade-dur) var(--upgrade-ease);
  transform: translateY(0);
}

.booking-upgrade::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  opacity: var(--upgrade-glow);
  box-shadow: inset 0 0 0 1px rgba(212, 175, 55, 0.08), 0 0 28px rgba(212, 175, 55, 0.14);
  transition: opacity 280ms var(--upgrade-ease);
}

.booking-upgrade:hover:not(.booking-upgrade--selected):not(.booking-addon--selected) {
  --upgrade-border: rgba(212, 175, 55, 0.22);
  --upgrade-bg: rgba(255, 255, 255, 0.035);
  --upgrade-shadow: 0 8px 22px rgba(0, 0, 0, 0.2);
  transform: translateY(-2px);
}

.booking-upgrade--selected,
.booking-upgrade.booking-addon--selected {
  --upgrade-border: rgba(212, 175, 55, 0.52);
  --upgrade-bg: rgba(201, 168, 76, 0.055);
  --upgrade-shadow: 0 0 0 1px rgba(212, 175, 55, 0.18);
  --upgrade-glow: 1;
  transform: translateY(0);
}

.booking-upgrade__input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  width: 0;
  height: 0;
}

.booking-upgrade__body {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-rows: minmax(2.6rem, auto) 1fr;
  gap: 12px;
  flex: 1;
  width: 100%;
  min-height: 100%;
}

.booking-upgrade__header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  gap: 12px;
  min-height: 2.6rem;
}

.booking-upgrade__name {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.35;
  flex: 1;
  min-width: 0;
}

.booking-upgrade__price {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold-light);
  white-space: nowrap;
  flex-shrink: 0;
  line-height: 1.35;
  text-align: right;
}

.booking-upgrade__desc {
  align-self: start;
  font-size: 0.82rem;
  color: var(--grey-light);
  line-height: 1.55;
}

/* ---- Calendar section ---- */
.booking-calendar__heading {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.booking-calendar__icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--gold);
  transform: translateY(10px);
}

.booking-calendar__heading:not(:first-child) {
  margin-top: 32px;
}

/* ---- Vehicle location search ---- */
.booking-location {
  --loc-ease: cubic-bezier(0.4, 0, 0.2, 1);
  --loc-duration: 180ms;
  max-width: 480px;
  margin: 0 auto;
  min-height: 148px;
  position: relative;
}

.booking-location__search-wrap {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity var(--loc-duration) var(--loc-ease), transform var(--loc-duration) var(--loc-ease);
}

.booking-location__search-wrap--active {
  opacity: 1;
  transform: translateY(0);
}

.booking-location__search-wrap--collapsing {
  opacity: 0;
  transform: translateY(-4px) scale(0.985);
  pointer-events: none;
  transition: opacity var(--loc-duration) var(--loc-ease), transform var(--loc-duration) var(--loc-ease);
}

.booking-location__field {
  position: relative;
  display: flex;
  align-items: center;
}

.booking-location__field-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  color: rgba(212, 175, 55, 0.45);
  pointer-events: none;
  z-index: 2;
  transition: color var(--loc-duration) var(--loc-ease), transform var(--loc-duration) var(--loc-ease);
}

.booking-location__field-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.booking-location__field--focused .booking-location__field-icon {
  color: var(--gold);
  transform: translateY(-50%) scale(1.05);
}

.booking-location__field-glow {
  position: absolute;
  inset: -1px;
  border-radius: calc(var(--radius) + 1px);
  pointer-events: none;
  opacity: 0;
  box-shadow: 0 0 0 1px rgba(212, 175, 55, 0.35), inset 0 0 20px rgba(212, 175, 55, 0.06);
  transition: opacity var(--loc-duration) var(--loc-ease);
}

.booking-location__field--focused .booking-location__field-glow {
  opacity: 1;
}

.booking-location__input {
  width: 100%;
  padding: 15px 18px 15px 48px;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--white);
  background: var(--black);
  border: 1px solid rgba(212, 175, 55, 0.18);
  border-radius: var(--radius);
  position: relative;
  z-index: 1;
  transition:
    border-color var(--loc-duration) var(--loc-ease),
    box-shadow var(--loc-duration) var(--loc-ease),
    background var(--loc-duration) var(--loc-ease);
}

.booking-location__input::placeholder {
  color: var(--grey);
  opacity: 1;
  transition: opacity var(--loc-duration) var(--loc-ease), color var(--loc-duration) var(--loc-ease);
}

.booking-location__field--focused .booking-location__input::placeholder {
  opacity: 0.45;
  color: rgba(136, 136, 136, 0.8);
}

.booking-location__field--focused .booking-location__input {
  outline: none;
  border-color: rgba(212, 175, 55, 0.55);
  box-shadow: 0 0 0 1px rgba(212, 175, 55, 0.12), 0 0 24px rgba(212, 175, 55, 0.08);
  background: rgba(8, 8, 8, 0.98);
}

.booking-location__results {
  list-style: none;
  margin: 10px 0 0;
  padding: 6px;
  background: rgba(10, 10, 10, 0.98);
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: var(--radius);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
  max-height: 320px;
  overflow-y: auto;
  animation: bookingLocationPanelIn var(--loc-duration) var(--loc-ease) forwards;
}

@keyframes bookingLocationPanelIn {
  from {
    opacity: 0;
    transform: translateY(8px);
    filter: blur(3px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

.booking-location__option {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 14px 12px 12px;
  border-radius: calc(var(--radius) - 2px);
  cursor: pointer;
  border-left: 2px solid transparent;
  opacity: 0;
  transform: translateY(8px);
  filter: blur(3px);
  animation: bookingLocationOptionIn var(--loc-duration) var(--loc-ease) forwards;
  animation-delay: var(--option-delay, 0ms);
  transition:
    background var(--loc-duration) var(--loc-ease),
    border-color var(--loc-duration) var(--loc-ease),
    transform var(--loc-duration) var(--loc-ease),
    box-shadow var(--loc-duration) var(--loc-ease);
}

@keyframes bookingLocationOptionIn {
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

.booking-location__option-icon {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  color: rgba(212, 175, 55, 0.55);
  transition: color var(--loc-duration) var(--loc-ease);
}

.booking-location__option-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.booking-location__option-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.booking-location__option-name {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.3;
}

.booking-location__option-region {
  font-size: 0.78rem;
  color: var(--grey);
  line-height: 1.35;
}

.booking-location__option:hover,
.booking-location__option--active {
  background: rgba(212, 175, 55, 0.08);
  border-left-color: rgba(212, 175, 55, 0.65);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
}

.booking-location__option:hover .booking-location__option-icon,
.booking-location__option--active .booking-location__option-icon {
  color: var(--gold);
}

.booking-location__option--selecting {
  background: rgba(212, 175, 55, 0.18);
  border-left-color: var(--gold);
  box-shadow: inset 0 0 0 1px rgba(212, 175, 55, 0.25);
  transform: translateY(0);
}

.booking-location__empty {
  margin-top: 12px;
  padding: 28px 26px 26px;
  text-align: center;
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.015) 100%);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  opacity: 0;
  transform: translateY(10px);
  filter: blur(2px);
  transition:
    opacity var(--loc-duration) var(--loc-ease),
    transform var(--loc-duration) var(--loc-ease),
    filter var(--loc-duration) var(--loc-ease);
}

.booking-location__empty--visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.booking-location__empty--leaving {
  opacity: 0;
  transform: translateY(-6px);
  filter: blur(2px);
  pointer-events: none;
}

.booking-location__empty-title {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  line-height: 1.4;
}

.booking-location__empty-body {
  font-size: 0.92rem;
  color: var(--grey-light);
  line-height: 1.65;
  margin-bottom: 10px;
  max-width: 36ch;
  margin-left: auto;
  margin-right: auto;
}

.booking-location__empty-note {
  font-size: 0.85rem;
  color: var(--grey);
  line-height: 1.65;
  margin-bottom: 22px;
  max-width: 38ch;
  margin-left: auto;
  margin-right: auto;
}

.booking-location__empty-cta {
  min-width: 160px;
  padding: 13px 28px;
  font-size: 0.8rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.booking-location__confirmed {
  opacity: 0;
  transform: translateY(8px) scale(0.985);
  transition: opacity 220ms var(--loc-ease), transform 220ms var(--loc-ease);
}

.booking-location__confirmed--visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.booking-location__card {
  padding: 28px 28px 24px;
  text-align: center;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(212, 175, 55, 0.22);
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
}

.booking-location__card-pin {
  display: block;
  font-size: 1.35rem;
  line-height: 1;
  margin-bottom: 12px;
}

.booking-location__card-eyebrow {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.booking-location__card-suburb {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.booking-location__card-status {
  font-size: 0.88rem;
  color: var(--gold-light);
  margin-bottom: 18px;
}

.booking-location__change {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  background: transparent;
  border: none;
  padding: 6px 10px;
  cursor: pointer;
  transition: color var(--loc-duration) var(--loc-ease);
}

.booking-location__change:hover {
  color: var(--gold-light);
}

.booking-nav--location .booking-nav__continue {
  opacity: 0.38;
  transition: opacity var(--loc-duration) var(--loc-ease), box-shadow var(--loc-duration) var(--loc-ease);
}

.booking-nav--location .booking-nav__continue--ready {
  opacity: 1;
}

.booking-nav--location .booking-nav__continue:disabled {
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.booking-nav--location .booking-nav__continue:disabled:hover {
  background: var(--gold);
  transform: none;
  box-shadow: none;
}

@keyframes bookingLocationContinuePulse {
  0% {
    box-shadow: 0 0 0 0 rgba(201, 168, 76, 0);
  }
  45% {
    box-shadow: 0 0 22px 4px rgba(201, 168, 76, 0.32);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(201, 168, 76, 0);
  }
}

.booking-nav--location .booking-nav__continue--pulse {
  animation: bookingLocationContinuePulse 560ms var(--loc-ease) forwards;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.booking-pills--vehicle {
  justify-content: center;
  gap: 12px;
}

.booking-pills--vehicle .booking-pill__label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  font-size: 0.8rem;
}

.booking-pills--vehicle .booking-pill__tick {
  display: none;
}

.booking-pills--vehicle .booking-pill input:checked + .booking-pill__label {
  transform: scale(1);
}

/* ---- Summary card ---- */
.booking-summary-card {
  padding: 28px 24px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: 16px;
}

.booking-summary__total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 2px solid rgba(201, 168, 76, 0.25);
}

.booking-summary__total-label {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
}

.booking-summary__total-price {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--gold);
}

/* ---- Progress running total ---- */
.booking-progress__total {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--black-border);
  text-align: center;
  transition: box-shadow 250ms ease, transform 250ms ease;
  transform: scale(1);
  transform-origin: center top;
  border-radius: 12px;
}

.booking-progress__total--pulse {
  animation: bookingPriceCardPulse 250ms ease forwards;
}

@keyframes bookingPriceCardPulse {
  0% {
    transform: scale(1);
    box-shadow: none;
  }
  45% {
    transform: scale(1.05);
    box-shadow: 0 0 28px rgba(201, 168, 76, 0.22);
  }
  100% {
    transform: scale(1);
    box-shadow: none;
  }
}

.booking-progress__total[hidden] {
  display: none;
}

.booking-progress__total-label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 6px;
}

.booking-progress__total-display {
  position: relative;
  display: inline-block;
}

.booking-progress__total-price {
  font-variant-numeric: tabular-nums;
}

.booking-progress__adjustment {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 8px 14px;
  white-space: nowrap;
  background: rgba(10, 10, 10, 0.96);
  border: 1px solid rgba(201, 168, 76, 0.28);
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.45);
  opacity: 0;
  pointer-events: none;
  z-index: 2;
}

.booking-progress__adjustment[hidden] {
  display: none;
}

.booking-progress__adjustment--visible {
  animation: bookingAdjustmentIn 220ms ease forwards;
}

.booking-progress__adjustment--fade-out {
  animation: bookingAdjustmentOut 280ms ease forwards;
}

@keyframes bookingAdjustmentIn {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

@keyframes bookingAdjustmentOut {
  from {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
  to {
    opacity: 0;
    transform: translateX(-50%) translateY(-4px);
  }
}

.booking-progress__adjustment-title {
  font-family: var(--font-heading);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey);
}

.booking-progress__adjustment-amount {
  position: relative;
  overflow: hidden;
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--gold-light);
}

.booking-progress__adjustment-amount--neutral {
  color: var(--grey-light);
  font-weight: 600;
  font-size: 0.72rem;
}

.booking-progress__adjustment-amount--sparkle::after {
  content: '';
  position: absolute;
  top: 0;
  left: -120%;
  width: 80%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(212, 175, 55, 0.15) 35%,
    rgba(255, 230, 160, 0.55) 50%,
    rgba(212, 175, 55, 0.15) 65%,
    transparent 100%
  );
  animation: bookingSparkleTravel 700ms ease-out forwards;
}

@keyframes bookingSparkleTravel {
  from {
    left: -120%;
  }
  to {
    left: 140%;
  }
}

/* ---- Vehicle type pills ---- */
.booking-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.booking-pill {
  position: relative;
  cursor: pointer;
}

.booking-pill input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.booking-pill__label {
  display: inline-block;
  padding: 10px 20px;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--grey-light);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--black-border);
  border-radius: 100px;
  transition:
    border-color 220ms ease,
    color 220ms ease,
    background 220ms ease,
    box-shadow 220ms ease,
    transform 220ms ease;
  transform: scale(1);
  transform-origin: center;
}

.booking-pill__tick {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  color: var(--gold);
  opacity: 0;
  transform: scale(0.6);
  transition: opacity 220ms ease, transform 220ms ease;
}

.booking-pill__text {
  line-height: 1;
}

.booking-pill input:checked + .booking-pill__label {
  color: var(--white);
  background: rgba(201, 168, 76, 0.1);
  border-color: var(--gold);
  box-shadow:
    0 0 0 1px rgba(201, 168, 76, 0.35),
    0 0 18px rgba(201, 168, 76, 0.14);
  transform: scale(1.03);
}

.booking-pill input:checked + .booking-pill__label .booking-pill__tick {
  opacity: 1;
  transform: scale(1);
}

.booking-pill:hover .booking-pill__label {
  border-color: rgba(201, 168, 76, 0.4);
  background: rgba(255, 255, 255, 0.04);
}

/* ---- Date grid ---- */
.booking-dates {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  gap: 10px;
}

.booking-date {
  position: relative;
  cursor: pointer;
}

.booking-date input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.booking-date__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 14px 8px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--black-border);
  border-radius: 10px;
  transition:
    border-color 0.25s ease,
    background 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease,
    opacity 0.25s ease;
}

.booking-date__day {
  font-family: var(--font-heading);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 4px;
}

.booking-date__num {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}

.booking-date__month {
  font-size: 0.7rem;
  color: var(--grey-light);
  margin-top: 4px;
}

.booking-date input:checked + .booking-date__card {
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.1);
  box-shadow: 0 0 16px rgba(201, 168, 76, 0.12);
}

/* Availability indicators */
.booking-date--open .booking-date__card {
  background: rgba(34, 197, 94, 0.05);
  border-color: rgba(34, 197, 94, 0.25);
}

.booking-date--open:hover:not(.booking-date--disabled) .booking-date__card {
  background: rgba(34, 197, 94, 0.09);
  border-color: rgba(34, 197, 94, 0.35);
}

.booking-date--partial .booking-date__card {
  background: rgba(245, 158, 11, 0.05);
  border-color: rgba(245, 158, 11, 0.25);
}

.booking-date--partial:hover:not(.booking-date--disabled) .booking-date__card {
  background: rgba(245, 158, 11, 0.09);
  border-color: rgba(245, 158, 11, 0.35);
}

.booking-date--full .booking-date__card {
  background: rgba(239, 68, 68, 0.05);
  border-color: rgba(239, 68, 68, 0.25);
}

.booking-date--full .booking-date__day,
.booking-date--full .booking-date__num,
.booking-date--full .booking-date__month {
  color: var(--grey);
}

.booking-date--disabled {
  cursor: not-allowed;
  pointer-events: none;
}

.booking-date:not(.booking-date--disabled):hover .booking-date__card {
  border-color: rgba(201, 168, 76, 0.35);
}

.booking-dates__empty {
  grid-column: 1 / -1;
  padding: 24px;
  text-align: center;
  color: var(--grey);
  font-size: 0.95rem;
}

/* ---- Time slots ---- */
.booking-times {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 12px;
}

.booking-time {
  position: relative;
  cursor: pointer;
}

.booking-time input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.booking-time__label {
  display: block;
  padding: 14px 16px;
  text-align: center;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--white);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--black-border);
  border-radius: 10px;
  transition: border-color var(--transition), background var(--transition);
}

.booking-time input:checked + .booking-time__label {
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.1);
  color: var(--gold-light);
}

.booking-time--disabled {
  pointer-events: none;
  opacity: 0.35;
}

.booking-time:hover:not(.booking-time--disabled) .booking-time__label {
  border-color: rgba(201, 168, 76, 0.35);
}

.booking-times__loading {
  grid-column: 1 / -1;
  padding: 20px;
  text-align: center;
  color: var(--grey);
  font-size: 0.9rem;
}

/* ---- Review summary ---- */
.booking-summary {
  display: grid;
  gap: 16px;
}

.booking-summary__row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--black-border);
}

.booking-summary__row:last-child {
  border-bottom: none;
}

.booking-summary__key {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey);
  flex-shrink: 0;
}

.booking-summary__value {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--white);
  text-align: right;
}

/* ---- Wizard navigation ---- */
.booking-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--black-border);
}

.booking-nav .btn {
  min-width: 140px;
}

.booking-nav__spacer {
  flex: 1;
}

/* ---- Confirmation ---- */
.booking-confirmation {
  display: none;
  padding: 48px 32px;
  text-align: center;
  animation: bookingFadeIn 0.5s ease;
}

.booking-confirmation--visible {
  display: block;
  grid-column: 1 / -1;
}

.booking-layout .booking-progress.booking-wizard--hidden {
  display: none;
}

.booking-confirmation__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.12);
  border: 1px solid rgba(201, 168, 76, 0.35);
  color: var(--gold);
}

.booking-confirmation__title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: var(--tracking-title);
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 12px;
}

.booking-confirmation__message {
  font-size: 1.05rem;
  color: var(--grey-light);
  line-height: 1.7;
  max-width: 480px;
  margin: 0 auto 32px;
}

.booking-confirmation__card {
  max-width: 520px;
  margin: 0 auto 32px;
  padding: 28px 24px;
  text-align: left;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 16px;
}

.booking-confirmation__ref {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  text-align: center;
}

.booking-wizard--hidden {
  display: none;
}

.nav__book {
  color: var(--gold) !important;
}

.nav__book:hover {
  color: var(--gold-light) !important;
}

/* ---- Homepage booking CTA ---- */
.booking-cta {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--black) 0%, #0c0c0c 50%, var(--black) 100%);
  border-top: 1px solid var(--black-border);
  border-bottom: 1px solid var(--black-border);
}

.booking-cta__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
  padding: 48px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: 16px;
}

.booking-cta__title {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
  letter-spacing: var(--tracking-title);
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 12px;
}

.booking-cta__desc {
  font-size: 1.05rem;
  color: var(--grey-light);
  line-height: 1.7;
  max-width: 560px;
}

.booking-cta__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-shrink: 0;
}
