/* Index — "Ready to book?" promo card */

.book-cta-card {
  position: relative;
  height: 100%;
  min-height: 420px;
  padding: 2rem 1.75rem 1.75rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  color: #fff;
  background: #0a0a0a;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 50px rgba(10, 10, 10, 0.18);
  transition:
    transform 0.45s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.45s ease,
    border-color 0.45s ease;
}

.book-cta-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.book-cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transform: scale(1.02);
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.book-cta-card:hover .book-cta-bg img {
  transform: scale(1.1);
}

.book-cta-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to top, rgba(8, 8, 8, 0.97) 0%, rgba(8, 8, 8, 0.82) 42%, rgba(8, 8, 8, 0.45) 100%),
    linear-gradient(135deg, rgba(10, 10, 10, 0.75) 0%, transparent 55%),
    radial-gradient(ellipse 70% 50% at 100% 0%, rgba(184, 146, 78, 0.18) 0%, transparent 60%);
  pointer-events: none;
  transition: opacity 0.45s ease;
}

.book-cta-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-ochre, #B8924E), rgba(184, 146, 78, 0.15));
  z-index: 3;
}

.book-cta-card:hover {
  transform: translateY(-6px);
  border-color: rgba(184, 146, 78, 0.35);
  box-shadow: 0 32px 60px rgba(10, 10, 10, 0.35);
}

.book-cta-index {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  font-family: var(--heading-font, 'Syne', sans-serif);
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1;
  color: rgba(255, 255, 255, 0.12);
  pointer-events: none;
  z-index: 2;
}

.book-cta-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.book-cta-card .section-label--gold {
  color: var(--accent-ochre, #B8924E);
}

.book-cta-card .section-label--gold::before {
  background: var(--accent-ochre, #B8924E);
}

.book-cta-title {
  font-family: var(--heading-font, 'Syne', sans-serif);
  font-size: clamp(2rem, 4.5vw, 2.85rem);
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: -1px;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 1rem;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.45);
}

.book-cta-text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.78);
  margin: 0 0 1.5rem;
  max-width: 28ch;
}

.book-cta-actions {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-top: auto;
}

.book-cta-card .btn-action-gold {
  padding: 15px 24px;
  font-size: 0.72rem;
  letter-spacing: 1.6px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
}

.book-cta-card .btn-action-light {
  padding: 14px 24px;
  font-size: 0.68rem;
  letter-spacing: 1.4px;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.28);
  color: #fff;
  backdrop-filter: blur(6px);
}

.book-cta-card .btn-action-light:hover {
  background: #fff;
  color: var(--text-dark, #0A0A0A);
  border-color: #fff;
}

.book-cta-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.15rem;
  padding-top: 1.15rem;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  font-family: var(--heading-font, 'Syne', sans-serif);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  color: #fff;
  text-decoration: none;
  transition: color 0.25s ease;
}

.book-cta-phone i {
  color: var(--accent-ochre, #B8924E);
  font-size: 0.85rem;
}

.book-cta-phone:hover {
  color: var(--accent-ochre, #B8924E);
}

@media (max-width: 767.98px) {
  .book-cta-card {
    min-height: auto;
    padding: 1.5rem 1.25rem 1.25rem;
  }

  .book-cta-index {
    font-size: 2.5rem;
  }

  .book-cta-title {
    font-size: clamp(1.75rem, 8vw, 2.25rem);
  }

  .book-cta-bg img {
    object-position: center 25%;
  }
}
