/* ===== Space Booking Page ===== */

.book-now {
  max-width: 720px;
  margin: 6rem auto;
  padding: 2.5rem 2rem;
  color: #ffffff;
}

/* Glass-like sci-fi panel */
.space-panel {
  background: rgba(10, 14, 30, 0.75);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 18px;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.08),
    0 20px 40px rgba(0, 0, 0, 0.6);
}

/* Headings */
.book-now h1 {
  font-size: clamp(2rem, 5vw, 2.6rem);
  text-align: center;
  margin-bottom: 0.5rem;
  letter-spacing: 0.04em;
}

.book-now .subtitle {
  text-align: center;
  color: #cfd6ff;
  font-size: 1.05rem;
  margin-bottom: 2.2rem;
}

/* ===== Form Layout ===== */

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

.booking-form label {
  display: flex;
  flex-direction: column;
  font-size: 0.9rem;
  color: #dfe4ff;
}

/* Inputs */
.booking-form input,
.booking-form select,
.booking-form textarea {
  margin-top: 0.4rem;
  padding: 0.75rem 0.85rem;
  font-size: 1rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(0, 0, 0, 0.55);
  color: #ffffff;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

/* Placeholder */
.booking-form input::placeholder,
.booking-form textarea::placeholder {
  color: #9aa3ff;
}

/* Focus glow */
.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  border-color: #3d0026;
  box-shadow: 0 0 0 2px rgba(108, 243, 255, 0.25);
}

/* Textarea */
.booking-form textarea {
  resize: vertical;
  min-height: 90px;
}

/* ===== CTA Button ===== */

.cta-button {
  margin-top: 1.5rem;
  padding: 0.9rem;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  border-radius: 14px;
  border: none;
  cursor: pointer;
  color: #001018;
  background: linear-gradient(
    135deg,
    #af05e2,
    #4c0063
  );
  box-shadow:
    0 0 20px rgba(116, 0, 110, 0.63),
    0 8px 20px rgba(0, 0, 0, 0.5);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.cta-button:hover {
  transform: translateY(-1px);
  box-shadow:
    0 0 30px rgba(255, 108, 231, 0.7),
    0 10px 25px rgba(0, 0, 0, 0.6);
}

.cta-button:active {
  transform: translateY(0);
}

/* Honeypot */
.hp-field { display:none !important; }


/* ===== Mobile Tweaks ===== */

@media (max-width: 600px) {
  .book-now {
    margin: 3rem 1rem;
    padding: 2rem 1.5rem;
  }
}
