/* ================= BOOKING FORM (PREMIUM) ================= */
.booking-form-section {
  padding: 100px 6%;
  background: linear-gradient(180deg, #f7f8f6, #ffffff);
}

.booking-card {
  max-width: 680px; /* SMALLER */
  margin: auto;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(8px);
  border-radius: 28px;
  padding: 48px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.08);
}

/* HEADER */
.booking-header {
  text-align: center;
  margin-bottom: 36px;
}

.badge {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  background: #182412;
  color: #ffffff;
  font-size: 0.75rem;
  margin-bottom: 14px;
}

.booking-header h2 {
  font-size: clamp(2rem, 3.5vw, 2.6rem);
  margin-bottom: 6px;
}

.booking-header p {
  color: #6b7280;
  font-size: 0.95rem;
}

/* FORM */
.booking-form {
  width: 100%;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-bottom: 14px;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  padding: 13px 15px;
  border-radius: 14px;
  border: 1px solid #d1d5db;
  font-size: 0.9rem;
  background: #ffffff;
}

.booking-form textarea {
  margin-top: 6px;
  resize: none;
}

/* CTA */
.submit-btn {
  margin-top: 24px;
  width: 100%;
  padding: 14px;
  background: #182412;
  color: #ffffff;
  border: none;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
}

.form-note {
  text-align: center;
  font-size: 0.75rem;
  color: #6b7280;
  margin-top: 12px;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 650px) {
  .booking-card {
    padding: 36px 24px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}
/* ===== SUCCESS POPUP ===== */
.success-popup {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 9999;
}

.success-popup.show {
  opacity: 1;
  pointer-events: auto;
}

.popup-box {
  background: #ffffff;
  padding: 40px 30px;
  border-radius: 22px;
  text-align: center;
  max-width: 320px;
  width: 90%;
  box-shadow: 0 30px 80px rgba(0,0,0,0.15);
}

.popup-icon {
  width: 60px;
  height: 60px;
  background: #22c55e;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin: 0 auto 16px;
}

.popup-box h3 {
  margin-bottom: 8px;
}

.popup-box p {
  font-size: 0.9rem;
  color: #6b7280;
  margin-bottom: 20px;
}

.popup-box button {
  padding: 12px 28px;
  border-radius: 999px;
  border: none;
  background: #182412;
  color: #ffffff;
  font-weight: 600;
  cursor: pointer;
}
