/* ===== BOOKING PAGE ===== */

/* Hero */
.booking-hero {
  position: relative;
  min-height: 45vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.booking-hero-bg {
  position: absolute;
  inset: 0;
  background: url('../images/hero-bg.jpg') center 30%/cover no-repeat;
}
.booking-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(10,10,10,0.8) 0%, rgba(10,10,10,0.6) 40%, var(--black) 100%),
    radial-gradient(ellipse at center, rgba(255,20,147,0.06) 0%, transparent 60%);
}

.booking-hero-content {
  position: relative;
  z-index: 2;
  padding: 8rem 2rem 3rem;
}

.booking-hero-content h1 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 300;
  line-height: 1.15;
  margin: 1.2rem 0 1.5rem;
}

.booking-hero-sub {
  font-size: 0.95rem;
  color: var(--grey);
  line-height: 1.7;
  max-width: 500px;
  margin: 0 auto;
}

/* Booking Section */
.booking-section {
  padding: 4rem 3rem 6rem;
  position: relative;
}
.booking-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 0%, rgba(255,20,147,0.04) 0%, transparent 50%);
  pointer-events: none;
}

.booking-container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 3rem;
  align-items: start;
  position: relative;
}

/* Form */
.booking-form {
  position: relative;
}

.form-group-header {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  margin-bottom: 2rem;
}

.form-group-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 300;
  color: var(--pink);
  line-height: 1;
  opacity: 0.6;
}

.form-group-header h3 {
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 0.3rem;
}

.form-group-header p {
  font-size: 0.8rem;
  color: var(--grey);
}

.form-divider {
  width: 60px;
  height: 1px;
  background: var(--pink);
  opacity: 0.3;
  margin: 2.5rem 0;
}

/* Form Fields */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

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

.form-field label {
  display: block;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 0.6rem;
}

.form-field .required {
  color: var(--pink);
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 0.9rem 1.2rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  transition: all 0.3s ease;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0;
}

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

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--pink);
  background: rgba(255,20,147,0.04);
  box-shadow: 0 0 0 1px rgba(255,20,147,0.1);
}

.form-field input:hover,
.form-field select:hover,
.form-field textarea:hover {
  border-color: rgba(255,255,255,0.2);
}

.form-field input.field-error,
.form-field select.field-error,
.form-field textarea.field-error {
  border-color: #ff4444;
  background: rgba(255,68,68,0.04);
}

/* Select wrapper with custom arrow */
.select-wrap {
  position: relative;
}

.select-wrap::after {
  content: '▾';
  position: absolute;
  right: 1.2rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--pink);
  font-size: 0.8rem;
  pointer-events: none;
}

.select-wrap select {
  padding-right: 2.5rem;
  cursor: pointer;
}

/* Select option styling */
.form-field select option {
  background: #1a1a1a;
  color: var(--white);
  padding: 0.5rem;
}

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

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

/* Textarea */
.form-field textarea {
  resize: vertical;
  min-height: 100px;
  line-height: 1.6;
}

/* Number input — hide spinners */
.form-field input[type="number"]::-webkit-inner-spin-button,
.form-field input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.form-field input[type="number"] {
  -moz-appearance: textfield;
}

/* Submit */
.form-submit {
  margin-top: 2.5rem;
  text-align: center;
}

.btn-submit {
  min-width: 280px;
  position: relative;
}

.btn-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.btn-loading {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.spinner {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: var(--white);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}

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

.form-note {
  font-size: 0.75rem;
  color: var(--grey-dark);
  margin-top: 1rem;
}

/* Confirmation */
.booking-confirmation {
  text-align: center;
  padding: 3rem 2rem;
}

.confirmation-icon {
  width: 80px;
  height: 80px;
  border: 2px solid var(--pink);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: var(--pink);
  margin: 0 auto 2rem;
  animation: confirmPop 0.5s ease-out;
}

@keyframes confirmPop {
  0% { transform: scale(0); opacity: 0; }
  60% { transform: scale(1.15); }
  100% { transform: scale(1); opacity: 1; }
}

.booking-confirmation h2 {
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: 1rem;
}

.booking-confirmation > p {
  font-size: 0.9rem;
  color: var(--grey);
  line-height: 1.7;
  max-width: 500px;
  margin: 0 auto 2.5rem;
}

.confirmation-details {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--glass-border);
  max-width: 450px;
  margin: 0 auto 2.5rem;
  padding: 1.5rem;
}

.detail-row {
  display: flex;
  justify-content: space-between;
  padding: 0.7rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  font-size: 0.8rem;
}

.detail-row:last-child {
  border-bottom: none;
}

.detail-row span:first-child {
  color: var(--grey);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.7rem;
}

.detail-row span:last-child {
  color: var(--white);
  font-weight: 500;
}

.confirmation-contact {
  margin-top: 2rem;
}

.confirmation-contact p {
  font-size: 0.8rem;
  color: var(--grey);
  margin-bottom: 1rem;
}

/* Sidebar */
.booking-sidebar {
  position: sticky;
  top: 100px;
}

.sidebar-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--glass-border);
  padding: 2rem;
  margin-bottom: 1.5rem;
}

.sidebar-card h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 1.5rem;
}

/* Steps */
.sidebar-step {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.sidebar-step:last-of-type {
  margin-bottom: 0;
}

.step-number {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(255,20,147,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: var(--pink);
  font-weight: 500;
}

.sidebar-step strong {
  font-size: 0.8rem;
  font-weight: 500;
  display: block;
  margin-bottom: 0.2rem;
}

.sidebar-step p {
  font-size: 0.75rem;
  color: var(--grey);
  line-height: 1.5;
}

/* Packages */
.package-item {
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.package-item:last-of-type {
  border-bottom: none;
  padding-bottom: 0;
}

.package-name {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 0.3rem;
}

.package-desc {
  display: block;
  font-size: 0.72rem;
  color: var(--grey);
  line-height: 1.5;
}

/* Sidebar contact */
.sidebar-contact {
  text-align: center;
}

.sidebar-contact p {
  font-size: 0.8rem;
  color: var(--grey);
  line-height: 1.6;
  margin-bottom: 1.2rem;
}

.sidebar-phone {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  color: var(--pink);
  letter-spacing: 0.05em;
}

.sidebar-phone:hover {
  color: #ff3da6;
}

.sidebar-hours {
  display: block;
  font-size: 0.65rem;
  color: var(--grey-dark);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-top: 0.2rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .booking-container {
    grid-template-columns: 1fr;
  }

  .booking-sidebar {
    position: static;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1rem;
  }

  .sidebar-card {
    margin-bottom: 0;
  }
}

@media (max-width: 768px) {
  .booking-section {
    padding: 2rem 1.5rem 4rem;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .booking-sidebar {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .booking-hero-content {
    padding: 7rem 1.5rem 2rem;
  }

  .booking-hero-content h1 {
    font-size: 2rem;
  }

  .btn-submit {
    width: 100%;
  }
}
