/* ═══════════════════════════════════════════════════════
   BOOKING PAGE — Hupp & Fuller Detailing
   Single-viewport, no-scroll booking flow
   ═══════════════════════════════════════════════════════ */

:root {
  --hf-gold: #D3AF37;
  --hf-cream: #F6D97B;
  --hf-black: #050409;
  --hf-navy: #111828;
  --hf-white: #F0EDE6;
  --hf-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --hf-book-bottom: env(safe-area-inset-bottom, 0px);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  height: 100%;
  overflow: hidden;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--hf-black);
  color: var(--hf-white);
  -webkit-font-smoothing: antialiased;
  scrollbar-width: none;
}
body::-webkit-scrollbar { display: none; }

/* ═══════════════════════════════════
   BOOKING CONTAINER — full viewport
   ═══════════════════════════════════ */

.hf-book {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  padding-bottom: max(var(--hf-book-bottom), 8px);
}

/* ── Progress bar (top) ── */

.hf-book__progress {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: rgba(211, 175, 55, 0.1);
  z-index: 10;
}
.hf-book__progress-fill {
  height: 100%;
  width: 25%;
  background: linear-gradient(90deg, var(--hf-gold), var(--hf-cream));
  border-radius: 0 2px 2px 0;
  transition: width 0.55s var(--hf-ease);
}

/* ── Step dots (top nav) ── */

.hf-book__steps-nav {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 24px;
  z-index: 5;
  flex-shrink: 0;
}

.hf-book__step-dot {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px 10px;
  outline: none;
  font-family: inherit;
  transition: opacity 0.3s var(--hf-ease);
}
.hf-book__step-dot:disabled {
  cursor: default;
  opacity: 0.4;
}
.hf-book__step-dot:not(:disabled):hover .hf-book__step-num {
  border-color: rgba(211, 175, 55, 0.6);
  background: rgba(211, 175, 55, 0.1);
}
.hf-book__step-dot:focus-visible .hf-book__step-num {
  box-shadow: 0 0 0 2px rgba(211, 175, 55, 0.5);
}

.hf-book__step-num {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 2px solid rgba(211, 175, 55, 0.15);
  font-size: 0.72rem;
  font-weight: 700;
  color: rgba(240, 237, 230, 0.4);
  transition: all 0.35s var(--hf-ease);
}
.hf-book__step-dot.is-active .hf-book__step-num {
  border-color: var(--hf-gold);
  background: var(--hf-gold);
  color: var(--hf-black);
}
.hf-book__step-dot.is-done .hf-book__step-num {
  border-color: var(--hf-gold);
  color: var(--hf-gold);
}

.hf-book__step-label {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(240, 237, 230, 0.35);
  transition: color 0.3s var(--hf-ease);
}
.hf-book__step-dot.is-active .hf-book__step-label {
  color: var(--hf-gold);
}
.hf-book__step-dot.is-done .hf-book__step-label {
  color: rgba(211, 175, 55, 0.6);
}

.hf-book__step-line {
  width: 36px;
  height: 2px;
  background: rgba(211, 175, 55, 0.1);
  border-radius: 1px;
}

/* ═══════════════════════════════════
   PANELS — step content areas
   ═══════════════════════════════════ */

.hf-book__panel {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 82px 5vw 24px;
  opacity: 0;
  transform: translateX(40px);
  pointer-events: none;
  transition: opacity 0.5s var(--hf-ease), transform 0.5s var(--hf-ease);
}
.hf-book__panel.is-active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
  position: relative;
  flex: 1;
}
.hf-book__panel.is-leaving {
  opacity: 0;
  transform: translateX(-40px);
  pointer-events: none;
}
.hf-book__panel[hidden] {
  display: none;
}

.hf-book__panel-inner {
  width: 100%;
  max-width: 960px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-height: 100%;
  overflow-y: auto;
  scrollbar-width: none;
  padding: 4px;
}
.hf-book__panel-inner::-webkit-scrollbar { display: none; }

.hf-book__panel-inner--center {
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* ── Panel Header ── */

.hf-book__panel-header {
  text-align: center;
  flex-shrink: 0;
}
.hf-book__panel-title {
  font-size: clamp(1.25rem, 2.5vw, 1.85rem);
  font-weight: 800;
  color: var(--hf-white);
  line-height: 1.15;
  margin: 0 0 6px;
}
.hf-book__panel-sub {
  font-size: clamp(0.78rem, 1.1vw, 0.9rem);
  color: rgba(240, 237, 230, 0.5);
  margin: 0;
}

/* ═══════════════════════════════════
   STEP 1 — SERVICE SELECTION
   ═══════════════════════════════════ */

.hf-book__vehicle-sel {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-shrink: 0;
}
.hf-book__veh {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(211, 175, 55, 0.1);
  border-radius: 100px;
  color: rgba(240, 237, 230, 0.5);
  font-size: 0.82rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.3s var(--hf-ease);
  outline: none;
}
.hf-book__veh svg {
  width: 20px;
  height: 20px;
}
.hf-book__veh:hover {
  background: rgba(211, 175, 55, 0.06);
  border-color: rgba(211, 175, 55, 0.25);
  color: rgba(240, 237, 230, 0.8);
}
.hf-book__veh.is-active {
  background: rgba(211, 175, 55, 0.12);
  border-color: rgba(211, 175, 55, 0.4);
  color: var(--hf-gold);
  box-shadow: 0 0 16px rgba(211, 175, 55, 0.1);
}
.hf-book__veh:focus-visible {
  box-shadow: 0 0 0 2px rgba(211, 175, 55, 0.5);
}

/* Package cards */
.hf-book__packages {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.hf-book__pkg {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 20px 18px;
  background: rgba(255, 255, 255, 0.025);
  border: 1.5px solid rgba(211, 175, 55, 0.08);
  border-radius: 16px;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  color: var(--hf-white);
  outline: none;
  transition: border-color 0.35s var(--hf-ease), box-shadow 0.35s var(--hf-ease), transform 0.35s var(--hf-ease), background 0.35s var(--hf-ease);
}
.hf-book__pkg:hover {
  border-color: rgba(211, 175, 55, 0.25);
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.3);
}
.hf-book__pkg:focus-visible {
  box-shadow: 0 0 0 2px rgba(211, 175, 55, 0.5);
}
.hf-book__pkg.is-selected {
  border-color: var(--hf-gold);
  background: rgba(211, 175, 55, 0.06);
  box-shadow: 0 0 24px rgba(211, 175, 55, 0.12), inset 0 0 0 1px rgba(211, 175, 55, 0.1);
}

.hf-book__pkg--featured {
  border-color: rgba(211, 175, 55, 0.2);
}

.hf-book__pkg-badge {
  display: inline-block;
  align-self: flex-start;
  padding: 3px 10px;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--hf-white);
  background: rgba(255, 255, 255, 0.06);
  border-radius: 100px;
}
.hf-book__pkg-badge--gold {
  color: var(--hf-black);
  background: var(--hf-gold);
}
.hf-book__pkg-badge--elite {
  color: var(--hf-gold);
  background: rgba(211, 175, 55, 0.12);
  border: 1px solid rgba(211, 175, 55, 0.2);
}

.hf-book__pkg-name {
  font-size: 1.02rem;
  font-weight: 800;
  color: var(--hf-white);
  margin: 0;
}
.hf-book__pkg.is-selected .hf-book__pkg-name {
  color: var(--hf-gold);
}

.hf-book__pkg-price {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--hf-gold);
  font-variant-numeric: tabular-nums;
}

.hf-book__pkg-time {
  font-size: 0.72rem;
  color: rgba(240, 237, 230, 0.4);
  font-weight: 500;
}

.hf-book__pkg-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 3px;
  margin-top: 4px;
}
.hf-book__pkg-list li {
  font-size: 0.74rem;
  color: rgba(240, 237, 230, 0.55);
  padding-left: 16px;
  position: relative;
}
.hf-book__pkg-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--hf-gold);
  font-size: 0.7rem;
  opacity: 0.7;
}

/* ═══════════════════════════════════
   STEP 2 — SCHEDULE (Calendar + Time)
   ═══════════════════════════════════ */

.hf-book__schedule {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  flex: 1;
  min-height: 0;
}

/* Calendar */
.hf-book__cal {
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(211, 175, 55, 0.12);
  border-radius: 18px;
  padding: 18px;
  gap: 12px;
}

.hf-book__cal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.hf-book__cal-month {
  font-size: 1rem;
  font-weight: 700;
  color: var(--hf-white);
}
.hf-book__cal-arrow {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(211, 175, 55, 0.06);
  border: 1px solid rgba(211, 175, 55, 0.12);
  border-radius: 10px;
  color: var(--hf-gold);
  cursor: pointer;
  transition: background 0.25s var(--hf-ease), transform 0.25s var(--hf-ease);
  font-family: inherit;
  outline: none;
}
.hf-book__cal-arrow svg {
  width: 16px;
  height: 16px;
}
.hf-book__cal-arrow:hover {
  background: rgba(211, 175, 55, 0.12);
  transform: scale(1.05);
}
.hf-book__cal-arrow:focus-visible {
  box-shadow: 0 0 0 2px rgba(211, 175, 55, 0.5);
}

.hf-book__cal-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
}
.hf-book__cal-weekdays span {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(211, 175, 55, 0.45);
  padding: 4px 0;
}

.hf-book__cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 3px;
}

.hf-book__cal-day {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(240, 237, 230, 0.7);
  border-radius: 10px;
  cursor: pointer;
  border: none;
  background: transparent;
  font-family: inherit;
  transition: background 0.25s var(--hf-ease), color 0.2s var(--hf-ease), transform 0.2s var(--hf-ease), box-shadow 0.25s var(--hf-ease);
  outline: none;
}
.hf-book__cal-day:hover:not(.is-disabled):not(.is-empty) {
  background: rgba(211, 175, 55, 0.1);
  color: var(--hf-white);
  transform: scale(1.1);
}
.hf-book__cal-day:focus-visible:not(.is-disabled):not(.is-empty) {
  box-shadow: 0 0 0 2px rgba(211, 175, 55, 0.5);
}
.hf-book__cal-day.is-today {
  border: 1.5px solid rgba(211, 175, 55, 0.35);
  color: var(--hf-gold);
}
.hf-book__cal-day.is-selected {
  background: var(--hf-gold);
  color: var(--hf-black);
  font-weight: 800;
  box-shadow: 0 0 18px rgba(211, 175, 55, 0.35);
  transform: scale(1.08);
}
.hf-book__cal-day.is-disabled {
  color: rgba(240, 237, 230, 0.12);
  cursor: default;
}
.hf-book__cal-day.is-empty {
  cursor: default;
  pointer-events: none;
}

/* Time slots — 2-hour blocks */
.hf-book__time {
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(211, 175, 55, 0.12);
  border-radius: 18px;
  padding: 18px;
  gap: 12px;
}
.hf-book__time-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--hf-white);
  margin: 0;
}
.hf-book__time-hint {
  font-size: 0.78rem;
  color: rgba(240, 237, 230, 0.4);
  margin: 0;
}

.hf-book__time-slots {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
  align-content: start;
}

.hf-book__slot {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 14px;
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(240, 237, 230, 0.6);
  background: rgba(255, 255, 255, 0.025);
  border: 1.5px solid rgba(211, 175, 55, 0.08);
  border-radius: 12px;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.3s var(--hf-ease);
  outline: none;
}
.hf-book__slot-icon {
  width: 18px;
  height: 18px;
  color: rgba(211, 175, 55, 0.4);
  flex-shrink: 0;
  transition: color 0.3s var(--hf-ease);
}
.hf-book__slot:hover {
  background: rgba(211, 175, 55, 0.06);
  border-color: rgba(211, 175, 55, 0.3);
  color: var(--hf-white);
}
.hf-book__slot:hover .hf-book__slot-icon {
  color: var(--hf-gold);
}
.hf-book__slot:focus-visible {
  box-shadow: 0 0 0 2px rgba(211, 175, 55, 0.5);
}
.hf-book__slot.is-selected {
  background: rgba(211, 175, 55, 0.1);
  border-color: var(--hf-gold);
  color: var(--hf-gold);
  font-weight: 700;
  box-shadow: 0 0 18px rgba(211, 175, 55, 0.12);
}
.hf-book__slot.is-selected .hf-book__slot-icon {
  color: var(--hf-gold);
}

/* ═══════════════════════════════════
   STEP 3 — CUSTOMER INFO FORM
   ═══════════════════════════════════ */

.hf-book__form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  max-width: 620px;
  margin: 0 auto;
}

.hf-book__form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.hf-book__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.hf-book__field--full {
  max-width: 620px;
  margin: 0 auto;
  width: 100%;
}

.hf-book__field-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(240, 237, 230, 0.6);
  letter-spacing: 0.02em;
}
.hf-book__field-req {
  color: var(--hf-gold);
  font-weight: 700;
}
.hf-book__field-opt {
  color: rgba(240, 237, 230, 0.3);
  font-weight: 400;
  font-size: 0.72rem;
}

.hf-book__field-input {
  width: 100%;
  padding: 12px 16px;
  font-size: 0.88rem;
  font-weight: 500;
  font-family: inherit;
  color: var(--hf-white);
  background: rgba(255, 255, 255, 0.03);
  border: 1.5px solid rgba(211, 175, 55, 0.1);
  border-radius: 12px;
  outline: none;
  transition: border-color 0.3s var(--hf-ease), box-shadow 0.3s var(--hf-ease), background 0.3s var(--hf-ease);
}
.hf-book__field-input::placeholder {
  color: rgba(240, 237, 230, 0.2);
  font-weight: 400;
}
.hf-book__field-input:hover {
  border-color: rgba(211, 175, 55, 0.25);
  background: rgba(255, 255, 255, 0.04);
}
.hf-book__field-input:focus {
  border-color: var(--hf-gold);
  box-shadow: 0 0 0 3px rgba(211, 175, 55, 0.12);
  background: rgba(255, 255, 255, 0.05);
}
.hf-book__field-input.is-invalid {
  border-color: #e74c3c;
  box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.12);
}

.hf-book__field-input--textarea {
  resize: none;
  min-height: 72px;
}

.hf-book__field-error {
  font-size: 0.7rem;
  color: #e74c3c;
  min-height: 0;
  transition: all 0.25s var(--hf-ease);
}
.hf-book__field-error:not(:empty) {
  min-height: 16px;
}

/* ═══════════════════════════════════
   STEP 4 — SUMMARY / CONFIRM
   ═══════════════════════════════════ */

.hf-book__summary {
  display: flex;
  flex-direction: column;
  gap: 0;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(211, 175, 55, 0.1);
  border-radius: 18px;
  overflow: hidden;
  max-width: 560px;
  width: 100%;
  margin: 0 auto;
}

.hf-book__summary-group {
  display: flex;
  flex-direction: column;
}
.hf-book__summary-group + .hf-book__summary-group {
  border-top: 1.5px solid rgba(211, 175, 55, 0.08);
}

.hf-book__summary-heading {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--hf-gold);
  padding: 14px 24px 6px;
  margin: 0;
}

.hf-book__summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 24px;
  border-bottom: 1px solid rgba(211, 175, 55, 0.04);
}
.hf-book__summary-row:last-child {
  border-bottom: none;
}
.hf-book__summary-row--total {
  background: rgba(211, 175, 55, 0.04);
}

.hf-book__summary-label {
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(240, 237, 230, 0.5);
}
.hf-book__summary-value {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--hf-white);
}
.hf-book__summary-row--total .hf-book__summary-value {
  color: var(--hf-gold);
  font-size: 1.1rem;
}

/* ═══════════════════════════════════
   BUTTONS (shared)
   ═══════════════════════════════════ */

.hf-book__next,
.hf-book__confirm {
  align-self: center;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 34px;
  background: linear-gradient(135deg, var(--hf-gold), var(--hf-cream));
  color: var(--hf-black);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  font-family: inherit;
  transition: transform 0.3s var(--hf-ease), box-shadow 0.3s var(--hf-ease), opacity 0.3s var(--hf-ease);
  outline: none;
  flex-shrink: 0;
}
.hf-book__next:disabled,
.hf-book__confirm:disabled {
  opacity: 0.35;
  cursor: default;
  transform: none;
  box-shadow: none;
}
.hf-book__next:not(:disabled):hover,
.hf-book__confirm:not(:disabled):hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(211, 175, 55, 0.3);
}
.hf-book__next:focus-visible,
.hf-book__confirm:focus-visible {
  box-shadow: 0 0 0 3px rgba(211, 175, 55, 0.5);
}

.hf-book__back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 22px;
  background: transparent;
  border: 1px solid rgba(211, 175, 55, 0.2);
  color: rgba(240, 237, 230, 0.6);
  font-size: 0.84rem;
  font-weight: 600;
  border-radius: 10px;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.3s var(--hf-ease);
  outline: none;
}
.hf-book__back:hover {
  border-color: rgba(211, 175, 55, 0.4);
  color: var(--hf-white);
  background: rgba(211, 175, 55, 0.05);
}
.hf-book__back:focus-visible {
  box-shadow: 0 0 0 2px rgba(211, 175, 55, 0.5);
}

.hf-book__nav-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-shrink: 0;
}

/* ═══════════════════════════════════
   SUCCESS SCREEN
   ═══════════════════════════════════ */

.hf-book__success-icon {
  width: 80px;
  height: 80px;
  color: var(--hf-gold);
  margin-bottom: 16px;
  animation: hf-book-successPop 0.6s var(--hf-ease) both;
}
.hf-book__success-icon svg {
  width: 100%;
  height: 100%;
}
.hf-book__success-icon circle {
  stroke-dasharray: 176;
  stroke-dashoffset: 176;
  animation: hf-book-circle 0.8s 0.2s var(--hf-ease) forwards;
}
.hf-book__success-icon path {
  stroke-dasharray: 40;
  stroke-dashoffset: 40;
  animation: hf-book-check 0.4s 0.7s var(--hf-ease) forwards;
}

@keyframes hf-book-successPop {
  0% { transform: scale(0.5); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}
@keyframes hf-book-circle {
  to { stroke-dashoffset: 0; }
}
@keyframes hf-book-check {
  to { stroke-dashoffset: 0; }
}

.hf-book__success-msg {
  font-size: 0.92rem;
  color: rgba(240, 237, 230, 0.6);
  line-height: 1.6;
  max-width: 420px;
  margin-bottom: 24px;
}

.hf-book__success-actions {
  display: flex;
  gap: 12px;
}
.hf-book__success-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  font-size: 0.85rem;
  font-weight: 700;
  border-radius: 10px;
  cursor: pointer;
  font-family: inherit;
  text-decoration: none;
  transition: all 0.3s var(--hf-ease);
  outline: none;
  background: linear-gradient(135deg, var(--hf-gold), var(--hf-cream));
  color: var(--hf-black);
  border: none;
}
.hf-book__success-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(211, 175, 55, 0.3);
}
.hf-book__success-btn--outline {
  background: transparent;
  border: 1px solid rgba(211, 175, 55, 0.3);
  color: var(--hf-gold);
}
.hf-book__success-btn--outline:hover {
  background: rgba(211, 175, 55, 0.08);
  border-color: rgba(211, 175, 55, 0.5);
  box-shadow: none;
}
.hf-book__success-btn:focus-visible {
  box-shadow: 0 0 0 3px rgba(211, 175, 55, 0.5);
}

/* ═══════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════ */

@media (max-width: 768px) {
  .hf-book__panel {
    padding: 80px 4vw 20px;
  }
  .hf-book__steps-nav {
    margin-top: 18px;
  }

  .hf-book__packages {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .hf-book__pkg {
    padding: 18px 16px;
  }

  .hf-book__schedule {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .hf-book__vehicle-sel {
    flex-wrap: wrap;
  }

  .hf-book__form-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .hf-book__summary-row {
    padding: 11px 18px;
  }

  .hf-book__success-actions {
    flex-direction: column;
    width: 100%;
  }
  .hf-book__success-btn {
    width: 100%;
  }

  .hf-book__nav-row {
    flex-direction: column-reverse;
    gap: 10px;
  }
  .hf-book__next,
  .hf-book__confirm {
    width: 100%;
    justify-content: center;
  }
  .hf-book__back {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hf-book__panel {
    padding: 76px 3.5vw 16px;
  }
  .hf-book__step-label {
    display: none;
  }
  .hf-book__step-line {
    width: 24px;
  }
  .hf-book__step-num {
    width: 28px;
    height: 28px;
    font-size: 0.68rem;
  }
  .hf-book__panel-title {
    font-size: 1.15rem;
  }
  .hf-book__cal {
    padding: 14px;
  }
  .hf-book__time {
    padding: 14px;
  }
  .hf-book__pkg-price {
    font-size: 1.3rem;
  }
  .hf-book__summary-row {
    padding: 10px 14px;
  }
  .hf-book__field-input {
    padding: 11px 14px;
    font-size: 0.85rem;
  }
}

@media (max-width: 380px) {
  .hf-book__veh {
    padding: 8px 14px;
    font-size: 0.75rem;
  }
  .hf-book__cal-day {
    font-size: 0.72rem;
  }
}

/* Ultrawide */
@media (min-width: 2200px) {
  .hf-book__panel-inner {
    max-width: 1100px;
  }
  .hf-book__panel-title {
    font-size: 2.4rem;
  }
  .hf-book__pkg {
    padding: 28px 26px;
  }
  .hf-book__pkg-price {
    font-size: 1.9rem;
  }
}

@media (min-width: 3800px) {
  .hf-book__panel-inner {
    max-width: 1400px;
  }
  .hf-book__panel-title {
    font-size: 2.8rem;
  }
  .hf-book__step-num {
    width: 44px;
    height: 44px;
    font-size: 0.9rem;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .hf-book__panel {
    transition: none !important;
  }
  .hf-book__progress-fill {
    transition: none !important;
  }
  .hf-book__success-icon,
  .hf-book__success-icon circle,
  .hf-book__success-icon path {
    animation: none !important;
    stroke-dashoffset: 0 !important;
    opacity: 1 !important;
    transform: none !important;
  }
}
