/* ============================================================
   HOME PAGE
   ============================================================ */

/* ── Hero Home ── */
.hero-home {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--dark-2);
  position: relative;
  overflow: hidden;
  /* Pull up behind the floating nav pill */
  margin-top: calc(-1 * (var(--nav-height) + 20px));
}
.hero-home__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.8s ease;
}
.hero-home__bg.active {
  opacity: .35;
}
.hero-home__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  /* Extra top padding so content clears the nav pill */
  padding: calc(var(--nav-height) + 3rem) 0 4rem;
}
.hero-home__content {
  text-align: center;
  color: var(--white);
  margin-bottom: 2.5rem;
}
.hero-home__label {
  display: inline-block;
  background: rgba(201,162,39,.15);
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: .3rem 1rem;
  border-radius: 100px;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.hero-home__title {
  font-size: clamp(2rem, 5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1rem;
}
.hero-home__title span { color: var(--gold); }
.hero-home__subtitle {
  font-size: 1rem;
  color: rgba(255,255,255,.75);
  max-width: 620px;
  margin: 0 auto 1.5rem;
}

/* Deposit badge — doubles as a Book Now CTA */
.deposit-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--gold);
  color: var(--dark);
  font-weight: 700;
  font-size: .85rem;
  padding: .4rem 1.2rem;
  border-radius: 100px;
  margin-bottom: 2rem;
  transition: var(--transition);
}
.deposit-badge:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201,162,39,.35);
}

/* ── Arrive in Style Banner ── */
.arrive-section {
  background: var(--dark);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.arrive-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 50%, rgba(201,162,39,.08) 0%, transparent 60%);
}
.arrive-section__label {
  font-size: .78rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: .5rem;
}
.arrive-section__title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  max-width: 520px;
  margin-bottom: 2.5rem;
}
.arrive-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  max-width: 520px;
  margin-bottom: 2.5rem;
}
.arrive-feature {
  display: flex;
  gap: .75rem;
}
.arrive-feature__icon {
  color: var(--gold);
  margin-top: .15rem;
  flex-shrink: 0;
}
.arrive-feature__title {
  font-weight: 600;
  font-size: .92rem;
  color: var(--white);
  margin-bottom: .25rem;
}
.arrive-feature__desc { font-size: .82rem; color: rgba(255,255,255,.55); line-height: 1.5; }

/* ── What We Offer ── */
.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

/* ── About Home Section ── */
.about-home {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-home__img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-home__img img {
  width: 100%;
  height: 540px;
  object-fit: cover;
}
.about-home__text p { font-size: .95rem; color: var(--text-light); line-height: 1.8; margin-bottom: 1rem; }

/* Review quote inside about */
.about-review {
  margin-top: 2rem;
  padding: 1.25rem;
  background: var(--off-white);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.about-review__text {
  font-style: italic;
  color: var(--text-light);
  font-size: .9rem;
  line-height: 1.6;
  margin-bottom: .5rem;
}
.about-review__author { font-weight: 600; font-size: .85rem; }

/* ── Customers Feedback / Slider ── */
.reviews-slider {
  position: relative;
  overflow: hidden;
}
.reviews-track {
  display: flex;
  gap: 1.5rem;
  transition: transform .4s ease;
}
.reviews-track .review-card { min-width: calc(50% - .75rem); }
.slider-controls {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}
.slider-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  color: var(--gold);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.slider-btn:hover { background: var(--gold); color: var(--dark); }

/* ── Stats Section (home) ── */
.stats-section {
  background: var(--dark-2);
  padding: 60px 0;
}

/* ── Hero Search Box & Form ── */
.hero-search-box {
  background: var(--white);
  border-radius: 16px;
  padding: 2rem;
  max-width: 900px;
  margin: 0 auto;
  box-shadow: 0 20px 60px rgba(0,0,0,.3);
}
.hero-search-form {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto;
  gap: 1rem;
  align-items: end;
}

/* ── Arrive In Style Grid ── */
.arrive-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

@media (max-width: 1024px) {
  .arrive-features { grid-template-columns: 1fr; }
  .arrive-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-home { grid-template-columns: 1fr; gap: 2rem; }
  .offer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .offer-grid { grid-template-columns: 1fr; }
  .reviews-track .review-card { min-width: 100%; }
  .hero-search-form {
    grid-template-columns: 1fr;
  }
  .hero-search-form .btn {
    width: 100%;
    justify-content: center;
  }
  .hero-search-box { padding: 1.5rem; }
  .about-home__img img { height: 260px; }
}

@media (max-width: 480px) {
  .hero-search-box { padding: 1.25rem 1rem; }
}

/* ============================================================
   HOME — EMBEDDED BOOKING FLOW
   ============================================================ */
.home-booking {
  background: var(--gray-50, #f6f7f9);
  padding: 80px 0;
}
.home-booking__head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 2.5rem;
}
.home-booking__label {
  display: block;
  font-size: .78rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: .5rem;
}
.home-booking__title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: .75rem;
}
.home-booking__subtitle {
  color: var(--gray-500);
  font-size: 1rem;
  line-height: 1.6;
}
/* Lift the booking flow onto a single cohesive card */
.home-booking .booking-steps {
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.home-booking .booking-wrapper {
  background: var(--white);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow, 0 20px 60px rgba(0,0,0,.08));
}
@media (max-width: 600px) {
  .home-booking { padding: 56px 0; }
  .home-booking .booking-wrapper { padding: 1.5rem 1rem; }
}
