/* =============================================================
   BOOK SERVICE + WIZARD FORM
   ============================================================= */
.book-section { position: relative; padding: 90px 0; background: linear-gradient(90deg, rgba(0,0,0,.92), rgba(0,0,0,.6)), #070707; border-top: 1px solid rgba(255,255,255,.1); }
.book-grid {
  display: grid;
  grid-template-columns: minmax(520px, 1fr) minmax(340px, .9fr);
  gap: clamp(24px, 2.8vw, 40px);
  align-items: center;
  width: min(1120px, calc(100% - 56px));
}
.book-copy {
  order: 2;
  justify-self: start;
  max-width: 520px;
}
.book-copy .section-title {
  max-width: 10.5ch;
}
.book-copy p {
  max-width: 440px;
  color: #ddd;
}
.book-points { list-style: none; margin: 20px 0 0; padding: 0; display: grid; gap: 12px; }
.book-points li { display: grid; grid-template-columns: 24px 1fr; align-items: center; color: #eee; }
.book-points span { color: var(--yellow); font-weight: 900; }
.booking-form {
  position: relative;
  order: 1;
  justify-self: end;
  width: min(100%, 580px);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  padding: 30px;
  border: 1px solid rgba(255,212,0,.28);
  border-radius: 6px;
  background: rgba(8,8,8,.9);
  box-shadow: var(--shadow);
}
.booking-form label { color: #fff; font-family: var(--font-head); font-size: 1rem; letter-spacing: .04em; text-transform: uppercase; font-weight: 800; }
.booking-form input, .booking-form select, .booking-form textarea { width: 100%; margin-top: 8px; padding: 13px 14px; border: 1px solid rgba(255,255,255,.2); background: rgba(255,255,255,.06); color: #fff; border-radius: 3px; outline: none; }
.booking-form textarea, .booking-form .btn, .form-note { grid-column: 1 / -1; }
.booking-form input:focus, .booking-form select:focus, .booking-form textarea:focus { border-color: var(--yellow); box-shadow: 0 0 0 3px rgba(255,212,0,.14); }
.booking-form option { color: #000; }
.booking-wizard { grid-template-columns: 1fr; }
.wizard-topline {
  display: grid;
  gap: 10px;
  color: var(--yellow);
  font-family: var(--font-mono);
  font-size: .8rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.wizard-progress {
  height: 8px;
  border: 1px solid rgba(255,255,255,.15);
  background: rgba(255,255,255,.05);
}
.wizard-progress i {
  display: block;
  width: 25%;
  height: 100%;
  background: var(--yellow);
  transition: width .22s ease;
}
.wizard-step {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}
.wizard-step legend {
  grid-column: 1 / -1;
  margin-bottom: 4px;
  color: #fff;
  font-family: var(--font-head);
  font-size: 1.35rem;
  font-weight: 900;
  text-transform: uppercase;
}
.wizard-step label:has(textarea),
.wizard-step label:has(select),
.review-box {
  grid-column: 1 / -1;
}
.review-box {
  padding: 16px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.045);
  color: var(--muted);
  white-space: pre-wrap;
}
.wizard-actions {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 12px;
}
.wizard-actions .btn { width: 100%; }
.field-error {
  border-color: var(--danger) !important;
  box-shadow: 0 0 0 3px rgba(255,43,43,.16) !important;
}
.form-note { margin: 0; color: var(--muted); text-align: center; }
.form-note a { color: var(--yellow); font-weight: 800; }
