/* ==========================================
   BOOKING FORM STYLES
   ========================================== */

.booking-hero {
  padding: 120px 24px 48px;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}
.booking-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.booking-headline {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--fg);
  letter-spacing: 0.02em;
  margin-bottom: 12px;
}
.booking-subhead {
  font-size: 16px;
  color: var(--fg-muted);
  max-width: 480px;
}

.booking-section {
  padding: 48px 24px 80px;
  background: var(--bg-alt);
}
.booking-form-wrap {
  max-width: 720px;
  margin: 0 auto;
}
.booking-form {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.form-section {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 28px 32px;
  margin-bottom: 16px;
}
.form-section-title {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.optional-tag {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  color: var(--fg-muted);
  background: var(--border);
  padding: 2px 8px;
  border-radius: 4px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}
.field-sm { flex: 0 0 90px; }

.field label {
  font-size: 13px;
  font-weight: 500;
  color: var(--fg-muted);
  letter-spacing: 0.03em;
}
.req { color: var(--accent); }

.field input,
.field select,
.field textarea {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 14px;
  padding: 10px 14px;
  transition: border-color 0.15s;
  outline: none;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--accent);
}
.field input::placeholder,
.field textarea::placeholder {
  color: #555;
}
.field select option { background: var(--bg-card); color: var(--fg); }

.field-row {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
}
.field-row:last-child { margin-bottom: 0; }
.field-row-3 > .field:not(:first-child) { margin-left: 0; }

.field-note {
  font-size: 13px;
  color: var(--fg-muted);
  margin-bottom: 16px;
}

/* Photo upload */
.photo-drop-zone {
  border: 1px dashed var(--border);
  border-radius: 8px;
  padding: 32px;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
  margin-bottom: 16px;
}
.photo-drop-zone:hover,
.photo-drop-zone.drag-over {
  border-color: var(--accent);
  background: var(--accent-dim);
}
.photo-drop-inner { pointer-events: none; }
.photo-drop-inner svg { margin-bottom: 12px; }
.photo-drop-inner p { font-size: 14px; color: var(--fg-muted); margin-bottom: 4px; }
.photo-hint { font-size: 12px; color: #555; }

.photo-preview-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  margin-bottom: 16px;
}
.photo-thumb {
  position: relative;
  aspect-ratio: 1;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--border);
}
.photo-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.photo-remove {
  position: absolute;
  top: 4px;
  right: 4px;
  background: rgba(0,0,0,0.7);
  border: none;
  color: #fff;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  font-size: 14px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Submit */
.btn-submit {
  background: var(--accent);
  color: #0A0A0A;
  border: none;
  border-radius: 8px;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 16px 32px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background 0.15s, opacity 0.15s;
  width: 100%;
  margin-top: 8px;
}
.btn-submit:hover { background: #e08c0a; }
.btn-submit:disabled { opacity: 0.6; cursor: not-allowed; }

.spin {
  animation: spin 0.8s linear infinite;
}
@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.form-error {
  background: rgba(239,68,68,0.1);
  border: 1px solid rgba(239,68,68,0.3);
  color: #f87171;
  border-radius: 6px;
  padding: 12px 16px;
  font-size: 14px;
  margin-top: 8px;
}

/* Success panel */
.success-panel {
  background: var(--bg-card);
  border: 1px solid var(--accent);
  border-radius: 8px;
  padding: 48px 40px;
  text-align: center;
}
.success-icon { margin-bottom: 24px; }
.success-panel h2 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--fg);
  margin-bottom: 16px;
}
.success-panel p {
  font-size: 15px;
  color: var(--fg-muted);
  margin-bottom: 32px;
}
.btn-back {
  display: inline-block;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--fg-muted);
  border-radius: 6px;
  padding: 10px 24px;
  font-size: 14px;
  text-decoration: none;
  transition: border-color 0.15s;
}
.btn-back:hover { border-color: var(--accent); color: var(--accent); }

/* Mobile */
@media (max-width: 600px) {
  .field-row { flex-direction: column; gap: 16px; }
  .field-row-3 { flex-direction: column; }
  .field-sm { flex: 1; }
  .form-section { padding: 20px; }
  .photo-preview-grid { grid-template-columns: repeat(3, 1fr); }
}