/* ══════════════════════════════════════════════════
   PURA VIDA CASAS — style.css
   ══════════════════════════════════════════════════ */

:root {
  --teal: #4a9b8c;
  --teal-dark: #357a6d;
  --teal-light: #6bbdae;
  --white: #ffffff;
  --off-white: #f8f5f0;
  --cream: #f2ede6;
  --cream-dk: #e8e0d4;
  --brown: #3d2b1a;
  --brown-mid: #6b4c30;
  --gold: #c9a058;
  --text-dark: #2c2016;
  --text-mid: #5a4535;
  --text-light: rgba(255, 255, 255, 0.85);
  --nav-h: 70px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Raleway', sans-serif;
  background: #fff;
  color: var(--text-dark);
  overflow-x: hidden;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

a {
  text-decoration: none;
}

h2,
h3,
h4 {
  font-family: 'Cormorant Garamond', serif;
}

/* ── utility ── */
.section-eyebrow {
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--teal);
  margin-bottom: 8px;
}

.section-eyebrow-light {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
}

.section-title-serif {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--brown);
  line-height: 1.15;
}

.section-sub {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin-top: 12px;
}

/* ══════════════════════════════
   NAVBAR
══════════════════════════════ */
/* ── NAVBAR ── */
#mainNav {
  height: var(--nav-h);
  background: transparent;
  backdrop-filter: blur(14px);
  transition: background 0.4s ease, box-shadow 0.4s ease;
  z-index: 99999999999;
  padding: 0;
}

#mainNav.scrolled {
  background: rgba(10, 26, 22, 0.97);
  backdrop-filter: blur(14px);
  box-shadow: 0 2px 28px rgba(0, 0, 0, 0.35);
}

.nav-container {
  display: flex;
  align-items: center;
  height: var(--nav-h);
  padding: 0 0px;
  position: relative;
  /* Added for absolute logo centering */
}

/* Force all links centred in one row */
#navAllLinks .navbar-nav {
  gap: 0;
  /* justify-content: end !important; */
  position: relative;
}

/* ── Nav Links ── */
.pv-link {
  color: rgba(255, 255, 255, 0.9) !important;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 12px !important;
  transition: color 0.2s;
  white-space: nowrap;
}

.pv-link:hover {
  color: #ffffff !important;
}

/* Dropdown Hover on Desktop */
@media (min-width: 992px) {
  .nav-item.dropdown:hover>.dropdown-menu {
    display: block;
    margin-top: 0;
  }

  .nav-logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 120px;
  }
}

.dropdown-menu-dark {
  background-color: rgba(10, 26, 22, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 10px 0;
}

.dropdown-item {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 8px 20px;
  transition: all 0.2s;
}

.dropdown-item:hover {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
}

/* ── Nested Dropdowns ── */
.dropdown-submenu {
  position: relative;
}

.dropdown-submenu .dropdown-menu {
  top: 0;
  left: 100%;
  margin-top: -1px;
  display: none;
}

@media (min-width: 992px) {
  .dropdown-submenu:hover>.dropdown-menu {
    display: block;
  }
}

@media (max-width: 991px) {
  .dropdown-submenu .dropdown-menu {
    position: static;
    display: block;
    background: transparent;
    border: none;
    padding-left: 20px;
    box-shadow: none;
  }
}



.nav-logo-item.logo-visible {
  max-width: 180px;
  /* enough to fit the logo */
  opacity: 1;
  padding: 0 20px;
  display: flex;
  justify-content: center;
}

/* ── Fixed Centered Logo (New Approach) ── */
.nav-logo-fixed {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1000;
  display: flex;
  align-items: center;
  transition: opacity 0.4s ease;
}

/* Only hide logo on transparent nav (on homepage hero) if not forced visible */
#mainNav:not(.scrolled) .nav-logo-fixed:not(.always-visible) {
  opacity: 0;
  pointer-events: none;
}

/* Explicitly visible if forced or scrolled */
.nav-logo-fixed.always-visible,
#mainNav.scrolled .nav-logo-fixed {
  opacity: 1 !important;
  pointer-events: auto !important;
  visibility: visible !important;
}

.nav-logo-spacer {
  pointer-events: none;
  visibility: hidden;
}

.nav-logo-link {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  white-space: nowrap;
}

@media (min-width: 992px) {
  .nav-logo-center-item {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 150px;
    margin: 0;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: auto;
  }

  .nav-before-logo {
    margin-right: 96px;
  }

  .nav-after-logo {
    margin-left: 96px;
  }
}

/* Default: white logo (transparent/dark nav) */
.nav-logo-img {
  height: 70px;
  width: auto;
  object-fit: contain;
  display: block;
  transition: filter 0.4s ease;
  /* White version for when nav is transparent / dark */
  filter: brightness(0) invert(1);
}

/* On scroll: nav becomes dark → keep logo white (already white) */
/* If you want a coloured logo on scroll, swap filter below */
#mainNav.scrolled .nav-logo-img {
  filter: brightness(0) invert(1);
  /* stays white on dark bg */
}

/* ── Book Now button ── */
.btn-book-nav {
  border: 1.5px solid rgba(255, 255, 255, 0.78);
  color: #ffffff !important;
  background: transparent;
  border-radius: 3px;
  padding: 7px 20px !important;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: background 0.22s, border-color 0.22s;
  white-space: nowrap;
}

.btn-book-nav:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: #ffffff;
  color: #ffffff !important;
}

/* ── Mobile collapse ── */
@media (max-width: 991px) {
  #navAllLinks .navbar-nav {
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
    background: rgba(10, 26, 22, 0.98);
    text-align: center;
  }

  .nav-logo-item,
  .nav-logo-item.logo-visible,
  .nav-logo-spacer {
    display: none !important;
  }

  .nav-logo-fixed {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    margin: 0 auto;
    order: -1;
    /* First on mobile before links */
    opacity: 1 !important;
    pointer-events: auto !important;
  }

  .navbar-toggler {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
  }

  .pv-link {
    width: 100%;
    padding: 12px 0 !important;
  }
}

/* ══════════════════════════════
   HERO
══════════════════════════════ */
.hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 680px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-book-now {
  position: absolute;
  top: 95px;
  right: 40px;
  z-index: 10;
}

@media (max-width: 991px) {
  .hero-book-now {
    top: 85px;
    right: 20px;
  }
}

.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.4s ease;
}

.hero-video.loaded {
  opacity: 1;
}

.hero-video-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1518509562904-e7ef99cdcc86?w=1800&auto=format&fit=crop&q=80') center/cover no-repeat;
  z-index: -1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 20, 16, 0.38) 0%, rgba(8, 20, 16, 0.22) 50%, rgba(8, 20, 16, 0.55) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
  margin-bottom: 3rem;
  animation: fadeUp 1.1s ease both;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 500;
  margin-bottom: 18px;
  font-style: italic;
}

.hero-logo-wrap {
  margin-bottom: 29px;
}

.hero-logo-img {
  height: 225px;
  width: auto;
  object-fit: contain;
  margin: 0 auto;
  filter: brightness(0) invert(1);
}

.hero-tagline {
  font-size: 0.78rem;
  letter-spacing: 0.28em;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.hero-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-hero {
  border: 1.5px solid rgba(255, 255, 255, 0.75);
  color: var(--white);
  background: transparent;
  border-radius: 2px;
  padding: 13px 30px;
  font-family: 'Raleway', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: background 0.25s, border-color 0.25s;
  display: inline-block;
}

.btn-hero:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--white);
  color: var(--white);
}



/* ── Booking Bar ── */
/* ── Booking bar: two-row layout ── */
.booking-bar {
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  width: 100%;
  max-width: 1100px;
  border-radius: 14px 14px 14px 14px;
  box-shadow: 0 -6px 32px rgba(0, 0, 0, 0.18);
  overflow: hidden;
}

/* Top row — all fields in one line */
.bb-top-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 24px;
}

/* Each field */
.bb-field {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.bb-label {
  font-family: 'Raleway', sans-serif;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  color: #888;
  margin-bottom: 5px;
  font-weight: 700;
  text-transform: uppercase;
  white-space: nowrap;
}

.bb-input {
  background: #f5f5f5;
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 9px 12px;
  font-family: 'Raleway', sans-serif;
  font-size: 0.88rem;
  color: #333;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  width: 100%;
  cursor: pointer;
}

.bb-input:focus {
  border-color: #6fa6a2;
  background: #fff;
}

/* Check Availability button */
.btn-check-avail {
  flex-shrink: 0;
  background: #6fa6a2;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  padding: 14px 24px;
  font-family: 'Raleway', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  font-weight: 700;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: pointer;
  transition: background 0.25s;
}

.btn-check-avail:hover {
  background: #4f8f8a;
}

/* ── Bottom info row ── */
.bb-bottom-row {
  display: none;
  /* JS shows this */
  justify-content: space-between;
  align-items: center;
  padding: 8px 24px 12px;
  border-top: 1px solid #f0ece6;
  /* Animate in */
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.bb-bottom-row.bb-show {
  display: flex;
  opacity: 1;
  transform: translateY(0);
}

/* Left: "6 nights selected" in teal */
.bb-nights-label {
  font-family: 'Raleway', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  color: #6fa6a2;
}

/* Right: promo message */
.bb-promo-inline {
  font-family: 'Raleway', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  color: #555;
  text-align: right;
}

.bb-promo-inline strong {
  color: #333;
  font-weight: 700;
}


/* ── Scroll Down Bouncing Button ── */
.scroll-down-btn {
  position: absolute;
  bottom: 15px;
  /* sits above the booking bar */
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  width: 38px;
  height: 62px;
  border: 2px solid rgba(255, 255, 255, 0.55);
  border-radius: 30px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 8px;
  text-decoration: none;
  transition: border-color 0.25s;
}

.scroll-down-btn:hover {
  border-color: rgba(255, 255, 255, 0.9);
}

/* The bouncing dot inside */
.scroll-down-dot {
  width: 7px;
  height: 7px;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 50%;
  animation: scrollBounce 1.6s ease-in-out infinite;
}

@keyframes scrollBounce {
  0% {
    transform: translateY(0);
    opacity: 1;
  }

  50% {
    transform: translateY(22px);
    opacity: 0.4;
  }

  100% {
    transform: translateY(0);
    opacity: 1;
  }
}




/* WhatsApp bubble */
.wa-bubble {
  position: absolute;
  bottom: 80px;
  right: 24px;
  z-index: 10;
  width: 52px;
  height: 52px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.5rem;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.45);
  transition: transform 0.2s, box-shadow 0.2s;
}

.wa-bubble:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 22px rgba(37, 211, 102, 0.55);
  color: var(--white);
}

.wa-badge {
  position: absolute;
  top: -2px;
  right: -2px;
  width: 18px;
  height: 18px;
  background: #e53935;
  color: var(--white);
  border-radius: 50%;
  font-size: 0.62rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ══════════════════════════════
   ABOUT / ARRIVAL
══════════════════════════════ */
/* ── About Section ── */
.about-section {
  background: #f5f0e8;
  background-image: url('https://www.puravidacasas.com/uploads/2/8/7/1/28712979/editor/white-trans-logo-villas-new.png?1710873259');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 55%;
  background-blend-mode: multiply;
  padding: 80px 20px 70px;
  position: relative;
}

.about-inner {
  max-width: 860px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* "FAMILIES · WEDDINGS · RETREATS" eyebrow tag */
.about-section::before {
  content: 'FAMILIES · WEDDINGS · RETREATS';
  display: block;
  text-align: center;
  font-family: 'Raleway', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  font-weight: 600;
  color: var(--teal);
  margin-bottom: 18px;
}

/* Big elegant title */
.about-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.6rem, 6vw, 4.2rem);
  font-weight: 400;
  /* lighter weight like screenshot */
  color: #2c2016;
  margin-bottom: 28px;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

/* Body text */
.about-lead {
  font-family: 'Raleway', sans-serif;
  font-size: 0.97rem;
  color: #4a3a28;
  line-height: 1.85;
  margin-bottom: 16px;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}

/* Bold "5 SPACIOUS VILLAS" */
.about-lead strong:first-child {
  color: #2c2016;
  font-weight: 700;
}

/* Teal "Del Pacifico Estate" link-style bold */
.about-lead strong:nth-child(2) {
  color: var(--teal);
  font-weight: 600;
}

/* Italic teal tagline */
.about-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.25rem, 2.5vw, 1.65rem);
  font-style: italic;
  color: var(--teal);
  font-weight: 400;
  margin-bottom: 50px;
  line-height: 1.5;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

/* Stats row — no border, wider gap */
.stats-row {
  display: flex;
  justify-content: center;
  gap: 64px;
  flex-wrap: wrap;
  padding-top: 0;
  border-top: none;
  margin-bottom: 0;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

/* Large teal numerals in Cormorant */
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 5vw, 3.8rem);
  font-weight: 400;
  /* elegant thin weight */
  color: var(--teal);
  line-height: 1;
  letter-spacing: -0.02em;
}

/* Small uppercase label */
.stat-lbl {
  font-family: 'Raleway', sans-serif;
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  color: #7a6a55;
  font-weight: 600;
  text-transform: uppercase;
}

/* Hide the estate tag (not visible in screenshot) */
.about-estate-tag {
  display: none;
}

/* ══════════════════════════════
   VILLAS
══════════════════════════════ */
/* ══ VILLAS SECTION ══ */
.villas-section {
  background: #ffffff;
  padding: 30px 0 0;
}

/* ── Section heading ── */
.villas-heading {
  text-align: center;
  padding: 0 20px;
  margin-bottom: 56px;
}

.villas-heading .section-eyebrow {
  font-family: 'Raleway', sans-serif;
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  color: var(--teal);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 10px;
  display: block;
}

.villas-heading .section-title-serif {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 400;
  color: #2c2016;
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.villas-heading .section-sub {
  font-family: 'Raleway', sans-serif;
  font-size: 0.93rem;
  color: #7a6a55;
  line-height: 1.75;
  max-width: 560px;
  margin: 0 auto;
}

/* ── Villa panels (one visible at a time) ── */
.villa-panels-wrap {
  position: relative;
  overflow: hidden;
}

.villa-panel {
  display: none;
  grid-template-columns: 1fr 1fr;
  min-height: 620px;
}

.villa-panel.active {
  display: grid;
}

.villa-panel.active::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--teal);
  z-index: 2;
}

/* Image column */
.villa-img-col {
  position: relative;
  overflow: hidden;
  height: 620px;
  min-height: 620px;
  align-self: stretch;
}

.villa-img-col img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.6s ease;
}

.villa-img-col img::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--teal);
  z-index: 2;
}

.villa-panel:hover .villa-img-col img {
  transform: scale(1.03);
}

/* Location pill on image */
.villa-location-pill {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(255, 255, 255, 0.92);
  color: #2c2016;
  font-family: 'Raleway', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  gap: 5px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.12);
}

.villa-location-pill i {
  color: var(--teal);
  font-size: 0.75rem;
}

/* Info column */
.villa-info-col {
  padding: 52px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #ffffff;
}

/* "CASA 1 · DEL PACIFICO ESTATE" eyebrow */
.villa-eyebrow {
  font-family: 'Raleway', sans-serif;
  font-size: 0.6rem;
  letter-spacing: 0.24em;
  color: var(--teal);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 8px;
}

/* Villa name */
.villa-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 400;
  color: #1a2e2a;
  margin-bottom: 4px;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

/* Teal underline bar */
.villa-name-bar {
  width: 40px;
  height: 3px;
  background: var(--teal);
  border-radius: 2px;
  margin-bottom: 12px;
  margin-top: 4px;
}

/* Style descriptor */
.villa-style {
  font-family: 'Raleway', sans-serif;
  font-size: 0.68rem;
  color: #8a9a98;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

/* Description */
.villa-desc {
  font-family: 'Raleway', sans-serif;
  font-size: 0.91rem;
  color: #4a3a28;
  line-height: 1.78;
  margin-bottom: 22px;
}

/* Quick specs row */
.villa-quick-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid #eee;
}

.villa-quick-specs span {
  font-family: 'Raleway', sans-serif;
  font-size: 0.75rem;
  color: #4a3a28;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
}

.villa-quick-specs span i {
  color: var(--teal);
  font-size: 0.85rem;
}

/* Amenity pill tags */
.villa-amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}

.villa-amenities span {
  border: 1px solid rgba(74, 155, 140, 0.35);
  color: var(--teal-dark);
  font-family: 'Raleway', sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 30px;
  background: transparent;
  transition: background 0.2s, color 0.2s;
}

.villa-amenities span:hover {
  background: var(--teal);
  color: #fff;
  border-color: var(--teal);
}

/* CTA buttons */
.villa-cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-villa-inquire {
  background: var(--teal);
  color: #ffffff;
  border: 2px solid var(--teal);
  border-radius: 3px;
  padding: 12px 28px;
  font-family: 'Raleway', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: background 0.25s, border-color 0.25s;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
}

.btn-villa-inquire:hover {
  background: var(--teal-dark);
  border-color: var(--teal-dark);
  color: #fff;
}

.btn-villa-avail {
  background: transparent;
  color: #2c2016;
  border: 1.5px solid #c0b8a8;
  border-radius: 3px;
  padding: 12px 28px;
  font-family: 'Raleway', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: border-color 0.25s, color 0.25s;
  text-decoration: none;
  display: inline-block;
}

.btn-villa-avail:hover {
  border-color: var(--teal);
  color: var(--teal);
}

/* ══ VILLA TABS SWITCHER (bottom strip) ══ */
.villa-tabs-strip {
  display: flex;
  align-items: center;
  border-top: 1px solid #e8e0d4;
  background: #ffffff;
  overflow-x: auto;
  scrollbar-width: none;
}

.villa-tabs-strip::-webkit-scrollbar {
  display: none;
}

.villa-tab {
  flex: 1;
  min-width: 120px;
  padding: 18px 20px;
  font-family: 'Raleway', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #9a8a78;
  background: transparent;
  border: none;
  border-bottom: 3px solid transparent;
  cursor: pointer;
  transition: color 0.25s, border-color 0.25s;
  white-space: nowrap;
  text-align: center;
}

.villa-tab:hover {
  color: var(--teal);
}

.villa-tab.active {
  color: var(--bs-body-bg);
  border-bottom-color: var(--teal);
  background: var(--teal);
}

/* Tab nav arrows */
.villa-tabs-nav {
  display: flex;
  align-items: center;
  border-left: 1px solid #e8e0d4;
  flex-shrink: 0;
}

.villa-tab-arrow {
  width: 48px;
  height: 56px;
  background: transparent;
  border: none;
  color: #9a8a78;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s, background 0.2s;
}

.villa-tab-arrow:hover {
  color: var(--teal);
  background: #f5f0e8;
}

.villa-tab-arrow+.villa-tab-arrow {
  border-left: 1px solid #e8e0d4;
}

/* ================= MOBILE FIX ONLY ================= */
@media (max-width: 768px) {

  /* STACK IMAGE + CONTENT */
  .villa-panel {
    grid-template-columns: 1fr !important;
    min-height: auto;
  }

  /* IMAGE HEIGHT FIX */
  .villa-img-col {
    height: 300px;
    min-height: 300px;
  }

  .villa-img-col img {
    height: 100%;
  }

  /* CONTENT SPACING */
  .villa-info-col {
    padding: 28px 20px;
  }

  /* TITLE SIZE */
  .villa-name {
    font-size: 28px;
  }

  /* DESCRIPTION */
  .villa-desc {
    font-size: 14px;
    line-height: 1.6;
  }

  /* AMENITIES FIX (your main issue) */
  .villa-amenities {
    justify-content: center;
    gap: 10px;
  }

  .villa-amenities span {
    font-size: 12px;
    padding: 6px 12px;
  }

  /* BUTTONS FIX */
  .villa-cta-row {
    flex-direction: column;
    gap: 12px;
  }

  .btn-villa-inquire,
  .btn-villa-avail {
    width: 100%;
    text-align: center;
    padding: 14px;
  }

  /* LOCATION PILL */
  .villa-location-pill {
    font-size: 10px;
    padding: 6px 10px;
  }

  /* QUICK SPECS */
  .villa-quick-specs {
    justify-content: center;
    gap: 12px;
  }

  .villa-quick-specs span {
    font-size: 12px;
  }

}

@media (max-width: 768px) {
  .villa-info-col {
    background: #f9f9f9;
    border-radius: 12px;
  }
}

/* ══════════════════════════════
   WEDDINGS
══════════════════════════════ */
/* ══════════════════════════════
   WEDDINGS SECTION — one unified dark bg
══════════════════════════════ */
.weddings-section {
  position: relative;
  background-image: url('https://images.unsplash.com/photo-1519741497674-611481863552?w=1920&auto=format&fit=crop&q=80');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  /* subtle parallax — remove if you prefer static */
}

/* Single dark overlay covering the entire section */
.weddings-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(8, 5, 3, 0.78);
  z-index: 0;
}

/* All direct children sit above the overlay */
.weddings-section>* {
  position: relative;
  z-index: 1;
}

/* ── Part 1: split grid ── */
.weddings-split-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 0;
  min-height: 580px;
  padding: 80px 72px 72px;
}

/* Left text */
.w-text-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-right: 60px;
}

.w-eyebrow {
  font-family: 'Raleway', sans-serif;
  font-size: 0.62rem;
  letter-spacing: 0.26em;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.52);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.w-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 6vw, 5.2rem);
  font-weight: 400;
  color: #ffffff;
  line-height: 1.05;
  margin-bottom: 22px;
  letter-spacing: -0.01em;
}

.w-desc {
  font-family: 'Raleway', sans-serif;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.82;
  margin-bottom: 32px;
  max-width: 460px;
}

.btn-w-outline {
  display: inline-block;
  border: 1.5px solid rgba(255, 255, 255, 0.62);
  color: #ffffff;
  background: transparent;
  padding: 13px 28px;
  font-family: 'Raleway', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: background 0.25s, border-color 0.25s;
}

.btn-w-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #ffffff;
  color: #ffffff;
}

/* Right mosaic */
.w-mosaic-col {
  display: flex;
  flex-direction: column;
  gap: 8px;
  height: 460px;
}

.w-mosaic-top {
  flex: 1.3;
  border-radius: 10px;
  overflow: hidden;
  min-height: 0;
}

.w-mosaic-top img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s;
}

.w-mosaic-top:hover img {
  transform: scale(1.04);
}

.w-mosaic-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  flex: 1;
  min-height: 0;
}

.w-mosaic-b-img {
  border-radius: 10px;
  overflow: hidden;
}

.w-mosaic-b-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s;
}

.w-mosaic-b-img:hover img {
  transform: scale(1.05);
}

/* ══════════════════════════════
   LOVE IN PARADISE — wl-inner
══════════════════════════════ */
.wl-inner {
  text-align: center;
  padding: 0 40px 90px;
  max-width: 1200px;
  margin: 0 auto;
}

.wl-inner::before {
  content: '';
  display: block;
  width: 60px;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
  margin: 0 auto 48px;
}

.wl-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 400;
  color: #ffffff;
  margin-bottom: 14px;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.wl-desc {
  font-family: 'Raleway', sans-serif;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.75;
  max-width: 560px;
  margin: 0 auto 40px;
}

/* ── Carousel outer — contains clip + both arrows ── */
.wl-carousel-outer {
  position: relative;
  width: 100%;
  margin-bottom: 20px;
  /* padding leaves room for the arrows that sit outside the clip */
  padding: 0 56px;
  box-sizing: border-box;
}

/* ── Clip — hides overflow cards ── */
.wl-carousel-clip {
  overflow: hidden;
  border-radius: 12px;
  width: 100%;
}

/* ── Sliding track ── */
.wl-carousel-track {
  display: flex;
  gap: 18px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

/* ── Each card — 2 visible (50% minus half gap) ── */
.wl-video-card {
  flex: 0 0 calc(50% - 9px);
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* ── Thumbnail — 16:9 ratio, dark overlay, rounded ── */
.wl-video-thumb {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  cursor: pointer;
  background: #111;
}

.wl-video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s ease, filter 0.55s ease;
  filter: brightness(0.75);
}

.wl-video-thumb:hover img {
  transform: scale(1.04);
  filter: brightness(0.88);
}

/* Dark gradient overlay — heavier at edges matching screenshot */
.wl-video-thumb::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(0, 0, 0, 0.35) 0%,
      rgba(0, 0, 0, 0.05) 50%,
      rgba(0, 0, 0, 0.35) 100%);
  z-index: 1;
  border-radius: 12px;
  pointer-events: none;
  transition: background 0.3s;
}

.wl-video-thumb:hover::before {
  background: rgba(0, 0, 0, 0.1);
}

/* ── White circle play button — centred ── */
.wl-play-btn {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wl-play-circle {
  width: 70px;
  height: 70px;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal-dark, #357a6d);
  font-size: 1.5rem;
  padding-left: 5px;
  /* optical centre for play icon */
  box-shadow: 0 6px 28px rgba(0, 0, 0, 0.4);
  transition: transform 0.25s ease, background 0.25s ease;
}

.wl-video-thumb:hover .wl-play-circle {
  transform: scale(1.12);
  background: #ffffff;
}

/* ── Caption below each card ── */
.wl-video-cap {
  font-family: 'Raleway', sans-serif;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.58);
  text-align: center;
  line-height: 1.55;
  margin: 0;
}

/* ── Arrow buttons ── */
.wl-arr {
  position: absolute;
  top: 42%;
  transform: translateY(-50%);
  z-index: 5;
  width: 46px;
  height: 46px;
  background: rgba(255, 255, 255, 0.12);
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  color: #ffffff;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition: background 0.25s, border-color 0.25s, transform 0.2s;
}

.wl-arr:hover {
  background: rgba(255, 255, 255, 0.26);
  border-color: rgba(255, 255, 255, 0.85);
  transform: translateY(-50%) scale(1.08);
}

/* Position inside the outer padding */
.wl-arr-prev {
  left: 0;
}

.wl-arr-next {
  right: 0;
}

/* ── Dots ── */
.wl-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-bottom: 36px;
}

.wl-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.28);
  cursor: pointer;
  padding: 0;
  transition: background 0.3s, transform 0.3s;
}

.wl-dot.active {
  background: #ffffff;
  transform: scale(1.35);
}

.wl-dot:hover {
  background: rgba(255, 255, 255, 0.6);
}

/* ── CTA row ── */
.wl-cta-row {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-wl-solid {
  display: inline-block;
  background: var(--teal, #4a9b8c);
  color: #ffffff;
  border: 2px solid var(--teal, #4a9b8c);
  padding: 13px 28px;
  font-family: 'Raleway', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: background 0.25s, border-color 0.25s;
}

.btn-wl-solid:hover {
  background: var(--teal-dark, #357a6d);
  border-color: var(--teal-dark, #357a6d);
  color: #fff;
}

.btn-wl-outline {
  display: inline-block;
  background: transparent;
  color: #ffffff;
  border: 1.5px solid rgba(255, 255, 255, 0.52);
  padding: 13px 28px;
  font-family: 'Raleway', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: background 0.25s, border-color 0.25s;
}

.btn-wl-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.85);
  color: #fff;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .wl-inner {
    padding: 0 20px 60px;
  }

  .wl-carousel-outer {
    padding: 0 44px;
  }

  .wl-video-card {
    flex: 0 0 calc(90% - 9px);
  }

  .wl-arr {
    width: 38px;
    height: 38px;
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .wl-video-card {
    flex: 0 0 calc(100% - 9px);
  }

  .wl-carousel-outer {
    padding: 0 36px;
  }
}

/* ── Responsive ── */
@media (max-width: 991px) {
  .weddings-split-inner {
    grid-template-columns: 1fr;
    padding: 60px 32px 48px;
  }

  .w-text-col {
    padding-right: 0;
    margin-bottom: 32px;
  }

  .w-mosaic-col {
    height: 360px;
  }

  .wl-inner {
    padding: 0 24px 72px;
  }

  .wl-videos {
    grid-template-columns: 1fr;
  }
}

/* ══════════════════════════════
   ACTIVITIES
══════════════════════════════ */
/* ══════════════════════════════
   ACTIVITIES SECTION
══════════════════════════════ */
.activities-section {
  background: #2e6b6b;
  /* deep teal/dark green matching screenshots */
  padding: 72px 48px 80px;
}

/* ── Heading ── */
.act-heading {
  margin-bottom: 28px;
}

.act-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.6rem, 6vw, 5rem);
  font-weight: 400;
  font-style: italic;
  color: #ffffff;
  line-height: 1.1;
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}

.act-sub-line1 {
  font-family: 'Raleway', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.24em;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  margin-bottom: 4px;
}

.act-sub-line2 {
  font-family: 'Raleway', sans-serif;
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.45);
  text-transform: uppercase;
  margin-bottom: 0;
}

/* ── Tabs ── */
.act-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 36px;
  margin-top: 28px;
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
}

.act-tab {
  display: flex;
  align-items: center;
  gap: 7px;
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  color: rgba(255, 255, 255, 0.78);
  border-radius: 30px;
  padding: 9px 20px;
  font-family: 'Raleway', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.act-tab i {
  font-size: 0.82rem;
}

.act-tab:hover {
  border-color: rgba(255, 255, 255, 0.7);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
}

.act-tab.active {
  background: #ffffff;
  border-color: #ffffff;
  color: #2e6b6b;
  /* teal text on white pill */
}

/* ── Cards Grid ── */
.act-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.act-card {
  background: #ffffff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: none;
  /* JS shows only active cat */
}

.act-card.visible {
  display: flex;
  flex-direction: column;
}

.act-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.22);
}

.act-card.showing {
  animation: actCardIn 0.32s ease both;
}

@keyframes actCardIn {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.97);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Image */
.act-img {
  height: 210px;
  overflow: hidden;
  flex-shrink: 0;
}

.act-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.act-card:hover .act-img img {
  transform: scale(1.06);
}

/* Body */
.act-body {
  padding: 20px 22px 18px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.act-body h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: #1a2e2a;
  margin-bottom: 8px;
  line-height: 1.25;
}

.act-body p {
  font-family: 'Raleway', sans-serif;
  font-size: 0.82rem;
  color: #5a4a35;
  line-height: 1.65;
  margin-bottom: 0;
  flex: 1;
}

/* Footer: price left, VIEW DETAILS right */
.act-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px solid #ede8e0;
}

.act-price {
  font-family: 'Raleway', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: #1a2e2a;
}

.act-view-link {
  font-family: 'Raleway', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #2e6b6b;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 3px;
  transition: gap 0.2s, color 0.2s;
}

.act-view-link:hover {
  color: #1a4a4a;
  gap: 6px;
}

.act-view-link i {
  font-size: 0.7rem;
}

/* ── Responsive ── */
@media (max-width: 991px) {
  .activities-section {
    padding: 60px 24px 70px;
  }

  .act-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .act-grid {
    grid-template-columns: 1fr;
  }

  .act-tabs {
    gap: 8px;
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    max-width: 100%;
    padding-bottom: 8px;
    scroll-padding-left: 0;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .act-tabs::-webkit-scrollbar {
    display: none;
  }
}

/* ══════════════════════════════
   ATTRACTIONS
══════════════════════════════ */
/* ══════════════════════════════
   ATTRACTIONS SECTION
══════════════════════════════ */
.attractions-section {
  background: #ffffff;
  overflow: hidden;
}

/* ── White heading area ── */
.attr-heading-wrap {
  text-align: center;
  padding: 72px 20px 40px;
  background: #ffffff;
}

.attr-eyebrow {
  font-family: 'Raleway', sans-serif;
  font-size: 0.62rem;
  letter-spacing: 0.26em;
  font-weight: 700;
  color: var(--teal);
  text-transform: uppercase;
  margin-bottom: 4px;
}

.attr-discover {
  font-family: 'Raleway', sans-serif;
  font-size: 0.6rem;
  letter-spacing: 0.26em;
  font-weight: 600;
  color: rgba(74, 155, 140, 0.55);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.attr-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 400;
  font-style: italic;
  color: var(--teal);
  line-height: 1.1;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

/* Short teal underline beneath title */
.attr-title-bar {
  width: 36px;
  height: 2px;
  background: var(--teal);
  margin: 0 auto 18px;
  border-radius: 2px;
}

.attr-sub {
  font-family: 'Raleway', sans-serif;
  font-size: 0.88rem;
  color: #7a6a55;
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.75;
}

/* ── Full-bleed strip ── */
.attr-strip-wrap {
  position: relative;
  width: 100%;
}

.attr-strip {
  display: flex;
  gap: 0;
  /* cards flush/touching like screenshots */
  overflow-x: auto;
  scroll-behavior: smooth;
  cursor: grab;
  scrollbar-width: none;
  /* hide scrollbar — use arrows */
}

.attr-strip:active {
  cursor: grabbing;
}

.attr-strip::-webkit-scrollbar {
  display: none;
}

/* ── Each card — tall, equal width, no gap ── */
.attr-card {
  flex-shrink: 0;
  width: calc(100vw / 4);
  /* exactly 3 visible at once */
  min-width: 300px;
  height: 520px;
  position: relative;
  overflow: hidden;
}

.attr-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
  filter: brightness(0.72);
}

.attr-card:hover img {
  transform: scale(1.04);
  filter: brightness(0.82);
}

/* Dark gradient overlay at bottom */
.attr-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      rgba(0, 0, 0, 0) 40%,
      rgba(0, 0, 0, 0.65) 100%);
  pointer-events: none;
}

/* Large faded number — top left */
.attr-card-num {
  position: absolute;
  top: 18px;
  left: 20px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.22);
  line-height: 1;
  z-index: 2;
  letter-spacing: -0.02em;
}

/* Rotated category tag — top right */
.attr-card-cat {
  position: absolute;
  top: 52px;
  right: -24px;
  font-family: 'Raleway', sans-serif;
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: rgba(255, 255, 255, 0.45);
  text-transform: uppercase;
  transform: rotate(90deg);
  transform-origin: right center;
  z-index: 2;
  white-space: nowrap;
}

/* Bottom text block */
.attr-card-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 22px 22px;
  z-index: 2;
}

.attr-dist {
  font-family: 'Raleway', sans-serif;
  font-size: 0.58rem;
  letter-spacing: 0.18em;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.58);
  text-transform: uppercase;
  margin-bottom: 6px;
}

.attr-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.3rem, 2.2vw, 1.7rem);
  font-weight: 400;
  color: #ffffff;
  line-height: 1.2;
  margin: 0;
  letter-spacing: -0.01em;
}

/* ── Bottom bar ── */
.attr-bottom-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px 20px;
  background: #ffffff;
}

.attr-swipe-hint {
  font-family: 'Raleway', sans-serif;
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.35);
  text-transform: uppercase;
  margin: 0;
}

.attr-arrows {
  display: flex;
  gap: 0;
  border: 1px solid #e0d8d0;
  border-radius: 3px;
  overflow: hidden;
}

.attr-arrow {
  width: 48px;
  height: 44px;
  background: #ffffff;
  border: none;
  color: #5a4a35;
  font-size: 0.9rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
}

.attr-arrow:first-child {
  border-right: 1px solid #e0d8d0;
}

.attr-arrow:hover {
  background: var(--teal);
  color: #ffffff;
}

/* ── Responsive ── */
@media (max-width: 991px) {
  .attr-card {
    width: calc(100vw / 2);
  }
}

@media (max-width: 600px) {
  .attr-card {
    width: 85vw;
    height: 400px;
  }
}

/* --- LUXURY TABS & CAROUSEL FOR ATTRACTIONS --- */

.custom-tabs-wrapper {
  margin: 0 auto 40px;
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 10;
  max-width: 1050px;
  padding: 0 20px;
}

.nav-tabs.custom-tabs {
  border-bottom: none;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 8px 10px;
  border-radius: 50px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(220, 215, 205, 0.6);
  flex-wrap: wrap;
}

.nav-tabs.custom-tabs .nav-item {
  margin: 0;
}

.nav-tabs.custom-tabs .nav-link {
  border: none;
  background: transparent;
  color: #7a6a55;
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 10px 24px;
  transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
  border-radius: 30px;
  position: relative;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-tabs.custom-tabs .nav-link:hover {
  color: var(--teal);
  transform: translateY(-1px);
}

.nav-tabs.custom-tabs .nav-link.active {
  background: linear-gradient(135deg, var(--teal) 0%, #00665c 100%);
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(15, 168, 146, 0.35);
}

/* Tab Content Viewports */
.tab-content > .tab-pane {
  display: none;
}
.tab-content > .active {
  display: block;
}

/* --- TABS CAROUSEL CONTAINER --- */
.cards-carousel-container {
  position: relative;
  width: 100%;
  margin: 0 auto;
  padding: 0 45px;
}

.cards-carousel-viewport {
  overflow: hidden;
  width: 100%;
}

.cards-carousel-track {
  display: flex;
  transition: transform 0.65s cubic-bezier(0.25, 1, 0.33, 1);
  will-change: transform;
}

.carousel-card-wrapper {
  flex: 0 0 33.333%;
  padding: 0 12px;
  box-sizing: border-box;
}

/* Responsive carousel widths */
@media (max-width: 1200px) {
  .carousel-card-wrapper {
    flex: 0 0 50%;
  }
}

@media (max-width: 768px) {
  .carousel-card-wrapper {
    flex: 0 0 100%;
  }
  .cards-carousel-container {
    padding: 0 20px;
  }
}

/* --- TABS CAROUSEL CONTROL BUTTONS --- */
.carousel-control-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(220, 215, 205, 0.7);
  color: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 5;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.carousel-control-btn:hover {
  background: var(--teal);
  color: #fff;
  border-color: var(--teal);
  box-shadow: 0 8px 25px rgba(15, 168, 146, 0.35);
  transform: translateY(-50%) scale(1.05);
}

.carousel-control-btn.prev {
  left: -5px;
}

.carousel-control-btn.next {
  right: -5px;
}

.carousel-control-btn.disabled {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* --- PREMIUM CAROUSEL CARDS --- */
.attr-carousel-item {
  position: relative;
  height: 480px;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  background-color: #0d0d0d;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.33, 1), box-shadow 0.4s;
  margin-bottom: 30px;
}

.attr-carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.25, 1, 0.33, 1);
  opacity: 0.8;
}

.attr-carousel-info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 35px 25px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.4) 60%, transparent 100%);
  color: white;
  z-index: 2;
  transition: all 0.4s ease;
}

.attr-carousel-num {
  position: absolute;
  top: 25px;
  left: 25px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.22);
  line-height: 1;
  transition: all 0.4s ease;
  z-index: 2;
}

.attr-carousel-info h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.75rem;
  font-weight: 400;
  margin-bottom: 8px;
  color: #fff;
  line-height: 1.25;
}

.attr-carousel-dist {
  font-family: 'Raleway', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 6px;
}

.attr-carousel-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.attr-carousel-item:hover img {
  transform: scale(1.08);
  opacity: 0.9;
}

.attr-carousel-item:hover .attr-carousel-num {
  color: rgba(255, 255, 255, 0.35);
  transform: translateY(-3px);
}


/* ══════════════════════════════
   TESTIMONIALS
══════════════════════════════ */
/* ══════════════════════════════
   TESTIMONIALS
══════════════════════════════ */
.testimonials-section {
  background: #7a4a52;
  /* mauve/burgundy matching screenshot */
  position: relative;
  padding: 0;
  overflow: hidden;
}

/* Wavy SVG edges */
.wave-top,
.wave-bottom {
  display: block;
  width: 100%;
  line-height: 0;
}

.wave-top svg,
.wave-bottom svg {
  display: block;
  width: 100%;
  height: 52px;
}

.test-inner {
  padding: 20px 48px 32px;
}

/* ── Heading ── */
.test-heading {
  margin-bottom: 28px;
}

.test-eyebrow {
  font-family: 'Raleway', sans-serif;
  font-size: 0.6rem;
  letter-spacing: 0.26em;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.test-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 400;
  color: #ffffff;
  line-height: 1.1;
  margin-bottom: 8px;
}

.test-sub {
  font-family: 'Raleway', sans-serif;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.65);
  font-style: italic;
}

/* ── Big white card ── */
.test-card-wrap {
  background: #ffffff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 48px rgba(0, 0, 0, 0.18);
}

/* ── Platform tabs strip ── */
.rp-strip {
  display: flex;
  align-items: center;
  gap: 0;
  border-bottom: 1px solid #ece8e2;
  overflow-x: auto;
  scrollbar-width: none;
  padding: 0 16px;
}

.rp-strip::-webkit-scrollbar {
  display: none;
}

.rp-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: 'Raleway', sans-serif;
  font-size: 0.72rem;
  color: #5a4a35;
  font-weight: 600;
  padding: 14px 14px;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
  flex-shrink: 0;
}

.rp-item:hover {
  color: #2e6b6b;
}

.rp-item.active-platform {
  border-bottom-color: #2c2016;
  color: #2c2016;
}

.rp-score {
  font-weight: 700;
  color: #2c2016;
}

.rp-star-icon {
  color: #f4a01c;
  font-size: 0.85rem;
}

/* Platform icon circles */
.rp-g,
.rp-trip,
.rp-exp,
.rp-book,
.rp-fb,
.rp-yelp,
.rp-air,
.rp-vrbo {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.58rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.rp-g {
  background: #4285f4;
}

.rp-trip {
  background: #00aa6c;
}

.rp-exp {
  background: #1c2b75;
}

.rp-book {
  background: #003580;
}

.rp-fb {
  background: #1877f2;
}

.rp-yelp {
  background: #d32323;
}

.rp-air {
  background: #ff5a5f;
}

.rp-vrbo {
  background: #1c4f93;
}

/* ── Overall rating row ── */
.or-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px 14px;
  border-bottom: 1px solid #ece8e2;
}

.or-label {
  font-family: 'Raleway', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  color: #5a4a35;
  margin-bottom: 4px;
}

.or-score-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.or-score {
  font-family: 'Raleway', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: #2c2016;
  line-height: 1;
}

.or-stars {
  color: #f4a01c;
  font-size: 1rem;
  letter-spacing: 1px;
}

.or-count {
  font-size: 0.75rem;
  color: #9a8a78;
}

.btn-write-review {
  display: inline-block;
  background: #4285f4;
  color: #ffffff;
  border: none;
  border-radius: 6px;
  padding: 10px 22px;
  font-family: 'Raleway', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
  transition: background 0.25s;
}

.btn-write-review:hover {
  background: #2b6de0;
  color: #fff;
}

/* ── Carousel ── */
.rc-carousel-wrap {
  position: relative;
  overflow: hidden;
}

.rc-carousel {
  display: flex;
  gap: 0;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding: 20px 24px 16px;
  gap: 12px;
}

.rc-carousel::-webkit-scrollbar {
  display: none;
}

/* ── Individual review card ── */
.review-card {
  flex-shrink: 0;
  width: 220px;
  background: #ffffff;
  border: 1px solid #ece8e2;
  border-radius: 10px;
  padding: 16px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.25s;
}

.review-card:hover {
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
}

.rc-header {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 10px;
}

/* Avatar styles */
.rc-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  font-weight: 700;
  color: #ffffff;
  flex-shrink: 0;
  background: #9e9e9e;
}

.rc-avatar.rc-grey {
  background: #b0a898;
  color: #fff;
  font-size: 1.1rem;
}

.rc-avatar.rc-teal-b {
  background: #2e9688;
}

.rc-avatar.rc-purple {
  background: #7c3aed;
}

.rc-avatar.rc-orange {
  background: #f97316;
}

.rc-avatar.rc-initial-k {
  background: #4a8c8c;
}

.rc-meta {
  min-width: 0;
}

.rc-name {
  font-family: 'Raleway', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  color: #2c2016;
  display: flex;
  align-items: center;
  gap: 3px;
  flex-wrap: wrap;
}

.rc-date {
  font-size: 0.65rem;
  color: #9a8a78;
  margin-top: 1px;
}

/* Small badge icons next to name */
.rc-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  font-size: 0.5rem;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}

.rc-badge.rc-red {
  background: #e53935;
}

.rc-badge.rc-blue {
  background: #1877f2;
}

.rc-badge.rc-green {
  background: #43a047;
}

.rc-badge.rc-purple-b {
  background: #7c3aed;
  font-size: 0.45rem;
}

.rc-platform-tag {
  font-size: 0.55rem;
  background: #1c4f93;
  color: #fff;
  padding: 2px 5px;
  border-radius: 3px;
  margin-left: 3px;
  font-weight: 700;
}

.rc-stars {
  color: #f4a01c;
  font-size: 0.75rem;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.rc-text {
  font-family: 'Raleway', sans-serif;
  font-size: 0.76rem;
  color: #5a4a35;
  line-height: 1.6;
  margin-bottom: 10px;
}

.rc-content {
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.rc-content.expanded {
  -webkit-line-clamp: unset;
  display: block;
}

.rc-readmore {
  font-family: 'Raleway', sans-serif;
  font-size: 0.68rem;
  color: #9a8a78;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  margin-top: 5px;
  cursor: pointer;
}

.rc-readmore:hover {
  color: #2e6b6b;
}

/* Right arrow button */
.rc-arrow {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  background: #ffffff;
  border: 1px solid #ece8e2;
  border-radius: 50%;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: #5a4a35;
  cursor: pointer;
  z-index: 3;
  transition: background 0.2s, color 0.2s;
}

.rc-arrow:hover {
  background: #2e6b6b;
  color: #fff;
}

/* Pagination dots */
.rc-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  padding: 10px 0 18px;
}

.rc-dot {
  width: 28px;
  height: 6px;
  border-radius: 3px;
  background: #d0c8be;
  cursor: pointer;
  transition: background 0.25s, width 0.25s;
}

.rc-dot.active {
  background: #6b4a30;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .test-inner {
    padding: 20px 20px 28px;
  }

  .review-card {
    width: 200px;
  }
}

/* ══════════════════════════════
   PROMO
══════════════════════════════ */
.promo-section {
  background: #f3f3f3;
  padding: 90px 20px;
}

/* layout */
.promo-inner {
  max-width: 1150px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

/* LEFT SIDE */
.promo-eyebrow {
  letter-spacing: 4px;
  font-size: 12px;
  color: #7aa5a0;
  margin-bottom: 10px;
}

.promo-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 40px;
  line-height: 1.3;
  margin-bottom: 25px;
  color: #333;
}

/* OFFER BOX */
.promo-offer-box {
  background: #f8f8f8;
  padding: 45px 40px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
}

/* Complementary */
.promo-compl {
  font-size: 14px;
  color: #6fa6a2;
  font-family: 'Cormorant Garamond', serif;
  margin-bottom: 8px;
}

/* BIG TITLE */
.promo-big {
  font-size: 48px;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  color: #2e2e2e;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

/* & symbol */
.promo-and {
  font-size: 20px;
  color: #777;
  margin: 6px 0;
}

/* Welcome text */
.promo-sub {
  font-size: 18px;
  font-weight: 600;
  color: #2e2e2e;
  margin-bottom: 6px;
}

/* small text */
.promo-chef {
  font-size: 14px;
  color: #777;
  margin-bottom: 20px;
}

/* line */
.promo-hr {
  border: none;
  height: 1px;
  background: #cfd8d6;
  margin: 20px 0;
}

/* promo label */
.promo-use-code {
  font-size: 12px;
  letter-spacing: 2px;
  color: #888;
  margin-bottom: 12px;
}

/* promo button */
.promo-code {
  display: inline-block;
  padding: 12px 30px;
  border: 2px solid #6fa6a2;
  color: #6fa6a2;
  font-size: 18px;
  letter-spacing: 6px;
  font-family: 'Cormorant Garamond', serif;
  transition: 0.3s ease;
}

/* hover effect */
.promo-code:hover {
  background: #6fa6a2;
  color: #fff;
}

/* RIGHT SIDE IMAGES */
.promo-imgs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 230px 230px;
  gap: 15px;
}

.promo-img-main {
  grid-column: span 2;
  overflow: hidden;
  border-radius: 12px;
}

.promo-img-small {
  overflow: hidden;
  border-radius: 12px;
}

.promo-imgs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s;
}

.promo-imgs img:hover {
  transform: scale(1.05);
}

/* ══════════════════════════════
   FOOTER
══════════════════════════════ */
.site-footer {
  background: #5f9794;
  /* teal color from screenshot */
  color: #fff;
}

/* GRID */
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 60px;
  align-items: start;
}

/* spacing */
.footer-top {
  padding: 70px 20px 40px;
}

/* headings */
.footer-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  margin-bottom: 15px;
}

/* contact */
.footer-contact-list li {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 10px;
}

.footer-contact-list li a {
  color: var(--white);
}

/* social */
.footer-social {
  margin-top: 15px;
}

.footer-social a {
  display: inline-flex;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.2);
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 10px;
  color: white;
}

/* center logo */
.footer-logo {
  height: 135px;
  margin-bottom: 10px;
}

.footer-brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
}

.footer-brand-sub {
  font-size: 11px;
  letter-spacing: 3px;
  margin-bottom: 10px;
}

.footer-brand-desc {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.85);
}

/* links */
.footer-links a {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.85);
  display: block;
  margin-bottom: 8px;
}

/* MAP SECTION */
.footer-map-full {
  margin-top: 50px;
}

.footer-map-tag {
  font-size: 11px;
  letter-spacing: 2px;
  margin-bottom: 10px;
  opacity: 0.9;
}

.footer-map-wrap {
  border-radius: 12px;
  overflow: hidden;
}

.footer-map-wrap iframe {
  width: 100%;
  height: 220px;
  border: 0;
}

.footer-map-link {
  display: inline-block;
  margin-top: 10px;
  font-size: 12px;
  color: #fff;
}

/* bottom */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding: 15px;
}

.footer-bottom p {
  font-size: 12px;
  opacity: 0.8;
}

@media (max-width: 768px) {

  /* STACK GRID */
  .footer-grid {
    grid-template-columns: 1fr;
    /* text-align: center; */
    gap: 40px;
  }

  /* REDUCE PADDING */
  .footer-top {
    padding: 50px 18px 30px;
  }

  /* LOGO FIX (VERY IMPORTANT) */
  .footer-logo {
    height: 90px;
    margin-bottom: 12px;
  }

  /* BRAND TEXT */
  .footer-brand-name {
    font-size: 1.2rem;
  }

  .footer-brand-sub {
    font-size: 10px;
    letter-spacing: 2px;
  }

  .footer-brand-desc {
    font-size: 0.8rem;
    line-height: 1.6;
    padding: 0 10px;
  }

  /* CONTACT LIST */
  .footer-contact-list li {
    justify-content: center;
    /* text-align: center; */
    font-size: 13px;
  }

  /* SOCIAL ICONS CENTER */
  .footer-social {
    display: flex;
    justify-content: center;
    gap: 10px;
  }

  /* LINKS */
  .footer-links a {
    font-size: 13px;
  }

  /* MAP SECTION */
  .footer-map-full {
    margin-top: 40px;
  }

  .footer-map-tag {
    font-size: 10px;
    line-height: 1.5;
  }

  .footer-map-wrap iframe {
    height: 180px;
  }

  .footer-map-link {
    font-size: 11px;
  }

  /* BOTTOM */
  .footer-bottom {
    padding: 12px;
  }

  .footer-bottom p {
    font-size: 11px;
  }

}

/* ══════════════════════════════
   SCROLL REVEAL
══════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible,
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* ══════════════════════════════
   RESPONSIVE
══════════════════════════════ */
@media (max-width: 1199px) {
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .weddings-lower {
    grid-template-columns: 1fr;
  }

  .weddings-love {
    padding: 40px 32px;
  }
}

@media (max-width: 991px) {

  .nav-left,
  .nav-right {
    flex: none;
    width: 100%;
  }

  .nav-left .navbar-nav,
  .nav-right .navbar-nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-logo-center img {
    height: 42px;
  }

  .villa-row,
  .villa-row.reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }

  .villa-img-col {
    min-height: 300px;
  }

  .act-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .promo-inner {
    grid-template-columns: 1fr;
  }

  .booking-bar {
    flex-wrap: wrap;
    border-radius: 6px 6px 0 0;
  }

  .bb-field {
    flex: 1 1 140px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    border-right: none;
  }

  .btn-check-avail {
    width: 100%;
    min-width: unset;
    padding: 16px;
    border-radius: 0;
  }
}

@media (max-width: 767px) {
  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .act-grid {
    grid-template-columns: 1fr;
  }

  .promo-imgs {
    grid-template-rows: 180px 180px;
  }

  .love-video-grid {
    grid-template-columns: 1fr;
  }

  .stats-row {
    gap: 28px;
  }

  .weddings-mosaic {
    grid-template-columns: 1fr;
  }

  .w-mosaic-side {
    flex-direction: row;
  }
}




/* ─── HERO SECTION ─── */
.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
}

.hero__image-col {
  position: relative;
  overflow: hidden;
}

.hero__image-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.05);
  animation: zoomIn 1.8s ease forwards;
}

@keyframes zoomIn {
  to {
    transform: scale(1);
  }
}

.hero__image-col::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(45, 74, 62, 0.15) 0%, transparent 60%);
}

.hero__content-col {
  background: #2d4a3e;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 70px 80px 60px;
  position: relative;
  overflow: hidden;
  animation: slideLeft 1s ease 0.3s both;
}

@keyframes slideLeft {
  from {
    opacity: 0;
    transform: translateX(40px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero__content-col::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(184, 151, 90, 0.12) 0%, transparent 70%);
  border-radius: 50%;
}

.hero__eyebrow {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 11px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: #b8975a;
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.7s forwards;
}

.hero__title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(48px, 5vw, 72px);
  line-height: 1.05;
  color: #fff;
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.9s forwards;
}

.hero__title em {
  font-style: italic;
  color: #b8975a;
}

.hero__divider {
  width: 60px;
  height: 1px;
  background: #b8975a;
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeUp 0.8s ease 1.1s forwards;
}

.hero__desc {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.75);
  max-width: 420px;
  margin-bottom: 48px;
  opacity: 0;
  animation: fadeUp 0.8s ease 1.2s forwards;
}

.hero__desc strong {
  color: #fff;
  font-weight: 400;
}

.hero__cta {
  display: inline-block;
  padding: 16px 40px;
  border: 1px solid #b8975a;
  color: #b8975a;
  text-decoration: none;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 400;
  position: relative;
  overflow: hidden;
  transition: color 0.4s;
  align-self: flex-start;
  opacity: 0;
  animation: fadeUp 0.8s ease 1.4s forwards;
}

.hero__cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #b8975a;
  transform: translateX(-100%);
  transition: transform 0.4s ease;
}

.hero__cta:hover::before {
  transform: translateX(0);
}

.hero__cta:hover {
  color: #1e2520;
}

.hero__cta span {
  position: relative;
  z-index: 1;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ─── THUMBNAIL STRIP ─── */
.thumbnails {
  background: #1e2520;
  padding: 0;
  overflow: hidden;
}

.thumbnails__track {
  display: flex;
  gap: 3px;
}

.thumbnails__item {
  flex: 1;
  height: 110px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  opacity: 0;
  animation: fadeIn 0.5s ease forwards;
}

.thumbnails__item:nth-child(1) {
  animation-delay: 0.1s;
}

.thumbnails__item:nth-child(2) {
  animation-delay: 0.2s;
}

.thumbnails__item:nth-child(3) {
  animation-delay: 0.3s;
}

.thumbnails__item:nth-child(4) {
  animation-delay: 0.4s;
}

.thumbnails__item:nth-child(5) {
  animation-delay: 0.5s;
}

.thumbnails__item:nth-child(6) {
  animation-delay: 0.6s;
}

.thumbnails__item:nth-child(7) {
  animation-delay: 0.7s;
}

.thumbnails__item:nth-child(8) {
  animation-delay: 0.8s;
}

.thumbnails__item:nth-child(9) {
  animation-delay: 0.9s;
}

.thumbnails__item:nth-child(10) {
  animation-delay: 1s;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.thumbnails__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease, opacity 0.3s;
  filter: brightness(0.75) saturate(0.9);
}

.thumbnails__item:hover img {
  transform: scale(1.12);
  filter: brightness(1) saturate(1.1);
}

.thumbnails__item::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 2px solid transparent;
  transition: border-color 0.3s;
}

.thumbnails__item:hover::after {
  border-color: #b8975a;
}

/* ─── FEATURE STRIP ─── */
.features {
  background: #f5f0e8;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid #e8dfd0;
}

.feature {
  padding: 48px 36px;
  border-right: 1px solid #e8dfd0;
  text-align: center;
  transition: background 0.3s;
}

.feature:last-child {
  border-right: none;
}

.feature:hover {
  background: #e8dfd0;
}

.feature__icon {
  width: 42px;
  height: 42px;
  margin: 0 auto 18px;
  color: #3d6b5a;
}

.feature__icon svg {
  width: 100%;
  height: 100%;
}

.feature__label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 400;
  color: #2d4a3e;
  margin-bottom: 8px;
}

.feature__sub {
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 1px;
  color: #8a9e96;
  text-transform: uppercase;
}

/* ─── CONTACT SECTION ─── */
.contact-section {
  padding: 100px 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.contact__heading-col {}

.contact__label {
  font-size: 11px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: #c4714a;
  font-weight: 400;
  margin-bottom: 20px;
  display: block;
}

.contact__heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(38px, 4vw, 58px);
  font-weight: 300;
  line-height: 1.1;
  color: #2d4a3e;
}

.contact__heading em {
  font-style: italic;
  color: #c4714a;
}

.contact__body-col {}

.contact__intro {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.9;
  color: #5a6b62;
  margin-bottom: 48px;
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.contact__item {
  padding: 24px 28px;
  background: #f5f0e8;
  border-left: 3px solid #b8975a;
  transition: transform 0.3s, box-shadow 0.3s;
}

.contact__item:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(45, 74, 62, 0.08);
}

.contact__item--wide {
  grid-column: span 2;
}

.contact__item-label {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #8a9e96;
  font-weight: 400;
  margin-bottom: 8px;
}

.contact__item-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  color: #2d4a3e;
  font-weight: 400;
}

.contact__item-value a {
  color: #2d4a3e;
  text-decoration: none;
  transition: color 0.2s;
}

.contact__item-value a:hover {
  color: #c4714a;
}

/* ─── CTA BANNER ─── */
.cta-banner {
  margin: 0 60px 80px;
  background: #2d4a3e;
  padding: 70px 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: 'PURA VIDA';
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'Cormorant Garamond', serif;
  font-size: 160px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.04);
  white-space: nowrap;
  letter-spacing: 10px;
  pointer-events: none;
}

.cta-banner__text {}

.cta-banner__eyebrow {
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #b8975a;
  font-weight: 300;
  margin-bottom: 14px;
  display: block;
}

.cta-banner__heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 300;
  color: #fff;
}

.cta-banner__btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 20px 50px;
  background: #b8975a;
  color: #1e2520;
  text-decoration: none;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 500;
  transition: background 0.3s, transform 0.3s;
  white-space: nowrap;
  flex-shrink: 0;
}

.cta-banner__btn:hover {
  background: #c4714a;
  color: #fff;
  transform: translateY(-2px);
}

.cta-banner__btn svg {
  width: 16px;
  height: 16px;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero__image-col {
    height: 55vw;
  }

  .hero__content-col {
    padding: 60px 36px;
  }

  .features {
    grid-template-columns: 1fr 1fr;
  }

  .feature:nth-child(2) {
    border-right: none;
  }

  .contact-section {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 60px 36px;
  }

  .cta-banner {
    flex-direction: column;
    gap: 36px;
    text-align: center;
    margin: 0 24px 60px;
    padding: 50px 36px;
  }
}

@media (max-width: 600px) {
  .features {
    grid-template-columns: 1fr 1fr;
  }

  .contact__grid {
    grid-template-columns: 1fr;
  }

  .contact__item--wide {
    grid-column: span 1;
  }

  .thumbnails__item {
    height: 70px;
  }
}


.dpe-activity-card__image {
  width: 100%;
  height: 250px;
}

.mb-1 {
  margin-bottom: 1rem;
}



.eXFrmt {
  padding: 0px !important;
}

.site-gallery-lightbox-trigger {
  cursor: zoom-in;
}

.site-gallery-lightbox-open {
  overflow: hidden;
}

.site-gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: grid;
  grid-template-columns: 80px minmax(0, 1fr) 80px;
  align-items: center;
  gap: 18px;
  padding: 34px;
  background: rgba(44, 32, 22, 0.88);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.site-gallery-lightbox.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.site-gallery-lightbox__frame {
  grid-column: 2;
  /* width: min(100%, 1120px); */
  max-height: calc(100vh - 190px);
  margin: 0 auto;
  display: grid;
  gap: 14px;
}

.site-gallery-lightbox__img {
  width: 100%;
  height: auto;
  max-height: calc(100vh - 150px);
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.36);
  background: #111;
}

.site-gallery-lightbox__caption {
  color: rgba(255, 255, 255, 0.86);
  font-family: 'Raleway', sans-serif;
  font-size: 0.95rem;
  text-align: center;
}

.site-gallery-lightbox__close,
.site-gallery-lightbox__nav {
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.site-gallery-lightbox__close:hover,
.site-gallery-lightbox__nav:hover {
  background: rgba(255, 255, 255, 0.22);
  transform: translateY(-1px);
}

.site-gallery-lightbox__close {
  position: absolute;
  top: 75px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  font-size: 2rem;
  line-height: 1;
}

.site-gallery-lightbox__nav {
  width: 54px;
  height: 72px;
  border-radius: 999px;
  font-size: 3rem;
  line-height: 1;
  justify-self: center;
}

.site-gallery-lightbox__prev {
  grid-column: 1;
}

.site-gallery-lightbox__next {
  grid-column: 3;
}

@media (max-width: 720px) {
  .site-gallery-lightbox {
    grid-template-columns: 1fr 1fr;
    align-content: center;
    gap: 14px;
    padding: 56px 18px 22px;
  }

  .site-gallery-lightbox__frame {
    grid-column: 1 / -1;
    grid-row: 1;
  }

  .site-gallery-lightbox__img {
    max-height: calc(100vh - 170px);
  }

  .site-gallery-lightbox__prev,
  .site-gallery-lightbox__next {
    grid-row: 2;
    width: 48px;
    height: 48px;
    font-size: 2.2rem;
  }

  .site-gallery-lightbox__prev {
    grid-column: 1;
    justify-self: end;
  }

  .site-gallery-lightbox__next {
    grid-column: 2;
    justify-self: start;
  }
}







/* --- Shared Breadcrumb Style --- */
.breadcrumb-bar,
.attr-breadcrumb-bar {
  background: #fff;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  padding: 15px 0;
  position: relative;
  z-index: 10;
}

.breadcrumb-custom,
.breadcrumb-bar .breadcrumb,
.attr-breadcrumb-bar .breadcrumb {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0;
  margin: 0;
  padding: 0;
  font-size: 12px;
  font-family: 'Raleway', sans-serif;
}

.breadcrumb-bar .breadcrumb-item-custom a,
.breadcrumb-item-custom a,
.breadcrumb-bar .breadcrumb-item a,
.attr-breadcrumb-bar .breadcrumb-item a {
  color: #0fa892;
  text-decoration: none;
  font-weight: 500;
}

.breadcrumb-bar .breadcrumb-item-custom a:hover,
.breadcrumb-item-custom a:hover,
.breadcrumb-bar .breadcrumb-item a:hover,
.attr-breadcrumb-bar .breadcrumb-item a:hover {
  text-decoration: underline;
}

.breadcrumb-bar .breadcrumb-item-custom.active,
.breadcrumb-item-custom.active,
.breadcrumb-bar .breadcrumb-item.active,
.attr-breadcrumb-bar .breadcrumb-item.active {
  color: #777;
}

.breadcrumb-bar .breadcrumb-item-custom.divider,
.breadcrumb-item-custom.divider {
  color: #ccc;
  padding: 0 12px;
  font-size: 12px;
  display: flex;
  align-items: center;
}

.breadcrumb-bar .breadcrumb-item + .breadcrumb-item::before,
.attr-breadcrumb-bar .breadcrumb-item + .breadcrumb-item::before {
  color: #ccc;
  padding-right: 12px;
}
