.simple-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(10, 15, 20, 0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.flow-hero {
  padding: 64px 0 36px;
  background:
    radial-gradient(circle at top left, rgba(245, 158, 11, 0.22), transparent 35%),
    linear-gradient(135deg, rgba(14, 22, 31, 1), rgba(7, 11, 17, 1));
}

.flow-hero.compact {
  padding: 42px 0 28px;
}

.flow-hero-grid,
.flow-two-col {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 22px;
  align-items: start;
}

.flow-hero h1 {
  max-width: 780px;
  font-size: clamp(2.15rem, 6vw, 4.6rem);
  line-height: 0.95;
  margin: 12px 0;
}

.flow-hero p {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.08rem;
}

.flow-card {
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(15, 23, 32, 0.88);
  padding: 22px;
  box-shadow: var(--shadow);
}

.flow-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 20px 0;
}

.flow-steps span {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(245, 158, 11, 0.08);
  color: var(--text);
  padding: 8px 12px;
  font-size: 0.9rem;
}

.flow-list {
  display: grid;
  gap: 10px;
  color: var(--muted);
  padding-left: 22px;
}

.section-title {
  max-width: 820px;
  margin-bottom: 22px;
}

.equipment-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.equipment-grid.mini {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.equipment-card {
  display: grid;
  gap: 8px;
  text-align: left;
  text-decoration: none;
  color: inherit;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(16, 25, 34, 0.88);
  padding: 18px;
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

button.equipment-card {
  width: 100%;
  font: inherit;
}

.equipment-card:hover,
.equipment-card.selected {
  transform: translateY(-2px);
  border-color: rgba(245, 158, 11, 0.72);
  background: rgba(245, 158, 11, 0.08);
}

.equipment-icon {
  font-size: 2rem;
}

.equipment-card small,
.service-row span,
.service-choice small,
.choice-card span {
  color: var(--muted);
  line-height: 1.45;
}

.service-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid var(--line);
  padding: 12px 0;
}

.transport-options {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.transport-options div {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  padding: 14px;
}

.narrow {
  max-width: 920px;
}

.wizard-top {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: start;
  margin-bottom: 16px;
}

.wizard-progress {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 6px;
  margin-bottom: 18px;
}

.wizard-progress span {
  height: 7px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
}

.wizard-progress span.active {
  background: var(--accent);
}

.wizard-step {
  display: none;
}

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

.wizard-actions {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin: 18px 0;
}

.service-select-list,
.transport-choice-list {
  display: grid;
  gap: 10px;
}

.service-choice,
.choice-card {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  padding: 14px;
  cursor: pointer;
}

.service-choice span,
.choice-card span {
  display: grid;
  gap: 4px;
}

.question-box,
.review-box {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(245, 158, 11, 0.07);
  padding: 14px;
  margin-top: 14px;
}

.review-row {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  gap: 10px;
  border-bottom: 1px solid var(--line);
  padding: 10px 0;
}

.review-row:last-child {
  border-bottom: 0;
}

@media (max-width: 880px) {
  .flow-hero-grid,
  .flow-two-col,
  .equipment-grid,
  .equipment-grid.mini {
    grid-template-columns: 1fr;
  }

  .transport-options {
    grid-template-columns: 1fr;
  }

  .wizard-top {
    display: grid;
  }

  .review-row {
    grid-template-columns: 1fr;
  }

  .service-row {
    display: grid;
  }
}

/* Phase-thirteen booking visual polish */

.booking-body,
.equipment-body {
  background:
    radial-gradient(circle at top right, rgba(245, 158, 11, 0.12), transparent 30%),
    radial-gradient(circle at 0% 30%, rgba(59, 130, 246, 0.09), transparent 28%),
    #071017;
}

.booking-container {
  max-width: 980px;
}

.booking-hero-card {
  border: 1px solid rgba(245, 158, 11, 0.26);
  border-radius: 26px;
  background:
    linear-gradient(135deg, rgba(18, 29, 40, 0.96), rgba(7, 13, 20, 0.96)),
    radial-gradient(circle at top right, rgba(245, 158, 11, 0.16), transparent 35%);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.38);
  padding: 24px;
}

.booking-hero-card h1 {
  margin-bottom: 8px;
  font-size: clamp(2rem, 5vw, 3.25rem);
  line-height: 0.98;
}

.step-pill-large {
  align-self: start;
  font-weight: 800;
  letter-spacing: 0.02em;
  box-shadow: 0 10px 30px rgba(245, 158, 11, 0.18);
}

.selected-equipment-strip {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(245, 158, 11, 0.32);
  border-radius: 18px;
  background: rgba(245, 158, 11, 0.08);
  margin-top: 16px;
  padding: 11px 14px;
}

.selected-equipment-strip > span {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(245, 158, 11, 0.16);
  font-size: 1.55rem;
}

.selected-equipment-strip small {
  display: block;
  color: var(--muted);
  margin-bottom: 2px;
}

.wizard-progress {
  margin-bottom: 8px;
}

.wizard-progress span {
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.1);
}

.wizard-progress span.active {
  background:
    linear-gradient(90deg, rgba(245, 158, 11, 1), rgba(251, 191, 36, 1));
  box-shadow: 0 0 22px rgba(245, 158, 11, 0.34);
}

.wizard-labels {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 6px;
  margin-bottom: 18px;
}

.wizard-labels span {
  color: var(--muted);
  font-size: 0.77rem;
  text-align: center;
}

.wizard-labels span.active {
  color: var(--text);
  font-weight: 800;
}

.wizard-labels span.done {
  color: rgba(245, 158, 11, 0.9);
}

.booking-confidence-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 11px;
  margin: 18px 0;
}

.booking-confidence-grid div {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.045);
  padding: 14px;
}

.booking-confidence-grid strong {
  display: block;
  margin-bottom: 5px;
}

.booking-confidence-grid span {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.45;
}

.wizard-step .card {
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(18, 29, 40, 0.96), rgba(12, 20, 29, 0.96));
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.28);
}

.wizard-step.active {
  animation: wizardFadeUp 180ms ease-out;
}

@keyframes wizardFadeUp {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.equipment-grid.mini .equipment-card {
  min-height: 142px;
}

.equipment-card {
  position: relative;
  overflow: hidden;
}

.equipment-card::after {
  content: "";
  position: absolute;
  inset: auto -35px -45px auto;
  width: 105px;
  height: 105px;
  border-radius: 999px;
  background: rgba(245, 158, 11, 0.08);
  transition: transform 180ms ease, opacity 180ms ease;
}

.equipment-card:hover::after,
.equipment-card.selected::after {
  transform: scale(1.35);
  opacity: 1;
}

.equipment-card.selected {
  box-shadow:
    0 0 0 1px rgba(245, 158, 11, 0.28),
    0 18px 40px rgba(0, 0, 0, 0.28);
}

.service-choice,
.choice-card {
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.026));
  transition:
    border-color 160ms ease,
    background 160ms ease,
    transform 160ms ease;
}

.service-choice:hover,
.choice-card:hover {
  transform: translateY(-1px);
  border-color: rgba(245, 158, 11, 0.5);
  background: rgba(245, 158, 11, 0.07);
}

.service-choice input,
.choice-card input {
  accent-color: var(--accent);
  transform: scale(1.1);
  margin-top: 4px;
}

.question-box,
.review-box,
.notice {
  box-shadow: inset 0 0 0 1px rgba(245, 158, 11, 0.08);
}

.review-box {
  display: grid;
  gap: 2px;
}

.review-row {
  border-radius: 12px;
  border-bottom: 0;
  padding: 12px;
}

.review-row:nth-child(odd) {
  background: rgba(255, 255, 255, 0.035);
}

.wizard-actions {
  position: sticky;
  bottom: 12px;
  z-index: 18;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  background: rgba(7, 12, 18, 0.86);
  backdrop-filter: blur(14px);
  padding: 10px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.38);
}

.wizard-actions button {
  min-height: 48px;
}

.equipment-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(245, 158, 11, 0.32);
  border-radius: 999px;
  background: rgba(245, 158, 11, 0.1);
  color: var(--text);
  padding: 8px 13px;
  font-weight: 800;
}

.equipment-hero-badge span:first-child {
  font-size: 1.35rem;
}

.service-row {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  margin-bottom: 10px;
  padding: 14px;
}

.service-row span {
  text-align: right;
}

.flow-card,
.card {
  border-color: rgba(255, 255, 255, 0.1);
}

@media (max-width: 880px) {
  .booking-hero-card {
    padding: 18px;
  }

  .selected-equipment-strip {
    display: flex;
    width: 100%;
  }

  .wizard-labels {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 8px;
  }

  .booking-confidence-grid {
    grid-template-columns: 1fr;
  }

  .wizard-actions {
    left: 10px;
    right: 10px;
  }

  .wizard-actions button {
    width: 100%;
  }

  .equipment-grid.mini .equipment-card {
    min-height: auto;
  }

  .service-choice,
  .choice-card {
    padding: 13px;
  }

  .service-row span {
    text-align: left;
  }
}

/* Need Help overlap hotfix */

.need-help-fab,
#need-help-fab {
  position: fixed;
  right: 14px;
  bottom: 18px;
  z-index: 32;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
}

.booking-body,
.booking-body .container,
.booking-container {
  padding-bottom: 120px;
}

.wizard-actions {
  z-index: 24;
  padding-bottom: calc(10px + env(safe-area-inset-bottom, 0px));
}

@media (max-width: 900px) {
  .need-help-fab,
  #need-help-fab {
    right: 12px;
    bottom: calc(76px + env(safe-area-inset-bottom, 0px));
    max-width: calc(100vw - 24px);
  }

  .booking-body,
  .booking-body .container,
  .booking-container {
    padding-bottom: 150px;
  }
}

@media (min-width: 901px) {
  .need-help-fab,
  #need-help-fab {
    bottom: 18px;
  }
}

/* Real Need Help fixed-position override */

.need-help-fab,
#need-help-fab,
[data-need-help-fab="true"] {
  position: fixed !important;
  right: 14px !important;
  bottom: 18px !important;
  z-index: 50 !important;
}

.booking-body {
  padding-bottom: 170px !important;
}

.booking-body .wizard-actions {
  z-index: 40 !important;
}

@media (max-width: 900px) {
  .need-help-fab,
  #need-help-fab,
  [data-need-help-fab="true"] {
    right: 12px !important;
    bottom: calc(116px + env(safe-area-inset-bottom, 0px)) !important;
  }

  .booking-body,
  .booking-body .container,
  .booking-container {
    padding-bottom: 190px !important;
  }
}

/* BOOKING_REMOVE_HELP_FAB */

body.booking-body .need-help-fab,
body.booking-body #need-help-fab,
body.booking-body [data-need-help-fab="true"] {
  display: none !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

body.booking-body .wizard-actions {
  z-index: 80 !important;
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 10px !important;
}

body.booking-body .wizard-actions button {
  min-height: 52px !important;
  position: relative !important;
  z-index: 90 !important;
}

body.booking-body .wizard-actions #next-button {
  display: block !important;
}

body.booking-body .wizard-actions #next-button.hidden {
  display: none !important;
}

@media (max-width: 900px) {
  body.booking-body {
    padding-bottom: 120px !important;
  }

  body.booking-body .booking-container {
    padding-bottom: 130px !important;
  }

  body.booking-body .wizard-actions {
    bottom: calc(10px + env(safe-area-inset-bottom, 0px)) !important;
    left: 10px !important;
    right: 10px !important;
  }
}
