/* ── BOOKING PAGE ──────────────────────────────────────────────────────── */

.booking-page {
  background: var(--off-white);
  min-height: 100vh;
}

/* ── HEADER ── */
.booking-header {
  background: var(--navy);
  padding: 5rem 2rem 3rem;
  text-align: center;
}

.booking-header-inner {
  max-width: 700px;
  margin: 0 auto;
}

.booking-eyebrow {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.booking-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}

.booking-subtitle {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.55);
  font-weight: 300;
  margin-bottom: 2.5rem;
}

/* ── STEP TRACKER ── */
.step-tracker {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  opacity: 0.4;
  transition: opacity 0.3s;
}

.step-item.active, .step-item.done {
  opacity: 1;
}

.step-dot {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 2px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(255,255,255,0.5);
  transition: all 0.3s;
}

.step-item.active .step-dot {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
}

.step-item.done .step-dot {
  background: var(--teal);
  border-color: var(--teal);
  color: var(--white);
}

.step-item span {
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.5);
}

.step-item.active span { color: var(--gold); }
.step-item.done span { color: var(--teal); }

.step-line {
  width: 48px;
  height: 2px;
  background: rgba(255,255,255,0.1);
  margin-bottom: 1.2rem;
}

/* ── CONTAINER ── */
.booking-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 3rem 2rem 5rem;
}

/* ── STEPS ── */
.booking-step { display: none; }
.booking-step.active { display: block; }

.step-section-header {
  margin-bottom: 2rem;
}

.step-section-header h2 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 900;
  color: var(--navy);
  letter-spacing: -0.02em;
  margin-bottom: 0.35rem;
}

.step-section-header p {
  font-size: 0.9rem;
  color: var(--text-mid);
}

/* ── STEP 1 GRID ── */
.step1-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

@media (max-width: 700px) {
  .step1-grid { grid-template-columns: 1fr; }
}

.picker-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-mid);
  margin-bottom: 0.75rem;
}

/* ── JETSKI LIST ── */
.jetski-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.jetski-card {
  padding: 1rem 1.25rem;
  background: var(--white);
  border: 2px solid rgba(11,31,58,0.08);
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s;
}

.jetski-card:hover {
  border-color: var(--teal);
  box-shadow: 0 4px 20px rgba(13,124,140,0.12);
}

.jetski-card.selected {
  border-color: var(--teal);
  background: rgba(13,124,140,0.04);
}

.jetski-card-name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.25rem;
}

.jetski-card-meta {
  display: flex;
  gap: 1rem;
  font-size: 0.78rem;
  color: var(--text-mid);
}

.jetski-card-price {
  color: var(--teal);
  font-weight: 600;
}

.jetski-loading {
  padding: 1rem;
  color: var(--text-light);
  font-size: 0.9rem;
}

/* ── CALENDAR ── */
.calendar-wrapper {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.calendar-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.cal-nav-btn {
  background: var(--white);
  border: 1px solid rgba(11,31,58,0.1);
  border-radius: 8px;
  padding: 0.4rem 0.75rem;
  cursor: pointer;
  color: var(--navy);
  font-size: 1rem;
  transition: background 0.2s;
}

.cal-nav-btn:hover { background: var(--sand); }

.cal-month-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--navy);
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}

.cal-dow {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-light);
  text-align: center;
  padding: 0.25rem 0;
}

.cal-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 500;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.15s;
  color: var(--text-mid);
}

.cal-day:hover:not(.disabled):not(.other-month) {
  background: rgba(13,124,140,0.1);
  color: var(--navy);
}

.cal-day.selected {
  background: var(--teal);
  color: var(--white);
  font-weight: 700;
}

.cal-day.today {
  border: 2px solid var(--gold);
}

.cal-day.disabled, .cal-day.other-month {
  opacity: 0.3;
  cursor: default;
}

/* ── SLOT RESULTS ── */
.slot-results {
  background: var(--white);
  border-radius: 12px;
  padding: 1.25rem;
  border: 1px solid rgba(11,31,58,0.08);
}

.slot-results h4 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.slot-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  max-height: 280px;
  overflow-y: auto;
}

.slot-chip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.65rem 1rem;
  background: var(--off-white);
  border: 2px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s;
  font-size: 0.85rem;
}

.slot-chip:hover {
  border-color: var(--teal);
  background: rgba(13,124,140,0.05);
}

.slot-chip.selected {
  border-color: var(--teal);
  background: rgba(13,124,140,0.08);
}

.slot-chip.unavailable {
  opacity: 0.4;
  cursor: not-allowed;
}

.slot-chip-time {
  font-weight: 600;
  color: var(--navy);
}

.slot-chip-jetski {
  font-size: 0.75rem;
  color: var(--text-mid);
}

.no-slots {
  padding: 1rem;
  text-align: center;
  color: var(--text-light);
  font-size: 0.875rem;
}

/* ── FORMS ── */
.booking-form {
  background: var(--white);
  border-radius: 16px;
  padding: 2rem;
  border: 1px solid rgba(11,31,58,0.06);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}

@media (max-width: 600px) {
  .form-row { grid-template-columns: 1fr; }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-dark);
  letter-spacing: 0.02em;
}

.form-group input,
.form-group select {
  padding: 0.7rem 1rem;
  border: 1.5px solid rgba(11,31,58,0.12);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-dark);
  background: var(--off-white);
  transition: border-color 0.2s;
  outline: none;
}

.form-group input:focus,
.form-group select:focus {
  border-color: var(--teal);
  background: var(--white);
}

.form-group input::placeholder { color: var(--text-light); }

/* ── BOOKING SUMMARY ── */
.booking-summary {
  background: var(--sand);
  border-radius: 12px;
  padding: 1.5rem;
  margin: 1.5rem 0;
}

.booking-summary h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1rem;
}

.summary-grid {
  display: grid;
  gap: 0.65rem;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.875rem;
}

.summary-label { color: var(--text-mid); }
.summary-value { font-weight: 600; color: var(--navy); }

.deposit-row {
  display: flex;
  justify-content: space-between;
  padding-top: 0.75rem;
  margin-top: 0.75rem;
  border-top: 1.5px solid rgba(11,31,58,0.1);
  font-size: 0.95rem;
}

/* ── WAIVER ── */
.waiver-body {
  background: var(--off-white);
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  border-left: 3px solid var(--gold);
}

.waiver-body h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.65rem;
}

.waiver-body p {
  font-size: 0.875rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.waiver-check {
  background: var(--off-white);
  border-radius: 8px;
  padding: 1rem 1.25rem;
  margin-bottom: 0.5rem;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
  font-size: 0.875rem;
  color: var(--text-mid);
  line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
  margin-top: 2px;
  accent-color: var(--teal);
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* ── PAYMENT ── */
.stripe-wrapper {
  background: var(--white);
  border-radius: 16px;
  padding: 2rem;
  border: 1px solid rgba(11,31,58,0.06);
  margin-bottom: 1rem;
}

.payment-message {
  padding: 0.75rem 1rem;
  border-radius: 8px;
  font-size: 0.875rem;
  margin-top: 0.75rem;
}

.payment-message.error {
  background: #fde8e8;
  color: #b91c1c;
}

.payment-message.success {
  background: #e8f7ef;
  color: #065f46;
}

.stripe-secure {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: var(--text-light);
  justify-content: center;
  margin-top: 0.75rem;
}

/* ── STEP ACTIONS ── */
.step-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1rem;
  margin-top: 1.5rem;
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--navy);
  color: var(--white);
  border: none;
  border-radius: 10px;
  padding: 0.85rem 1.75rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
  text-decoration: none;
}

.btn-primary:hover { background: var(--navy-mid); }
.btn-primary:active { transform: scale(0.98); }
.btn-primary:disabled { opacity: 0.4; cursor: not-allowed; }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: transparent;
  color: var(--text-mid);
  border: 1.5px solid rgba(11,31,58,0.15);
  border-radius: 10px;
  padding: 0.85rem 1.5rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-secondary:hover {
  background: var(--off-white);
  border-color: var(--navy);
  color: var(--navy);
}

/* ── CONFIRMATION ── */
.confirmation-box {
  text-align: center;
  padding: 2rem 0;
}

.confirm-icon {
  width: 64px;
  height: 64px;
  background: var(--teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.confirm-icon svg {
  width: 32px;
  height: 32px;
  color: var(--white);
  stroke: var(--white);
}

.confirmation-box h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.confirmation-box > p {
  font-size: 0.95rem;
  color: var(--text-mid);
  margin-bottom: 2rem;
}

.confirm-details {
  background: var(--sand);
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  text-align: left;
}

.confirm-reminders {
  background: var(--off-white);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: left;
}

.confirm-reminders h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.confirm-reminders ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.confirm-reminders li {
  font-size: 0.875rem;
  color: var(--text-mid);
  padding-left: 1.25rem;
  position: relative;
}

.confirm-reminders li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--teal);
  font-weight: 700;
}

/* ── STRIPE ELEMENTS ── */
#payment-element {
  min-height: 80px;
  margin-bottom: 0.5rem;
}