/* =========================
   General Reset
========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body */
body {
  font-family: 'Arial', sans-serif;
  background-color: #f7f7f7;
  color: #333;
}

/* =========================
   HERO CAROUSEL
========================= */
.carousel-section {
  position: relative;
  width: 100%;
}

.carousel-item img {
  height: 80vh;
  object-fit: cover;
}

/* Carousel captions overlay - extended and stylish */
.carousel-caption.left-overlay {
  position: absolute;
  top: 20%;
  left: 5%;
  max-width: 550px;
  width: 45%;
  background: rgba(0, 0, 0, 0.55);
  padding: 25px 30px;
  border-radius: 12px;
  text-align: left;
  animation: slideInLeft 1s ease forwards;
  z-index: 5;
}

.carousel-caption.left-overlay h2 {
  color: #ffba08;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 12px;
}

.carousel-caption.left-overlay p {
  color: #fff;
  font-size: 18px;
  line-height: 1.5;
}

@keyframes slideInLeft {
  0% { opacity: 0; transform: translateX(-60px); }
  100% { opacity: 1; transform: translateX(0); }
}

/* Smooth transition for carousel slides */
.carousel-item {
  transition: transform 1.5s ease, opacity 1.5s ease !important;
}

/* Responsive Carousel */
@media (max-width: 992px) {
  .carousel-caption.left-overlay {
    top: 18%;
    max-width: 450px;
    width: 50%;
    padding: 20px 25px;
  }
  .carousel-caption.left-overlay h2 { font-size: 28px; }
  .carousel-caption.left-overlay p { font-size: 16px; }
}

@media (max-width: 768px) {
  .carousel-caption.left-overlay {
    top: 15%;
    max-width: 350px;
    width: 65%;
    padding: 18px 22px;
  }
  .carousel-caption.left-overlay h2 { font-size: 24px; }
  .carousel-caption.left-overlay p { font-size: 15px; }
}

@media (max-width: 576px) {
  .carousel-caption.left-overlay {
    top: 10%;
    max-width: 90%;
    width: 90%;
    padding: 15px 18px;
  }
  .carousel-caption.left-overlay h2 { font-size: 20px; }
  .carousel-caption.left-overlay p { font-size: 14px; }
}

/* =========================
   BOOKING SECTION
========================= */
.booking-section {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: -70px; /* overlap hero */
  padding: 0 20px 28px;
  position: relative;
  z-index: 5;
}

/* Booking Card */
.booking-card {
  width: 100%;
  max-width: 1100px;
  background: linear-gradient(90deg, #f59e0b, #a855f7);
  padding: 18px;
  border-radius: 16px;
  box-shadow: 0 18px 50px rgba(11,5,20,0.18);
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
  align-items: end;
  color: #fff;
}

/* Each field */
.booking-card .field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

/* Destination and submit button sizing */
.booking-card .field:nth-child(1) {
  grid-column: span 2;
}
.booking-card .field-submit {
  grid-column: span 1;
  justify-self: stretch;
}

/* Inputs and Selects */
.booking-card input,
.booking-card select {
  padding: 10px 12px;
  border-radius: 8px;
  border: none;
  outline: none;
  font-size: 14px;
}

/* Submit Button */
.btn-search {
  width: 100%;
  padding: 12px 14px;
  background: #1b003b;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(0,0,0,0.18);
  transition: transform 0.14s ease, box-shadow 0.14s ease;
}

.btn-search:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(0,0,0,0.22);
}

/* Labels */
.booking-card label {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.95);
}

/* =========================
   WhatsApp Button
========================= */
.whatsapp-contact {
  text-align: center;
  margin-top: 30px;
}

.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  background-color: #25d366;
  color: #fff;
  padding: 12px 24px;
  border-radius: 30px;
  font-size: 16px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.whatsapp-btn i {
  margin-right: 10px;
}

.whatsapp-btn:hover {
  background-color: #128c7e;
}

/* =========================
   Responsive Layouts
========================= */
@media (max-width: 980px) {
  .booking-card {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    padding: 14px;
  }

  .booking-card .field:nth-child(1) {
    grid-column: span 3;
  }

  .booking-card .field-submit {
    grid-column: span 3;
  }
}

@media (max-width: 600px) {
  .booking-card {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 12px;
    border-radius: 12px;
    margin-top: -50px;
  }

  .booking-section {
    margin-top: -50px;
    padding: 0 12px 18px;
  }

  .booking-card .field {
    align-items: stretch;
  }

  .whatsapp-btn {
    padding: 10px 20px;
    font-size: 14px;
  }
}
