/* ============================================================
   Booking Page — V5 rebuild
   Hero (white) + Two-step form (cta-midpage gradient)
   ============================================================ */

/* ---- HERO (white, compact) ---- */
.booking-hero {
  background: var(--white);
  padding: 0 40px 24px;
  padding-top: calc(var(--hero-header-offset) + 36px);
  text-align: center;
}

.booking-hero-h1 {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--black);
  margin-bottom: 14px;
}

.booking-hero-gradient {
  background: linear-gradient(135deg, var(--electric-blue) 0%, #6e40f0 50%, var(--electric-purple) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.booking-hero-sub {
  font-size: clamp(15px, 1.6vw, 19px);
  font-weight: 300;
  color: rgba(0, 0, 0, 0.48);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.5;
}

/* ---- FORM SECTION (cta-midpage gradient) ---- */
.booking-form-section {
  background: var(--black);
  padding: 0 0 20px;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.booking-form-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg,
      rgba(138, 43, 226, 0.35) 0%,
      rgba(110, 64, 240, 0.22) 35%,
      rgba(0, 212, 255, 0.12) 65%,
      rgba(0, 212, 255, 0.25) 100%
    ),
    radial-gradient(ellipse 80% 50% at 15% 20%,
      rgba(138, 43, 226, 0.20) 0%,
      transparent 60%
    ),
    radial-gradient(ellipse 80% 50% at 85% 80%,
      rgba(0, 212, 255, 0.18) 0%,
      transparent 60%
    );
  pointer-events: none;
}

/* ---- STEP DOTS ---- */
.booking-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 28px 0 6px;
  position: relative;
  z-index: 1;
}

.booking-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  transition: all 0.3s ease;
}

.booking-dot--active {
  background: var(--gold);
  box-shadow: 0 0 12px rgba(254, 192, 39, 0.4);
}

.booking-dot--done {
  background: var(--gold);
  opacity: 0.35;
}

.booking-step-label {
  text-align: center;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 0 24px;
  margin: 0;
  position: relative;
  z-index: 1;
}

/* ---- FORM WRAP ---- */
.booking-form-wrap {
  max-width: 620px;
  margin: 0 auto;
  padding: 0 32px 24px;
  position: relative;
  z-index: 1;
}

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

.booking-step--active {
  display: block;
}

/* ---- SECTION HEADS ---- */
.booking-section-head {
  font-size: 13px;
  font-weight: 700;
  color: var(--gold);
  margin: 0 0 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(254, 192, 39, 0.18);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.booking-section-head--spaced {
  margin-top: 28px;
}

/* ---- FORM GRID ---- */
.booking-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}

.booking-row--full {
  grid-template-columns: 1fr;
}

/* ---- FIELD ---- */
.booking-field label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 6px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.booking-req {
  color: var(--gold);
}

/* ---- INPUTS ---- */
.booking-field input,
.booking-field select,
.booking-field textarea {
  width: 100%;
  padding: 13px 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 10px;
  color: var(--white);
  font-size: 15px;
  font-family: inherit;
  box-sizing: border-box;
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.booking-field input:focus,
.booking-field select:focus,
.booking-field textarea:focus {
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 3px rgba(254, 192, 39, 0.12);
}

.booking-field input::placeholder,
.booking-field textarea::placeholder {
  color: rgba(255, 255, 255, 0.28);
}

.booking-field select {
  appearance: none;
  color: rgba(255, 255, 255, 0.28);
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 4l4 4 4-4' stroke='%23999' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
}

.booking-field select:valid:not([value=""]) {
  color: var(--white);
}

.booking-field textarea {
  min-height: 90px;
  resize: vertical;
}

/* ---- HONEYPOT ---- */
.honeypot {
  position: absolute;
  left: -9999px;
}

/* ---- NAV BUTTONS ---- */
.booking-nav {
  margin-top: 24px;
}

.booking-nav--split {
  display: flex;
  gap: 14px;
}

.booking-btn-next {
  flex: 1;
  width: 100%;
  padding: 20px 24px;
  background: var(--gold);
  color: #000;
  border: none;
  border-radius: 60px;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 4px 24px rgba(254, 192, 39, 0.25);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.booking-btn-next:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 8px 36px rgba(254, 192, 39, 0.35);
}

.booking-btn-next:active:not(:disabled) {
  transform: translateY(0);
}

.booking-btn-next:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none;
}

.booking-btn-back {
  padding: 18px 28px;
  background: transparent;
  color: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 60px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  min-width: 130px;
  text-align: center;
  transition: all 0.2s ease;
}

.booking-btn-back:hover {
  border-color: rgba(255, 255, 255, 0.3);
  color: var(--white);
}

/* ---- STATUS MESSAGES ---- */
.error-message,
.success-message {
  padding: 14px 16px;
  border-radius: 10px;
  margin-bottom: 16px;
  display: none;
  color: var(--white);
  font-size: 15px;
}

.error-message {
  background: rgba(220, 38, 38, 0.85);
}

.success-message {
  background: rgba(34, 150, 34, 0.85);
}

/* ---- LOADING ---- */
.booking-loading {
  text-align: center;
  display: none;
  color: rgba(255, 255, 255, 0.6);
  padding: 20px 0;
}

.booking-spinner {
  border: 3px solid rgba(255, 255, 255, 0.12);
  border-top: 3px solid var(--gold);
  border-radius: 50%;
  width: 28px;
  height: 28px;
  animation: booking-spin 1s linear infinite;
  margin: 0 auto 8px;
}

@keyframes booking-spin {
  to { transform: rotate(360deg); }
}

/* ---- FOOTER ---- */
.booking-footer {
  text-align: center;
  padding: 20px 32px 12px;
  position: relative;
  z-index: 1;
}

.booking-footer::before {
  content: '';
  display: block;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent);
  margin-bottom: 20px;
}

.booking-footer p {
  color: rgba(255, 255, 255, 0.4);
  font-size: 14px;
  margin: 0;
}

.booking-footer a {
  color: var(--gold);
  text-decoration: none;
  font-weight: 700;
}

/* ---- THANK YOU ---- */
.thank-you-page {
  text-align: center;
  padding-top: 48px;
  padding-bottom: 48px;
}

.thankyou-h1 {
  font-size: clamp(40px, 7vw, 72px);
}

.thankyou-body {
  color: rgba(255, 255, 255, 0.6);
  font-size: 18px;
  line-height: 1.6;
  margin: 0 0 16px;
}

.thankyou-redirect {
  color: rgba(255, 255, 255, 0.25);
  font-size: 13px;
  margin: 0;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 600px) {
  .booking-hero {
    padding-left: 20px;
    padding-right: 20px;
  }

  .booking-row {
    grid-template-columns: 1fr;
  }

  .booking-form-wrap {
    padding: 0 20px 20px;
  }

  .booking-footer {
    padding: 16px 20px 8px;
  }

  .booking-nav--split {
    flex-direction: column;
  }

  .booking-btn-back {
    min-width: unset;
    width: 100%;
  }
}
