/* ═══════════════════════════════════════════════════
   BOOKING PAGE — Hershey's Detailing
   taste-skill: soft-skill · DESIGN_VARIANCE:8 · MOTION_INTENSITY:7 · VISUAL_DENSITY:2
   ═══════════════════════════════════════════════════ */

/* ── NAV OVERRIDES ── */
.header { border-bottom: 1px solid var(--border-soft); }
.active-nav { color: var(--purple-soft) !important; }
.booking-page .nav-logo-img { height: 100px; }

/* ═══════════════════════════════════════════════════
   PAGE SHELL
═══════════════════════════════════════════════════ */
.booking-page {
  position: relative;
  min-height: calc(100svh - var(--nav-h));
  padding: calc(var(--nav-h) + 72px) 24px 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: visible;
}

/* ═══════════════════════════════════════════════════
   AMBIENT BACKGROUND
═══════════════════════════════════════════════════ */
.booking-ambient {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.amb-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
}
.amb-orb--1 {
  width: 600px; height: 600px;
  top: -120px; right: -100px;
  background: radial-gradient(circle, rgba(109,40,255,0.12) 0%, transparent 70%);
  animation: amb-drift 18s ease-in-out infinite alternate;
}
.amb-orb--2 {
  width: 450px; height: 450px;
  bottom: -80px; left: -80px;
  background: radial-gradient(circle, rgba(91,31,224,0.08) 0%, transparent 70%);
  animation: amb-drift 24s ease-in-out infinite alternate-reverse;
}
@keyframes amb-drift {
  0%   { transform: translate(0,0) scale(1); }
  100% { transform: translate(30px,-20px) scale(1.08); }
}
.amb-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(109,40,255,0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(109,40,255,0.022) 1px, transparent 1px);
  background-size: 70px 70px;
}

/* ═══════════════════════════════════════════════════
   PAGE HEADER
═══════════════════════════════════════════════════ */
.booking-header {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 580px;
  width: 100%;
  margin-bottom: 32px;
}
.bh-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--purple-soft);
  margin-bottom: 20px;
}
.eyebrow-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--purple);
  box-shadow: 0 0 8px var(--purple);
}
.bh-title {
  font-family: var(--serif);
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--white);
  margin-bottom: 18px;
}
.bh-sub {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--silver);
  max-width: 420px;
  margin: 0 auto;
}

/* ═══════════════════════════════════════════════════
   LIVE PRICE BADGE
═══════════════════════════════════════════════════ */
.price-badge {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(14,14,22,0.85);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 10px 22px;
  margin-bottom: 40px;
  backdrop-filter: blur(12px);
  transition: border-color 0.3s, box-shadow 0.3s;
}
.price-badge.has-price {
  border-color: var(--purple-rim);
  box-shadow: 0 0 24px rgba(109,40,255,0.14);
}
.pb-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}
.pb-amount {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.01em;
  transition: color 0.3s;
}
.price-badge.has-price .pb-amount { color: var(--purple-soft); }

/* ═══════════════════════════════════════════════════
   STEP INDICATOR
═══════════════════════════════════════════════════ */
.step-indicator {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 380px;
  margin-bottom: 52px;
}
.step-track {
  position: absolute;
  top: 13px;
  left: 12%;
  right: 12%;
  height: 1px;
  background: var(--border);
  border-radius: 1px;
  overflow: hidden;
}
.step-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--purple), var(--purple-soft));
  border-radius: 1px;
  width: 0%;
  transition: width 0.5s var(--spring);
  box-shadow: 0 0 8px rgba(109,40,255,0.6);
}
.step-nodes {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.step-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  cursor: none;
  background: none;
  border: none;
}
.sn-num {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--midnight);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 11px;
  font-style: italic;
  color: var(--muted);
  transition: border-color 0.3s, background 0.3s, color 0.3s, box-shadow 0.3s;
}
.sn-label {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.3s;
}
.step-node.active .sn-num {
  border-color: var(--purple);
  background: var(--purple);
  color: var(--white);
  box-shadow: 0 0 16px rgba(109,40,255,0.5);
}
.step-node.active .sn-label { color: var(--purple-pale); }
.step-node.done .sn-num {
  border-color: var(--purple-soft);
  background: rgba(109,40,255,0.12);
  color: var(--purple-soft);
}
.step-node.done .sn-label { color: var(--silver); }

/* ═══════════════════════════════════════════════════
   FORM WRAPPER & STEPS
═══════════════════════════════════════════════════ */
.booking-form {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 720px;
}
.form-step {
  display: none;
  animation: step-in 0.45s var(--spring) both;
}
.form-step.active { display: block; }
@keyframes step-in {
  0%   { opacity: 0; transform: translateY(24px); }
  100% { opacity: 1; transform: translateY(0); }
}
.step-heading {
  text-align: center;
  margin-bottom: 40px;
}
.step-h2 {
  font-family: var(--serif);
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--white);
  margin-bottom: 10px;
}
.step-p {
  font-size: 14px;
  font-weight: 300;
  color: var(--silver);
  line-height: 1.65;
}

/* ═══════════════════════════════════════════════════
   VEHICLE CARDS (Step 1)
═══════════════════════════════════════════════════ */
.vehicle-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-bottom: 40px;
}
.vehicle-card { cursor: none; display: block; }
.v-radio { position: absolute; opacity: 0; pointer-events: none; }
.vc-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 22px 26px;
  border-radius: 10px;
  background: rgba(10,10,18,0.88);
  border: 1px solid var(--border);
  backdrop-filter: blur(16px);
  transition:
    border-color 0.3s var(--spring),
    background   0.3s var(--spring),
    box-shadow   0.3s var(--spring),
    transform    0.3s var(--spring);
}
.vc-inner:hover {
  border-color: var(--purple-rim);
  background: rgba(18,18,28,0.92);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(109,40,255,0.12);
}
.v-radio:checked + .vc-inner {
  border-color: var(--purple);
  background: rgba(109,40,255,0.1);
  box-shadow: 0 0 0 1px var(--purple), 0 12px 40px rgba(109,40,255,0.2);
  transform: translateY(-1px);
}
.vc-icon { width: 80px; height: 50px; flex-shrink: 0; color: var(--muted); transition: color 0.3s; display: flex; align-items: center; justify-content: center; }
.v-radio:checked + .vc-inner .vc-icon { color: var(--purple-soft); }
.vc-icon svg { width: 100%; height: 100%; }
.vc-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  opacity: 0.72;
  transition: opacity 0.3s;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.4));
}
.v-radio:checked + .vc-inner .vc-img { opacity: 1; }
.vc-text { flex: 1; display: flex; flex-direction: column; gap: 3px; }
.vc-name { font-size: 15px; font-weight: 500; color: var(--white); transition: color 0.25s; }
.v-radio:checked + .vc-inner .vc-name { color: var(--purple-pale); }
.vc-desc { font-size: 12px; font-weight: 300; color: var(--muted); }
.vc-check {
  width: 22px; height: 22px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: transparent;
  transition: border-color 0.3s, background 0.3s, color 0.3s;
}
.v-radio:checked + .vc-inner .vc-check { border-color: var(--purple); background: var(--purple); color: var(--white); }
.vc-check svg { width: 12px; height: 12px; }

/* ═══════════════════════════════════════════════════
   SERVICE SELECTOR CARDS (Step 2)
═══════════════════════════════════════════════════ */
.service-selector {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 40px;
}

.svc-sel-card {
  border-radius: 12px;
  background: rgba(10,10,18,0.9);
  border: 1px solid var(--border);
  backdrop-filter: blur(20px);
  transition:
    border-color 0.3s var(--spring),
    box-shadow   0.3s var(--spring);
  cursor: none;
}
.svc-sel-card:hover { border-color: var(--purple-rim); }
.svc-sel-card.selected {
  border-color: var(--purple);
  box-shadow: 0 0 0 1px var(--purple), 0 12px 48px rgba(109,40,255,0.18);
}

/* Card Header */
.ssc-header {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 22px 24px;
  cursor: none;
  transition: background 0.25s;
}
.svc-sel-card:hover .ssc-header { background: rgba(18,18,28,0.5); }
.svc-sel-card.selected .ssc-header { background: rgba(109,40,255,0.06); }

.ssc-icon {
  width: 40px; height: 40px;
  flex-shrink: 0;
  color: var(--muted);
  transition: color 0.3s;
}
.svc-sel-card.selected .ssc-icon { color: var(--purple-soft); }
.ssc-icon svg { width: 100%; height: 100%; }

.ssc-info { flex: 1; min-width: 0; }
.ssc-name {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
  transition: color 0.25s;
}
.svc-sel-card.selected .ssc-name { color: var(--purple-pale); }
.ssc-desc {
  font-size: 12px;
  font-weight: 300;
  line-height: 1.5;
  color: var(--muted);
}

.ssc-pricing {
  flex-shrink: 0;
  text-align: right;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.ssc-from {
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.ssc-price {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1;
  transition: color 0.25s;
}
.svc-sel-card.selected .ssc-price { color: var(--purple-pale); }

.ssc-toggle {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  margin-left: 8px;
}
.ssc-toggle-label {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.25s;
}
.svc-sel-card.selected .ssc-toggle-label { color: var(--purple-soft); }
.ssc-chevron {
  width: 18px; height: 18px;
  color: var(--muted);
  transition: transform 0.4s var(--spring), color 0.25s;
}
.svc-sel-card.selected .ssc-chevron { transform: rotate(180deg); color: var(--purple-soft); }

/* Expandable Panel */
.ssc-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s var(--spring);
}
.svc-sel-card.selected .ssc-panel { max-height: 4000px; }

.ssc-panel-inner {
  padding: 0 24px 28px;
  border-top: 1px solid var(--border-soft);
}
.panel-note {
  font-size: 12px;
  font-weight: 300;
  color: var(--silver);
  padding: 16px 0 20px;
  line-height: 1.55;
}

/* ── Detail Base Row ── */
.detail-base-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0 20px;
  border-bottom: 1px solid var(--border-soft);
  margin-bottom: 20px;
}
.dbr-label {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--silver);
}
.dbr-price {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 700;
  color: var(--purple-pale);
  letter-spacing: -0.02em;
}

/* ═══════════════════════════════════════════════════
   ADD-ONS (Interior/Exterior Detail)
═══════════════════════════════════════════════════ */
.addons-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}
.addons-title {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--white);
}
.addons-note {
  font-size: 11px;
  font-weight: 300;
  color: var(--muted);
}

.addons-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border-soft);
  border-radius: 8px;
  overflow: hidden;
}

.addon-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--border-soft);
  transition: background 0.2s;
  cursor: none;
}
.addon-item:last-child { border-bottom: none; }
.addon-item:hover { background: rgba(109,40,255,0.05); }
/* Pet hair wrapper — carries the border so the inner label doesn't need one */
.pet-addon-wrap { border-bottom: 1px solid var(--border-soft); }
.pet-addon-wrap:last-child { border-bottom: none; }
.addon-no-border { border-bottom: none !important; }

/* Pet Hair Removal needs to be a block-level item with sub-select inside */
#addon-pet-wrap {
  display: block;
  padding: 0;
}
.addon-checkbox-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  cursor: none;
  width: 100%;
  box-sizing: border-box;
}
.addon-checkbox-row .ao-price-tag { margin-left: auto; flex-shrink: 0; }
.ao-cb { position: absolute; opacity: 0; pointer-events: none; }
.ao-custom-cb {
  width: 18px; height: 18px;
  border-radius: 4px;
  border: 1px solid var(--border);
  background: rgba(14,14,22,0.7);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: transparent;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}
.ao-cb:checked + .ao-custom-cb {
  border-color: var(--purple);
  background: var(--purple);
  color: var(--white);
}
.ao-custom-cb svg { width: 10px; height: 10px; }
.ao-name {
  flex: 1;
  font-size: 13px;
  font-weight: 400;
  color: var(--off-white);
}
.ao-price-tag {
  font-size: 13px;
  font-weight: 500;
  color: var(--purple-soft);
  white-space: nowrap;
  margin-left: auto;
  flex-shrink: 0;
}

/* Pet Severity Sub-Select */
.addon-sub-select {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0 18px;
}
.addon-sub-select.open {
  max-height: 300px;
  padding: 0 18px 16px;
}
.ass-label {
  display: block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}
.ass-options {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.ass-opt { cursor: none; }
.pet-radio { position: absolute; opacity: 0; pointer-events: none; }
.aso-inner {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 400;
  color: var(--silver);
  padding: 7px 14px;
  border-radius: 4px;
  border: 1px solid var(--border);
  background: rgba(14,14,22,0.6);
  transition: border-color 0.2s, color 0.2s, background 0.2s;
  white-space: nowrap;
}
.aso-inner em { font-style: normal; color: var(--muted); }
.pet-radio:checked + .aso-inner {
  border-color: var(--purple);
  background: rgba(109,40,255,0.1);
  color: var(--purple-pale);
}
.pet-radio:checked + .aso-inner em { color: var(--purple-soft); }

/* ═══════════════════════════════════════════════════
   PACKAGE OPTION CARDS (Paint Correction / Ceramic)
═══════════════════════════════════════════════════ */
.pkg-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding-top: 4px;
}
.pkg-card { cursor: none; display: block; }
.pkg-radio { position: absolute; opacity: 0; pointer-events: none; }
.pkc-inner {
  padding: 20px 46px 20px 20px;
  border-radius: 8px;
  background: rgba(10,10,18,0.82);
  border: 1px solid var(--border);
  position: relative;
  transition:
    border-color 0.3s var(--spring),
    background   0.3s var(--spring),
    box-shadow   0.3s var(--spring),
    transform    0.3s var(--spring);
  height: 100%;
}
.pkc-inner:hover {
  border-color: var(--purple-rim);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(109,40,255,0.1);
}
.pkg-radio:checked + .pkc-inner {
  border-color: var(--purple);
  background: rgba(109,40,255,0.08);
  box-shadow: 0 0 0 1px var(--purple), 0 8px 32px rgba(109,40,255,0.18);
}
.pkc-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 10px;
}
.pkc-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.3;
  transition: color 0.25s;
}
.pkg-radio:checked + .pkc-inner .pkc-name { color: var(--purple-pale); }
.pkc-price {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 700;
  color: var(--purple-soft);
  letter-spacing: -0.02em;
  white-space: nowrap;
  flex-shrink: 0;
}
.pkg-radio:checked + .pkc-inner .pkc-price { color: var(--purple-pale); }
.pkc-desc {
  font-size: 11px;
  font-weight: 300;
  line-height: 1.55;
  color: var(--muted);
}
.pkc-check {
  position: absolute;
  top: 14px; right: 14px;
  width: 18px; height: 18px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: transparent;
  transition: border-color 0.25s, background 0.25s, color 0.25s;
}
.pkg-radio:checked + .pkc-inner .pkc-check { border-color: var(--purple); background: var(--purple); color: var(--white); }
.pkc-check svg { width: 9px; height: 9px; }

/* ═══════════════════════════════════════════════════
   PRICING SUMMARY (Step 3)
═══════════════════════════════════════════════════ */
.price-summary {
  border-radius: 12px;
  background: rgba(14,14,22,0.85);
  border: 1px solid var(--purple-rim);
  backdrop-filter: blur(20px);
  overflow: hidden;
  margin-bottom: 0;
  box-shadow: 0 0 0 1px rgba(109,40,255,0.12), 0 16px 56px rgba(109,40,255,0.12);
}
.ps-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px 16px;
  border-bottom: 1px solid var(--border-soft);
}
.ps-title {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--purple-soft);
}
.ps-edit {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--muted);
  cursor: none;
  transition: color 0.2s;
}
.ps-edit svg { width: 12px; height: 12px; }
.ps-edit:hover { color: var(--silver); }

.ps-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  padding: 14px 24px 0;
}
.ps-meta-item {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--void);
  background: var(--purple-soft);
  padding: 4px 10px;
  border-radius: 3px;
  white-space: nowrap;
}

.ps-lines {
  padding: 16px 24px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.ps-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--border-soft);
  gap: 12px;
}
.ps-line:last-child { border-bottom: none; }
.ps-line-name {
  font-size: 13px;
  font-weight: 400;
  color: var(--silver);
}
.ps-line-name.is-base { color: var(--off-white); font-weight: 500; }
.ps-line-price {
  font-size: 14px;
  font-weight: 500;
  color: var(--off-white);
  white-space: nowrap;
}

.ps-total-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  background: rgba(109,40,255,0.1);
  border-top: 1px solid var(--purple-rim);
}
.ps-total-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--purple-soft);
}
.ps-total-amount {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--white);
  line-height: 1;
}

.ps-disclaimer {
  font-size: 11px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.6;
  text-align: center;
  padding: 12px 24px 16px;
  border-top: 1px solid var(--border-soft);
}

/* ═══════════════════════════════════════════════════
   CONTACT FORM FIELDS
═══════════════════════════════════════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 40px;
}
.field-group { display: flex; flex-direction: column; gap: 8px; }
.field-group--full { grid-column: 1 / -1; }
.field-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--silver);
}
.field-optional {
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0;
  text-transform: none;
  color: var(--muted);
}
.field-input {
  width: 100%;
  padding: 13px 16px;
  border-radius: 7px;
  background: rgba(14,14,22,0.75);
  border: 1px solid var(--border);
  color: var(--white);
  font-size: 14px;
  font-weight: 300;
  backdrop-filter: blur(10px);
  transition: border-color 0.25s, box-shadow 0.25s, background 0.25s;
  appearance: none;
  -webkit-appearance: none;
}
.field-input::placeholder { color: var(--muted); }
.field-input:focus {
  border-color: var(--purple);
  background: rgba(18,18,28,0.96);
  box-shadow: 0 0 0 3px rgba(109,40,255,0.18);
  outline: none;
}
.field-input--select {
  cursor: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2352525b' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}
.field-input--select option { background: #14141f; color: var(--white); }
.field-input--date::-webkit-calendar-picker-indicator {
  filter: invert(0.4) sepia(1) saturate(3) hue-rotate(230deg);
  opacity: 0.6;
  cursor: pointer;
}
.field-input--textarea { resize: vertical; min-height: 110px; line-height: 1.6; }

/* ═══════════════════════════════════════════════════
   NAVIGATION BUTTONS
═══════════════════════════════════════════════════ */
.step-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.btn-next {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  padding: 14px 28px;
  border-radius: 5px;
  background: var(--purple);
  color: var(--white);
  cursor: none;
  transition: background 0.3s var(--spring), box-shadow 0.3s, transform 0.3s var(--spring), opacity 0.25s;
}
.btn-next svg { width: 16px; height: 16px; }
.btn-next:hover:not(:disabled) {
  background: #7c3aff;
  box-shadow: 0 12px 36px rgba(109,40,255,0.5);
  transform: translateY(-2px);
}
.btn-next:disabled { opacity: 0.3; cursor: not-allowed; }
.btn-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--silver);
  cursor: none;
  padding: 8px 0;
  transition: color 0.25s;
}
.btn-back svg { width: 16px; height: 16px; }
.btn-back:hover { color: var(--purple-pale); }

.btn-submit {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.05em;
  padding: 16px 36px;
  border-radius: 5px;
  background: linear-gradient(135deg, var(--purple) 0%, var(--purple-mid) 100%);
  color: var(--white);
  cursor: none;
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.35s, transform 0.3s var(--spring);
}
.btn-submit::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.07) 0%, transparent 60%);
  pointer-events: none;
}
.btn-submit svg { width: 16px; height: 16px; flex-shrink: 0; }
.btn-submit:hover {
  box-shadow: 0 16px 48px rgba(109,40,255,0.58);
  transform: translateY(-2px);
}
.btn-submit.loading .submit-text::after { content: '...'; }
.btn-submit.loading svg { opacity: 0; }

.form-note {
  margin-top: 18px;
  font-size: 11px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.6;
  text-align: center;
}

/* ═══════════════════════════════════════════════════
   SUCCESS STATE
═══════════════════════════════════════════════════ */
.booking-success {
  display: none;
  position: relative;
  z-index: 2;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 480px;
  padding: 64px 32px;
  animation: step-in 0.55s var(--spring) both;
}
.booking-success.visible { display: flex; }
.success-icon { width: 64px; height: 64px; color: var(--purple-soft); margin-bottom: 32px; }
.success-icon svg { width: 100%; height: 100%; }
.success-h2 {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 16px;
}
.success-p { font-size: 15px; font-weight: 300; line-height: 1.7; color: var(--silver); }

/* ═══════════════════════════════════════════════════
   FOOTER STRIP
═══════════════════════════════════════════════════ */
.booking-footer {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  padding: 24px 24px 40px;
  border-top: 1px solid var(--border-soft);
  font-size: 12px;
  color: var(--muted);
}
.bf-brand { font-family: var(--serif); font-weight: 500; color: var(--silver); }
.bf-sep { color: var(--border); }
.bf-sep--wide { margin: 0 4px; }
.bf-link { color: var(--silver); transition: color 0.2s; }
.bf-link:hover { color: var(--purple-pale); }
.bf-credit { font-size: 11px; color: var(--muted); }
.bf-link--credit { color: var(--muted); border-bottom: 1px solid var(--border-soft); transition: color 0.2s, border-color 0.2s; }
.bf-link--credit:hover { color: var(--purple-soft); border-color: var(--purple-rim); }

/* ═══════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════ */
@media (max-width: 640px) {
  .booking-page { padding: calc(var(--nav-h) + 44px) 16px 80px; }
  .bh-title { font-size: clamp(34px, 10vw, 50px); }
  .ssc-header { flex-wrap: wrap; gap: 12px; }
  .ssc-desc { display: none; }
  .ssc-pricing { order: -1; text-align: left; flex-direction: row; align-items: baseline; gap: 6px; width: 100%; }
  .ssc-toggle { display: none; }
  .pkg-options { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .field-group--full { grid-column: 1; }
  .step-nav { flex-wrap: wrap; }
  .btn-submit { width: 100%; justify-content: center; }
  .ass-options { flex-direction: column; }
  .ps-total-amount { font-size: 26px; }
  .booking-footer { gap: 8px; }
  .bf-sep--wide { display: none; }
  .bf-credit { width: 100%; text-align: center; }
}

@media (max-width: 400px) {
  .price-badge { padding: 8px 16px; }
  .pb-amount { font-size: 17px; }
}

/* ═══════════════════════════════════════════════════
   SERVICE TYPE CARDS (Step 2 — new layout)
═══════════════════════════════════════════════════ */
.svc-type-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 8px;
}

.svc-type-card { display: block; cursor: none; }
.svc-type-radio { position: absolute; opacity: 0; pointer-events: none; }

.stc-inner {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px 24px;
  border-radius: 10px;
  background: rgba(14,14,22,0.75);
  border: 1px solid var(--border);
  backdrop-filter: blur(12px);
  transition: border-color 0.3s var(--spring), background 0.3s var(--spring),
              box-shadow 0.3s var(--spring), transform 0.3s var(--spring);
  position: relative;
}
.stc-inner:hover {
  border-color: var(--purple-rim);
  background: rgba(18,18,28,0.92);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(109,40,255,0.12);
}
.svc-type-radio:checked + .stc-inner {
  border-color: var(--purple);
  background: rgba(109,40,255,0.1);
  box-shadow: 0 0 0 1px var(--purple), 0 12px 40px rgba(109,40,255,0.2);
}

.stc-left {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
}

.stc-icon {
  width: 40px; height: 40px;
  flex-shrink: 0;
  color: var(--muted);
  transition: color 0.3s;
}
.svc-type-radio:checked + .stc-inner .stc-icon { color: var(--purple-soft); }
.stc-icon svg { width: 100%; height: 100%; }

.stc-text { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.stc-name {
  font-size: 15px;
  font-weight: 500;
  color: var(--white);
  line-height: 1.2;
  transition: color 0.25s;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.svc-type-radio:checked + .stc-inner .stc-name { color: var(--purple-pale); }
.stc-desc {
  font-size: 12px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.45;
}

.stc-badge {
  display: inline-block;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--purple-soft);
  background: rgba(109,40,255,0.14);
  border: 1px solid var(--purple-rim);
  border-radius: 3px;
  padding: 2px 7px;
  white-space: nowrap;
  vertical-align: middle;
}
.svc-type-radio:checked + .stc-inner .stc-badge {
  background: rgba(109,40,255,0.22);
  border-color: var(--purple-soft);
  color: var(--purple-pale);
}

.stc-right {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
}
.stc-from {
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.stc-price {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1;
  transition: color 0.25s;
}
.svc-type-radio:checked + .stc-inner .stc-price { color: var(--purple-pale); }
.stc-check {
  width: 20px; height: 20px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: transparent;
  flex-shrink: 0;
  margin-top: 6px;
  transition: border-color 0.3s, background 0.3s, color 0.3s;
}
.svc-type-radio:checked + .stc-inner .stc-check {
  border-color: var(--purple);
  background: var(--purple);
  color: var(--white);
}
.stc-check svg { width: 11px; height: 11px; }

/* Featured card subtle accent */
.svc-type-card--featured .stc-inner {
  border-color: var(--border);
  background: rgba(109,40,255,0.04);
}
.svc-type-card--featured .stc-inner:hover {
  border-color: var(--purple-rim);
}

/* ═══════════════════════════════════════════════════
   ENHANCEMENTS SECTION (Step 2)
═══════════════════════════════════════════════════ */
.enh-wrap {
  margin-top: 28px;
  animation: step-in 0.4s var(--spring) both;
}

.enh-header {
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-soft);
}
.enh-title {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}
.enh-sub {
  font-size: 12px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.55;
}

.enh-block {
  margin-bottom: 14px;
  border-radius: 10px;
  background: rgba(14,14,22,0.6);
  border: 1px solid var(--border-soft);
  overflow: hidden;
  animation: step-in 0.35s var(--spring) both;
}

.enh-block-head {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border-soft);
}

.enh-block-icon {
  width: 34px; height: 34px;
  border-radius: 7px;
  background: rgba(109,40,255,0.1);
  border: 1px solid var(--purple-rim);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--purple-soft);
}
.enh-block-icon svg { width: 18px; height: 18px; }

.enh-block-name {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 2px;
}
.enh-block-desc {
  display: block;
  font-size: 11px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.4;
}

/* ── Radio options (correction / ceramic) ── */
.enh-opts {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.enh-opt { display: block; cursor: none; }
.enh-radio { position: absolute; opacity: 0; pointer-events: none; }

.eo-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 13px 20px;
  border-bottom: 1px solid var(--border-soft);
  transition: background 0.2s;
}
.enh-opt:last-child .eo-inner { border-bottom: none; }
.eo-inner:hover { background: rgba(109,40,255,0.04); }
.enh-radio:checked + .eo-inner { background: rgba(109,40,255,0.07); }

.eo-name {
  font-size: 13px;
  font-weight: 400;
  color: var(--silver);
  line-height: 1.4;
  transition: color 0.2s;
}
.enh-radio:checked + .eo-inner .eo-name { color: var(--purple-pale); }
.eo-note {
  font-style: normal;
  font-size: 11px;
  font-weight: 300;
  color: var(--muted);
}

.eo-price {
  font-size: 13px;
  font-weight: 500;
  color: var(--purple-soft);
  white-space: nowrap;
  flex-shrink: 0;
  transition: color 0.2s;
}
.enh-radio:checked + .eo-inner .eo-price { color: var(--purple-pale); font-weight: 600; }
.eo-price--none { color: var(--muted); font-weight: 300; }
.enh-radio:checked + .eo-inner .eo-price--none { color: var(--silver); font-weight: 400; }

/* ── Checkbox options (pet hair, seat shampoo, sealant) ── */
.enh-opts--checks {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.enh-cb-wrap { display: block; }

.enh-cb-row {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 13px 20px;
  border-bottom: 1px solid var(--border-soft);
  cursor: none;
  transition: background 0.2s;
}
.enh-cb-row:last-child { border-bottom: none; }
.enh-cb-row:hover { background: rgba(109,40,255,0.04); }

.enh-cb { position: absolute; opacity: 0; pointer-events: none; }

.ecb-box {
  width: 18px; height: 18px;
  border-radius: 4px;
  border: 1px solid var(--border);
  background: rgba(14,14,22,0.7);
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  color: transparent;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}
.enh-cb:checked ~ .ecb-box {
  border-color: var(--purple);
  background: var(--purple);
  color: var(--white);
}
.ecb-box svg { width: 10px; height: 10px; }

.ecb-name {
  flex: 1;
  font-size: 13px;
  font-weight: 400;
  color: var(--silver);
  transition: color 0.2s;
}
.enh-cb:checked ~ .ecb-name { color: var(--purple-pale); }

.ecb-price {
  font-size: 13px;
  font-weight: 500;
  color: var(--purple-soft);
  white-space: nowrap;
  flex-shrink: 0;
}
.enh-cb:checked ~ .ecb-price { color: var(--purple-pale); }

/* ── Pet Hair Severity Sub-Select ── */
.enh-sub-select {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s var(--spring);
}
.enh-sub-select.open { max-height: 120px; }

.ess-label {
  display: block;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 2px 20px 10px;
}

.ess-opts {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  padding: 0 20px 14px;
}

.ess-opt { cursor: none; }
.ess-opt input[type="radio"] { position: absolute; opacity: 0; pointer-events: none; }
.ess-opt span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 400;
  color: var(--silver);
  padding: 6px 14px;
  border-radius: 4px;
  border: 1px solid var(--border);
  background: rgba(14,14,22,0.6);
  transition: border-color 0.2s, color 0.2s, background 0.2s;
  white-space: nowrap;
}
.ess-opt span em { font-style: normal; color: var(--muted); }
.ess-opt input[type="radio"]:checked + span {
  border-color: var(--purple);
  background: rgba(109,40,255,0.1);
  color: var(--purple-pale);
}
.ess-opt input[type="radio"]:checked + span em { color: var(--purple-soft); }

/* ── Trust Strip ── */
.trust-strip {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  margin-bottom: 28px;
  padding: 13px 18px;
  border-radius: 7px;
  background: rgba(109,40,255,0.06);
  border: 1px solid var(--purple-rim);
  font-size: 12px;
  font-weight: 300;
  color: var(--silver);
  line-height: 1.5;
}
.trust-strip svg {
  width: 20px; height: 20px;
  flex-shrink: 0;
  color: var(--purple-soft);
}

/* ── Responsive overrides for new components ── */
@media (max-width: 640px) {
  .stc-desc { display: none; }
  .stc-price { font-size: 20px; }
  .stc-right { align-items: flex-end; }
  .enh-block-head { padding: 14px 16px; }
  .eo-inner { padding: 12px 16px; }
  .enh-cb-row { padding: 12px 16px; }
  .ess-opts { padding: 0 16px 12px; }
  .ess-label { padding: 2px 16px 8px; }
  .trust-strip { padding: 11px 14px; font-size: 11px; }
  .ess-opts { flex-direction: column; }
}

/* ═══════════════════════════════════════════════════
   REFACTORED BOOKING — ACCORDION CARD INTERNALS
═══════════════════════════════════════════════════ */

/* ── Panel included chips ── */
.panel-includes {
  margin-bottom: 22px;
}
.pi-label {
  display: block;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}
.pi-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}
.pi-chip {
  font-size: 11px;
  font-weight: 400;
  color: var(--silver);
  background: rgba(14,14,22,0.6);
  border: 1px solid var(--border-soft);
  border-radius: 4px;
  padding: 4px 10px;
  white-space: nowrap;
}
.pi-chip--highlight {
  color: var(--purple-soft);
  background: rgba(109,40,255,0.1);
  border-color: var(--purple-rim);
  font-weight: 500;
}

/* ── Upgrade section inside expanded panel ── */
.upgrade-section {
  margin-bottom: 22px;
}
.upgrade-section:last-child { margin-bottom: 0; }

.upgrade-section-head {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border-soft);
  flex-wrap: wrap;
}
.us-title {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
}
.us-sub {
  font-size: 11px;
  font-weight: 300;
  color: var(--muted);
}

/* ── Sealant included notice ── */
.sealant-note {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 14px;
  padding: 10px 14px;
  border-radius: 6px;
  background: rgba(109,40,255,0.07);
  border: 1px solid var(--purple-rim);
  font-size: 12px;
  font-weight: 400;
  color: var(--purple-pale);
  line-height: 1.4;
}
.sealant-note svg {
  width: 16px; height: 16px;
  flex-shrink: 0;
  color: var(--purple-soft);
}
.sealant-note--cond { margin-top: 16px; }

/* ── Ceramic includes 2-step notice ── */
.ceramic-correction-note {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  margin-top: 12px;
  padding: 10px 14px;
  border-radius: 6px;
  background: rgba(109,40,255,0.07);
  border: 1px solid var(--purple-rim);
  font-size: 12px;
  font-weight: 400;
  color: var(--purple-pale);
  line-height: 1.4;
}
.ceramic-correction-note svg {
  width: 16px; height: 16px;
  flex-shrink: 0;
  margin-top: 1px;
  color: var(--purple-soft);
}

/* ── Disabled pkg-card (2-step blocked by ceramic) ── */
.pkg-card--disabled {
  opacity: 0.35;
  pointer-events: none;
  cursor: not-allowed;
}

/* ── "Included" price variant ── */
.pkc-price--incl {
  font-size: 13px;
  font-weight: 400;
  color: var(--muted);
  letter-spacing: 0;
}
.pkg-radio:checked + .pkc-inner .pkc-price--incl {
  color: var(--purple-soft);
}

/* ── ao-note in add-on names ── */
.ao-note {
  font-style: normal;
  font-size: 11px;
  font-weight: 300;
  color: var(--muted);
}

/* ── Featured card accent ── */
.svc-sel-card--featured {
  border-color: var(--purple-rim);
  background: rgba(109,40,255,0.03);
}
.svc-sel-card--featured:hover { border-color: var(--purple); }
.svc-sel-card--featured.selected {
  border-color: var(--purple);
  box-shadow: 0 0 0 1px var(--purple), 0 16px 56px rgba(109,40,255,0.22);
}

/* ── Most Popular badge in card header ── */
.ssc-badge {
  display: inline-block;
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--purple-soft);
  background: rgba(109,40,255,0.14);
  border: 1px solid var(--purple-rim);
  border-radius: 3px;
  padding: 2px 6px;
  vertical-align: middle;
  margin-left: 6px;
  font-family: var(--sans);
}
.svc-sel-card.selected .ssc-badge {
  background: rgba(109,40,255,0.22);
  color: var(--purple-pale);
}

/* ── Summary line — included items ── */
.ps-line-price.is-included {
  color: var(--purple-soft);
  font-size: 12px;
  font-weight: 400;
  font-style: italic;
}

/* ── Koch Chemie trust badge ── */
.kc-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 20px;
  padding: 7px 14px;
  border-radius: 100px;
  background: rgba(14,14,22,0.7);
  border: 1px solid var(--border);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  backdrop-filter: blur(8px);
}
.kc-badge svg {
  width: 14px; height: 14px;
  color: var(--purple-soft);
  flex-shrink: 0;
}

/* ── Trust strip (re-confirm full width style) ── */
.trust-strip {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  margin-bottom: 28px;
  padding: 13px 18px;
  border-radius: 7px;
  background: rgba(109,40,255,0.06);
  border: 1px solid var(--purple-rim);
  font-size: 12px;
  font-weight: 300;
  color: var(--silver);
  line-height: 1.5;
}
.trust-strip svg {
  width: 20px; height: 20px;
  flex-shrink: 0;
  color: var(--purple-soft);
}

/* ── Mobile for new internals ── */
@media (max-width: 640px) {
  .upgrade-section-head { flex-direction: column; gap: 4px; }
  .pi-chips { gap: 6px; }
  .sealant-note { font-size: 11px; }
  .kc-badge { font-size: 9px; }
}

/* ═══════════════════════════════════════════════════
   NEED HELP BLOCK
═══════════════════════════════════════════════════ */
.help-block {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 24px;
  margin-bottom: 20px;
  padding: 20px 24px;
  border-radius: 10px;
  background: rgba(10,10,18,0.82);
  border: 1px solid var(--border);
  backdrop-filter: blur(14px);
  flex-wrap: wrap;
}
.help-text {
  flex: 1;
  min-width: 200px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.help-title {
  font-size: 14px;
  font-weight: 500;
  color: #ffffff;
  line-height: 1.3;
}
.help-body {
  font-size: 12px;
  font-weight: 300;
  color: rgba(248,248,250,0.62);
  line-height: 1.55;
}
.help-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: 6px;
  background: rgba(109,40,255,0.18);
  border: 1px solid var(--purple-rim);
  color: rgba(190,160,255,1);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  white-space: nowrap;
  transition: background 0.25s, border-color 0.25s, transform 0.2s, box-shadow 0.25s;
  cursor: none;
  flex-shrink: 0;
}
.help-btn svg { width: 16px; height: 16px; flex-shrink: 0; }
.help-btn:hover {
  background: rgba(109,40,255,0.3);
  border-color: var(--purple-soft);
  box-shadow: 0 6px 24px rgba(109,40,255,0.28);
  transform: translateY(-1px);
}
.help-sub {
  width: 100%;
  font-size: 10px;
  font-weight: 300;
  color: rgba(248,248,250,0.38);
  letter-spacing: 0.04em;
  padding-top: 2px;
}

@media (max-width: 640px) {
  .help-block { gap: 14px; padding: 16px 18px; }
  .help-btn {
    width: 100%;
    justify-content: center;
    padding: 14px 22px;
    font-size: 14px;
    cursor: pointer;
  }
}

/* ── panel-note small variant ── */
.panel-note--sm {
  font-size: 12px;
  margin-bottom: 14px;
  padding-top: 0;
}

/* ═══════════════════════════════════════════════════
   VISUAL CONTRAST & READABILITY OVERRIDES
   All scoped to .booking-page to avoid leaking
═══════════════════════════════════════════════════ */

/* Ensure booking content always sits above ambient layer */
.booking-page > * { position: relative; z-index: 2; }

/* Page header text */
.bh-title { color: #ffffff; }
.bh-sub   { color: rgba(248,248,250,0.78); }

/* Step description text */
.step-h2 { color: #ffffff; }
.step-p  { color: rgba(248,248,250,0.72); }

/* Service card name + desc */
.ssc-name { color: #ffffff; }
.ssc-desc { color: rgba(248,248,250,0.62); }
.ssc-from { color: rgba(248,248,250,0.5); }
.ssc-price { color: #ffffff; }

/* Panel text */
.panel-note {
  color: rgba(248,248,250,0.75);
  font-size: 13.5px;
  line-height: 1.7;
  padding: 14px 0 18px;
}

/* Included chips */
.pi-chip { color: rgba(248,248,250,0.68); }

/* Upgrade section */
.us-title { color: #ffffff; }
.us-sub   { color: rgba(248,248,250,0.58); }

/* Package cards */
.pkc-name { color: #ffffff; font-size: 14px; font-weight: 500; }
.pkc-desc { color: rgba(248,248,250,0.6); font-size: 11.5px; line-height: 1.55; }
.pkc-price { color: rgba(183,150,255,0.95); }
.pkg-radio:checked + .pkc-inner .pkc-name  { color: rgba(219,195,255,1); }
.pkg-radio:checked + .pkc-inner .pkc-price { color: rgba(219,195,255,1); }

/* Add-on rows */
.ao-name  { color: rgba(248,248,250,0.82); font-size: 13px; }
.ao-note  { color: rgba(248,248,250,0.48); }
.ao-price-tag { color: rgba(183,150,255,0.95); font-size: 13px; font-weight: 500; }

/* Pet severity sub-select */
.ass-label   { color: rgba(248,248,250,0.5); }
.aso-inner   { color: rgba(248,248,250,0.75); }
.aso-inner em { color: rgba(248,248,250,0.48); }

/* Vehicle card text */
.vc-name { color: #ffffff; }
.vc-desc { color: rgba(248,248,250,0.6); }

/* Addons section header */
.addons-title { color: #ffffff; }
.addons-note  { color: rgba(248,248,250,0.55); }

/* Summary panel */
.ps-title       { color: rgba(183,150,255,0.9); }
.ps-line-name   { color: rgba(248,248,250,0.72); }
.ps-line-name.is-base { color: #ffffff; }
.ps-line-price  { color: rgba(248,248,250,0.88); }
.ps-total-label { color: rgba(183,150,255,0.9); }
.ps-total-amount { color: #ffffff; font-size: 34px; }
.ps-disclaimer  { color: rgba(248,248,250,0.48); }

/* Form fields */
.field-label  { color: rgba(248,248,250,0.7); }
.field-input  { color: #ffffff; background: rgba(10,10,18,0.85); }
.field-input::placeholder { color: rgba(248,248,250,0.3); }

/* Trust strip */
.trust-strip { color: rgba(248,248,250,0.75); }

/* Price badge — bigger, more prominent */
.pb-amount {
  font-size: 24px;
  font-weight: 700;
}
.pb-label {
  font-size: 10px;
  letter-spacing: 0.14em;
}
.price-badge {
  padding: 12px 28px;
  gap: 14px;
}
.price-badge.has-price .pb-amount { color: rgba(190,160,255,1); }

/* Success state */
.success-h2 { color: #ffffff; }
.success-p  { color: rgba(248,248,250,0.72); }

/* ── Mobile ── */
@media (max-width: 640px) {
  .ps-total-amount { font-size: 28px; }
  .pb-amount { font-size: 20px; }
}

/* ── Addon name + description wrapper ── */
.ao-name-wrap {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
  min-width: 0;
}
.ao-name-wrap .ao-name { flex: unset; }
.ao-addon-desc {
  font-size: 12px;
  color: rgba(248,248,250,0.55);
  font-weight: 400;
  line-height: 1.4;
}

/* ── [3] Deep Extraction recommendation note (shown on Moderate + Heavy Condition) ── */
.extract-rec-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 12px;
  padding: 12px 14px;
  border-radius: 8px;
  background: rgba(109, 40, 255, 0.07);
  border: 1px solid rgba(159, 122, 234, 0.22);
  animation: fadeInNote 0.25s var(--spring);
}
@keyframes fadeInNote {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: translateY(0); }
}
.extract-rec-note svg {
  width: 14px; height: 14px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--purple-soft);
}
.extract-rec-note div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.ern-title {
  font-size: 11px;
  font-weight: 600;
  color: var(--purple-soft);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
/* [4] Deep Extraction remains a separate optional paid add-on — this note is display-only */
.ern-body {
  font-size: 12px;
  color: rgba(248, 248, 250, 0.65);
  line-height: 1.5;
}

/* ══════════════════════════════════════════════════
   BOOKING RESPONSIVE — COMPREHENSIVE PASS v2
   Fills gaps: vehicle cards, step nav, form fields,
   summary panel, panel internals, tap targets
══════════════════════════════════════════════════ */

/* ── 768px: tablet ── */
@media (max-width: 768px) {
  .booking-form { max-width: 100%; }
  .booking-header { max-width: 100%; }
  .step-indicator { max-width: 360px; }
  .price-badge { padding: 10px 22px; }
  .vc-inner { padding: 20px 22px; }
  .ssc-header { padding: 20px 22px; }
  .ssc-panel-inner { padding: 0 22px 26px; }
  .detail-base-row { padding: 14px 0 18px; }
  /* Restore pointer cursor on all interactive elements */
  .vehicle-card, .svc-sel-card, .pkg-card, .btn-next, .btn-back,
  .btn-submit, .addon-item, .addon-checkbox-row, .ass-opt,
  .step-node, .help-btn { cursor: pointer; }
}

/* ── 640px: mobile additions
   (Complements the existing 640px block above — no duplicates) ── */
@media (max-width: 640px) {
  /* ─ Vehicle cards: bigger tap targets ─ */
  .vehicle-grid { gap: 10px; }
  .vc-inner { padding: 20px 18px; min-height: 68px; }
  .vc-name { font-size: 16px; }
  .vc-desc { font-size: 12.5px; }
  .vc-icon { width: 70px; height: 44px; }

  /* ─ Service accordion cards ─ */
  .svc-sel-card { border-radius: 10px; }
  .ssc-name { font-size: 16px; }
  .ssc-panel-inner { padding: 0 16px 22px; }
  .detail-base-row { margin-bottom: 16px; }
  .dbr-price { font-size: 22px; }

  /* ─ Package option cards ─ */
  .pkc-inner { padding: 18px 42px 18px 16px; }
  .pkc-name { font-size: 14px; }
  .pkc-desc { font-size: 11.5px; padding-right: 22px; }

  /* ─ Add-on rows ─ */
  .addon-item { padding: 15px 16px; }
  .addon-checkbox-row { padding: 15px 16px; }
  .addon-sub-select.open { padding: 0 16px 14px; }
  .ao-name { font-size: 14px; }
  .ao-price-tag { font-size: 14px; }

  /* ─ Step navigation: stack full-width ─ */
  .step-nav { flex-direction: column-reverse; gap: 10px; }
  .btn-next {
    width: 100%;
    justify-content: center;
    padding: 16px 24px;
    font-size: 14px;
    letter-spacing: 0.05em;
  }
  .btn-back {
    width: 100%;
    justify-content: center;
    text-align: center;
    padding: 12px 0;
    font-size: 13px;
  }

  /* ─ Form fields: easier typing on mobile ─ */
  .contact-grid { gap: 14px; }
  .field-input { padding: 15px 16px; font-size: 15px; }
  .field-label { font-size: 12px; letter-spacing: 0.1em; }
  .field-input--textarea { min-height: 100px; }

  /* ─ Pricing summary: tighter padding ─ */
  .ps-header { padding: 16px 18px 14px; }
  .ps-meta { padding: 12px 18px 0; }
  .ps-lines { padding: 12px 18px; }
  .ps-line { padding: 9px 0; }
  .ps-total-row { padding: 16px 18px; }
  .ps-line-name { font-size: 13px; }
  .ps-line-price { font-size: 13px; }

  /* ─ Step heading ─ */
  .step-heading { margin-bottom: 28px; }
  .step-h2 { font-size: clamp(20px, 5.5vw, 28px); }

  /* ─ Price badge ─ */
  .price-badge { padding: 10px 18px; gap: 10px; }
  .pb-label { font-size: 9px; }

  /* ─ Step indicator ─ */
  .step-indicator { max-width: 320px; margin-bottom: 40px; }
  .sn-label { font-size: 9px; letter-spacing: 0.08em; }

  /* ─ Trust strip ─ */
  .trust-strip { flex-wrap: wrap; }

  /* ─ Service selector ─ */
  .service-selector { gap: 10px; }
}

/* ── 480px: very small mobile ── */
@media (max-width: 480px) {
  .booking-page { padding: calc(var(--nav-h) + 36px) 14px 72px; }
  .booking-header { margin-bottom: 24px; }
  .bh-title { font-size: clamp(30px, 10vw, 44px); }
  .bh-sub { font-size: 14px; }
  .step-indicator { max-width: 290px; margin-bottom: 36px; }
  .vc-inner { padding: 18px 14px; }
  .ssc-header { padding: 18px 16px; }
  .ssc-panel-inner { padding: 0 14px 20px; }
  .pkc-inner { padding: 16px 40px 16px 14px; }
  .ps-header { padding: 14px 16px 12px; }
  .ps-meta { padding: 10px 16px 0; }
  .ps-lines { padding: 10px 16px; }
  .ps-total-row { padding: 14px 16px; }
  .price-badge { padding: 9px 16px; gap: 8px; }
  .price-badge { border-radius: 80px; }
  .field-input { padding: 14px 14px; }
  .btn-next { padding: 15px 20px; }
  .addon-item { padding: 14px 14px; }
  .addon-checkbox-row { padding: 14px 14px; }
}

