/* ========== BOOKING CTA SECTION ========== */
.booking-cta {
  position: relative;
  overflow: hidden;
  padding: 10vh 1.5vw;
  margin-top: 5vh;
  background: transparent;
  /* Allow hero-bg-overlay to show */
}

/* Background Image Full Width */
.booking-cta .hero-bg-overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.booking-cta .hero-bg-overlay img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}

/* Left → Right Gradient Overlay */
.booking-cta .hero-bg-overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
      rgba(10, 5, 0, 0.95) 0%,
      rgba(10, 5, 0, 0.85) 25%,
      rgba(10, 5, 0, 0.5) 55%,
      rgba(10, 5, 0, 0) 100%);
  z-index: 1;
}

/* Content */
.booking-cta-content {
  position: relative;
  z-index: 2;
  width: 712px;
  /* Precision from user: 711.8px */
  min-height: 393px;
  /* Precision from user: 393.0px */
  max-width: 90vw;
  margin-left: 2.5vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
}

.booking-eyebrow {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 1.5vh;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Typography */
.booking-cta-content h2 {
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 2.5vh;
  letter-spacing: -0.01em;
}

.booking-cta-content .lead {
  font-size: clamp(0.95rem, 2vmin, 1.1rem);
  max-width: 50vw;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 4vh;
}

/* Button */
.booking-cta .btn-primary {
  background: #c9a55c;
  color: #fff;
  padding: 18px 48px;
  font-size: 1.15rem;
  font-weight: 700;
  border-radius: 150px;
  /* Precision from user: 150px */
  border: none;
  display: inline-block;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.booking-cta .btn-primary:hover {
  background: #b9934a;
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

/* Desktop spacing adjustment */
@media (min-width: 992px) {
  .booking-cta {
    padding: 7rem 0;
  }

  .booking-cta-content {
    padding-left: 6rem;
  }
}

@media (min-width: 1200px) {
  .booking-cta-content {
    padding-left: 8rem;
  }
}

/* CTA buttons container */
.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

/* Buttons with circle icon on the right */
.cta-buttons .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 8px 20px;
  font-size: 1rem;
  border-radius: 40px;
  transition: all 0.3s ease;
}

/* Circle icon inside button */
.cta-buttons .btn .btn-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e0b973 0%, #ae8741 100%);
  color: #0a0500;
  margin-left: 10px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

/* Hover effect for circle */
.cta-buttons .btn:hover .btn-circle {
  transform: rotate(45deg);
}