/* ===============================
   HERO GRADIENT – OPTION A
   =============================== */
   
   /* HARD LOCK banner height to prevent layout shift */
.booking-banner {
  min-height: 650px;
}
@media (max-width: 768px) {
  .booking-banner {
    min-height: 520px;
  }
}


/* Disable hero image completely */
.booking-banner-img {
  display: none !important;
}

/* Corporate premium gradient */
.booking-banner {
  background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
  color: #ffffff;
}

/* Lighter overlay (no image now) */
.banner-overlay {
  background: rgba(0, 0, 0, 0.25);
}

/* Text contrast */
.banner-text h1 {
  color: #ffcb05;
}

.banner-text h3,
.banner-text p {
  color: #f1f1f1;
}

/* Form styling */
.banner-form {
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .booking-banner {
    padding: 40px 0;
  }
  .banner-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
