/* ── BOOKING NAV ── */
.booking-nav {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 48px;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-brand {
  font-family: 'DM Mono', monospace;
  font-size: 13px;
  letter-spacing: 0.35em;
  color: var(--accent);
  text-decoration: none;
}

.nav-brand:hover { opacity: 0.8; }

.nav-divider {
  color: var(--border);
  font-family: 'DM Mono', monospace;
}

.nav-page {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--fg-muted);
}

/* ── BOOKING PAGE ── */
.booking-page {
  min-height: 100vh;
  padding: 48px;
  background:
    radial-gradient(ellipse 60% 50% at 20% 30%, rgba(245,158,11,0.03) 0%, transparent 70%),
    var(--bg);
}

.booking-container {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  max-width: 1100px;
  margin: 0 auto;
}

.booking-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(40px, 6vw, 64px);
  letter-spacing: 0.02em;
  color: var(--fg);
  line-height: 1.0;
  margin-top: 12px;
  margin-bottom: 8px;
}

.booking-sub {
  font-size: 16px;
  color: var(--fg-muted);
  font-weight: 300;
  margin-bottom: 40px;
  max-width: 480px;
}

/* ── FORM ── */
.booking-form {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.form-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-section-label {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.25em;
  color: var(--accent);
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--fg-muted);
}

.optional {
  color: rgba(154, 145, 135, 0.5);
  font-weight: 400;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg-3);
  border: 1px solid var(--border);
  color: var(--fg);
  padding: 12px 16px;
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 15px;
  border-radius: 2px;
  outline: none;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(154, 145, 135, 0.4);
}

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%239A9187' fill='none' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form-group select option {
  background: var(--bg-3);
  color: var(--fg);
}

/* Date input styling */
.form-group input[type="date"] {
  cursor: pointer;
}

.form-group input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(0.7);
  cursor: pointer;
}

.form-group textarea {
  resize: vertical;
  min-height: 80px;
}

/* ── LOCATION SELECTOR ── */
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2px;
}

.location-option input { display: none; }

.location-card {
  background: var(--bg-3);
  padding: 24px 20px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.location-card:hover {
  background: #1F1F1F;
}

.location-option input:checked + .location-card {
  background: var(--accent-dim);
  border: 1px solid var(--accent);
  margin: -1px;
}

.location-icon {
  font-size: 24px;
  color: var(--accent);
  display: block;
  margin-bottom: 4px;
  font-family: 'DM Mono', monospace;
}

.location-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  letter-spacing: 0.02em;
  color: var(--fg);
  display: block;
}

.location-desc {
  font-size: 12px;
  color: var(--fg-muted);
  line-height: 1.4;
}

/* ── ERRORS ── */
.form-errors {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  padding: 16px 20px;
  border-radius: 2px;
}

.form-errors ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.form-errors li {
  font-size: 13px;
  color: #EF4444;
  font-family: 'DM Mono', monospace;
}

.form-errors li::before {
  content: '× ';
}

/* ── SUBMIT BUTTON ── */
.submit-btn {
  background: var(--accent);
  color: #0A0A0A;
  border: none;
  padding: 16px 40px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: opacity 0.2s;
  align-self: flex-start;
}

.submit-btn:hover { opacity: 0.9; }
.submit-btn:disabled { opacity: 0.5; cursor: not-allowed; }

/* ── INFO PANEL ── */
.booking-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: sticky;
  top: 80px;
  align-self: start;
}

.info-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  padding: 28px;
}

.info-eyebrow {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.25em;
  color: var(--accent);
  display: block;
  margin-bottom: 20px;
}

.info-steps {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.info-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.step-num {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 0.1em;
  flex-shrink: 0;
  margin-top: 2px;
}

.info-step strong {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  letter-spacing: 0.02em;
  color: var(--fg);
  display: block;
  margin-bottom: 2px;
}

.info-step p {
  font-size: 13px;
  color: var(--fg-muted);
  line-height: 1.4;
}

.info-locations {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.info-loc {
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(245,158,11,0.08);
}

.info-loc:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.loc-tag {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--fg);
  display: block;
  margin-bottom: 4px;
}

.info-loc p {
  font-size: 13px;
  color: var(--fg-muted);
  line-height: 1.4;
}

/* ── SUCCESS MODAL ── */
.modal {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 200;
  padding: 24px;
}

.modal[hidden] { display: none; }

.modal-content {
  background: var(--bg-2);
  border: 1px solid var(--border);
  padding: 48px;
  max-width: 480px;
  text-align: center;
}

.modal-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--accent);
  color: #0A0A0A;
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 20px;
}

.modal-content h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 36px;
  letter-spacing: 0.02em;
  color: var(--fg);
  margin-bottom: 12px;
}

.modal-content p {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.6;
  margin-bottom: 28px;
}

.modal-btn {
  background: var(--accent);
  color: #0A0A0A;
  border: none;
  padding: 12px 32px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  letter-spacing: 0.05em;
  cursor: pointer;
  display: block;
  width: 100%;
  margin-bottom: 12px;
}

.modal-btn:hover { opacity: 0.9; }

.modal-link {
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  color: var(--fg-muted);
  text-decoration: none;
  letter-spacing: 0.1em;
}

.modal-link:hover { color: var(--accent); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .booking-page { padding: 24px; }
  .booking-nav { padding: 16px 24px; }
  .booking-container {
    grid-template-columns: 1fr;
  }
  .booking-info {
    position: static;
  }
  .form-row { grid-template-columns: 1fr; }
  .location-grid { grid-template-columns: 1fr; }
}
