body {
  background: linear-gradient(180deg, #f7fbff 0%, #eef9ff 100%);
}

.booking-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 20px 60px;
}

.booking-shell {
  width: min(1100px, 100%);
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 30px;
  background: rgba(255,255,255,0.9);
  border: 1px solid rgba(11,10,92,0.06);
  border-radius: 32px;
  box-shadow: 0 20px 60px rgba(11,10,92,0.12);
  overflow: hidden;
}

.booking-hero {
  background: linear-gradient(160deg, #0b0a5c 0%, #12106b 52%, #08073f 100%);
  color: white;
  padding: 42px 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 22px;
}

.booking-hero h1 {
  color: white;
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 0;
}

.booking-hero p,
.booking-hero li,
.booking-hero .mini-note {
  color: rgba(255,255,255,0.8);
}

.info-list {
  display: grid;
  gap: 14px;
  margin-top: 10px;
}

.info-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.info-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #f5b000;
  margin-top: 8px;
  flex-shrink: 0;
}

.booking-form-wrap {
  padding: 42px 28px;
}

.booking-form-wrap h2 {
  margin-bottom: 8px;
  font-size: clamp(1.7rem, 3vw, 2.3rem);
}

.booking-form-wrap p {
  color: var(--text-soft);
  margin-bottom: 24px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 18px;
}

.form-field label {
  font-weight: 600;
  color: var(--navy);
  font-size: 0.85rem;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid #dfeaf5;
  border-radius: 14px;
  background: #f8fbff;
  transition: border-color .25s ease, box-shadow .25s ease;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--cyan);
  box-shadow: 0 0 0 4px rgba(0,174,239,0.12);
}

.full-width {
  grid-column: 1 / -1;
}

.submit-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
}

.submit-row .btn {
  flex: 1;
}

.book-success {
  display: none;
  margin-top: 18px;
  padding: 14px 16px;
  border-radius: 12px;
  background: #ecfdf5;
  border: 1px solid #34d399;
  color: #065f46;
  font-weight: 600;
}

.book-success.show {
  display: block;
}

.home-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 18px;
  padding: 14px 22px;
  border-radius: 999px;
  background: linear-gradient(135deg, #0b0a5c, #12106b);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  text-decoration: none;
  transition: transform .25s ease, box-shadow .25s ease;
  box-shadow: 0 14px 26px rgba(11, 10, 92, 0.18);
}

.home-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 30px rgba(11, 10, 92, 0.22);
}

@media (max-width: 860px) {
  .booking-shell {
    grid-template-columns: 1fr;
  }

  .booking-page {
    padding-top: 100px;
  }
}

@media (max-width: 560px) {
  .booking-form-wrap,
  .booking-hero {
    padding: 24px 18px;
  }

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

  .submit-row {
    flex-direction: column;
  }

  .submit-row .btn,
  .submit-row .quick-send {
    width: 100%;
  }
}
