.booking-section {
  background:
    radial-gradient(circle at top left, rgba(34, 197, 94, 0.06), transparent 18%),
    radial-gradient(circle at bottom right, rgba(59, 130, 246, 0.05), transparent 20%),
    #f8fafc;
  overflow: hidden;
}

.booking-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 760px;
  border-radius: 32px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 30px 70px rgba(15, 23, 42, 0.12);
  border: 1px solid rgba(15, 23, 42, 0.06);
}

/* LEFT SIDE */
.booking-info {
  position: relative;
  background:
    linear-gradient(rgba(2, 6, 23, 0.76), rgba(2, 6, 23, 0.82)),
    url("../images/booking-bg.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  padding: 70px 60px;
}

.booking-info-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top center, rgba(34, 197, 94, 0.15), transparent 28%);
  pointer-events: none;
}

.booking-info-content {
  position: relative;
  z-index: 2;
  max-width: 560px;
}

.section-tag-dark {
  background: rgba(255, 255, 255, 0.1);
  color: #dcfce7;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.booking-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.15;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 22px;
  letter-spacing: -1.2px;
}

.booking-title span {
  color: #4ade80;
}

.booking-text {
  font-size: 1.02rem;
  line-height: 1.9;
  color: #e2e8f0;
  margin-bottom: 30px;
}

.booking-points {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 34px;
}

.booking-point {
  display: flex;
  align-items: center;
  gap: 12px;
}

.booking-point-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(74, 222, 128, 0.18);
  color: #86efac;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  flex-shrink: 0;
}

.booking-point p {
  color: #f1f5f9;
  font-size: 0.98rem;
}

/* RIGHT SIDE */
.booking-form-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 42px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.92), rgba(248,250,252,0.98));
}

.booking-form-card {
  width: 100%;
  max-width: 640px;
  padding: 20px 8px;
}

.booking-form-title {
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  line-height: 1.15;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 28px;
  letter-spacing: -1px;
}

.booking-form-title span {
  color: var(--primary-color);
}

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-group label {
  font-size: 0.98rem;
  font-weight: 700;
  color: #0f172a;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: #ffffff;
  color: #0f172a;
  border-radius: 16px;
  padding: 16px 18px;
  font-size: 0.98rem;
  outline: none;
  transition: var(--transition);
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.03);
}

.form-group textarea {
  resize: vertical;
  min-height: 140px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #94a3b8;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(34, 197, 94, 0.5);
  box-shadow:
    0 0 0 4px rgba(34, 197, 94, 0.12),
    0 10px 22px rgba(34, 197, 94, 0.08);
}

.booking-submit-btn {
  width: 100%;
  padding: 16px 24px;
  margin-top: 8px;
  font-size: 1rem;
  border-radius: 16px;
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 0.85s ease, transform 0.85s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Large screens */
@media (max-width: 1200px) {
  .booking-wrapper {
    min-height: 700px;
  }

  .booking-info {
    padding: 60px 44px;
  }

  .booking-form-wrap {
    padding: 34px;
  }
}

/* Tablet */
@media (max-width: 992px) {
  .booking-wrapper {
    grid-template-columns: 1fr;
  }

  .booking-info,
  .booking-form-wrap {
    padding: 46px 30px;
  }

  .booking-info {
    min-height: 420px;
  }

  .booking-form-card {
    max-width: 100%;
    padding: 0;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .booking-wrapper {
    border-radius: 24px;
  }

  .booking-info,
  .booking-form-wrap {
    padding: 34px 20px;
  }

  .booking-info {
    min-height: auto;
  }

  .booking-title,
  .booking-form-title {
    font-size: 2rem;
  }

  .booking-text {
    font-size: 0.96rem;
    line-height: 1.8;
  }

  .booking-point p {
    font-size: 0.94rem;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 14px 16px;
    border-radius: 14px;
    font-size: 0.95rem;
  }
}

/* Small mobile */
@media (max-width: 576px) {
  .booking-title,
  .booking-form-title {
    font-size: 1.8rem;
  }

  .booking-submit-btn,
  .booking-info .btn {
    width: 100%;
  }
}

/* Extra small */
@media (max-width: 400px) {
  .booking-info,
  .booking-form-wrap {
    padding: 28px 16px;
  }

  .booking-title,
  .booking-form-title {
    font-size: 1.65rem;
  }

  .form-group label {
    font-size: 0.92rem;
  }
}