/* ============================================================
   LA PLAYITA MIAMI — Main Stylesheet
   Palette: Beige #F5EFE6 · Green #2D6A4F / #52B788 · Gold #C9A84C
   Fonts: Playfair Display (serif) + Inter (sans-serif)
   ============================================================ */

/* ---------- CSS VARIABLES ---------------------------------- */
:root {
  --beige:       #F5EFE6;
  --beige-dark:  #EDE3D4;
  --beige-mid:   #FAF6F1;
  --green-deep:  #2D6A4F;
  --green-mid:   #40916C;
  --green-light: #52B788;
  --green-pale:  #D8F3DC;
  --gold:        #C9A84C;
  --gold-light:  #E4C87A;
  --gold-pale:   #FDF5E2;
  --pink-soft:   #F9EEE8;
  --pink-accent: #E8A090;
  --charcoal:    #1C1C1C;
  --dark:        #111111;
  --dark-card:   #1A2018;
  --text-body:   #3A3028;
  --text-muted:  #7A6E67;
  --white:       #FFFFFF;
  --shadow-sm:   0 2px 16px rgba(30,20,10,0.07);
  --shadow-md:   0 8px 40px rgba(30,20,10,0.12);
  --shadow-lg:   0 20px 60px rgba(30,20,10,0.16);
  --shadow-gold: 0 6px 28px rgba(201,168,76,0.28);
  --radius-sm:   12px;
  --radius-md:   20px;
  --radius-lg:   32px;
  --transition:  0.32s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* ---------- RESET & BASE ----------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--beige);
  color: var(--text-body);
  line-height: 1.72;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  color: var(--charcoal);
  line-height: 1.25;
}

a {
  text-decoration: none;
  color: inherit;
}

img { max-width: 100%; display: block; }

/* ---------- UTILITIES -------------------------------------- */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 108px 0;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 68px;
}

.section-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.section-eyebrow::before,
.section-eyebrow::after {
  content: '';
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--gold);
  opacity: 0.5;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto;
  font-weight: 300;
}

.section-header.light .section-title,
.section-header.light .section-subtitle {
  color: var(--white);
}
.section-header.light .section-subtitle {
  opacity: 0.8;
}

/* ---------- BUTTONS ---------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  outline: none;
  text-decoration: none;
  white-space: nowrap;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--white);
  box-shadow: var(--shadow-gold);
}
.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(201,168,76,0.4);
  background: linear-gradient(135deg, #b8943d 0%, var(--gold) 100%);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.7);
  backdrop-filter: blur(4px);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
  transform: translateY(-3px);
}

.btn-large {
  padding: 18px 44px;
  font-size: 1rem;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 10px 0;
  background: var(--green-deep);
  box-shadow: 0 2px 20px rgba(0,0,0,0.18);
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}

.navbar.scrolled {
  background: var(--green-deep);
  backdrop-filter: none;
  box-shadow: 0 4px 24px rgba(0,0,0,0.22);
  padding: 8px 0;
}

.nav-container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.brand-icon { font-size: 1.5rem; }

.brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
}
.navbar.scrolled .brand-name { color: var(--white); }

/* Logo image in navbar - always white on green bg */
.nav-logo {
  height: 68px;
  width: auto;
  display: block;
  object-fit: contain;
  filter: brightness(0) invert(1);
  transition: height 0.3s ease;
}
.navbar.scrolled .nav-logo {
  filter: brightness(0) invert(1);
  height: 56px;
}

.nav-links {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255,255,255,0.88);
  letter-spacing: 0.02em;
  transition: color var(--transition);
}
.navbar.scrolled .nav-links a { color: rgba(255,255,255,0.88); }

.nav-links a:hover { color: var(--gold); }

.nav-cta-btn {
  background: var(--gold) !important;
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: 50px;
  font-weight: 600 !important;
}
.nav-cta-btn:hover {
  background: #b8943d !important;
  transform: translateY(-2px);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.navbar.scrolled .nav-toggle span { background: var(--charcoal); }

/* ============================================================
   HERO SECTION — Photo Slider
   ============================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: #0a2e1c;
}

/* Slider container */
.hero-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  opacity: 0;
  transition: opacity 1.2s ease-in-out, transform 8s ease-in-out;
  transform: scale(1.06);
}
.hero-slide.active {
  opacity: 1;
  transform: scale(1);
}

/* Dots */
.hero-dots {
  position: absolute;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 4;
}
.hero-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}
.hero-dot.active {
  background: var(--gold-light);
  width: 24px;
  border-radius: 4px;
}

/* Arrows */
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.3);
  border: 1.5px solid rgba(255,255,255,0.25);
  color: #fff;
  width: 48px; height: 48px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  z-index: 4;
  transition: all 0.25s ease;
  backdrop-filter: blur(4px);
}
.hero-arrow:hover {
  background: rgba(0,0,0,0.55);
  border-color: var(--gold-light);
  color: var(--gold-light);
}
.hero-arrow-prev { left: 24px; }
.hero-arrow-next { right: 24px; }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0.30) 0%,
    rgba(0,0,0,0.18) 45%,
    rgba(0,0,0,0.52) 100%
  );
  z-index: 1;
}

.hero-palms {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}
.palm { position: absolute; bottom: 0; width: 260px; opacity: 0.6; }
.palm-left { left: -40px; transform: rotate(-12deg); }
.palm-right { right: -40px; transform: rotate(12deg) scaleX(-1); }

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 120px 24px 120px;
  max-width: 760px;
}

.hero-eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 20px;
  animation: fadeUp 0.8s ease both;
}

.hero-title {
  font-size: clamp(2.6rem, 7vw, 5.2rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
  animation: fadeUp 0.8s ease 0.15s both;
  text-shadow: 0 4px 30px rgba(0,0,0,0.3);
}
.hero-title em {
  font-style: italic;
  color: var(--gold-light);
  display: block;
}

.hero-subtitle {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  color: rgba(255,255,255,0.9);
  margin-bottom: 12px;
  animation: fadeUp 0.8s ease 0.25s both;
}

.hero-detail {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.08em;
  margin-bottom: 44px;
  animation: fadeUp 0.8s ease 0.35s both;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeUp 0.8s ease 0.45s both;
}

.hero-scroll-hint {
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  animation: fadeUp 0.8s ease 0.6s both;
}

.bounce {
  animation: bounce 2s ease-in-out infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(8px); }
}

.hero-pool-scene {
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  z-index: 2;
  pointer-events: none;
}
.hero-pool-scene svg { width: 100%; height: 120px; display: block; }

/* ============================================================
   PERKS SECTION
   ============================================================ */
.perks-section {
  background: var(--beige);
}

.perks-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.perk-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 40px 32px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(201,168,76,0.10);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.perk-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green-light), var(--gold));
  opacity: 0;
  transition: var(--transition);
}

.perk-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(201,168,76,0.2);
}
.perk-card:hover::before { opacity: 1; }

.perk-icon {
  font-size: 1.8rem;
  width: 58px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  background: rgba(82,183,136,0.13);
  border: 1.5px solid rgba(82,183,136,0.28);
  border-radius: 14px;
  color: var(--green-deep);
  filter: drop-shadow(0 4px 8px rgba(45,106,79,0.12));
  transition: background 0.2s, color 0.2s;
}
.perk-card:hover .perk-icon {
  background: rgba(201,168,76,0.18);
  border-color: rgba(201,168,76,0.4);
  color: var(--gold);
}

.perk-card h3 {
  font-size: 1.08rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--charcoal);
}

.perk-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ============================================================
   GUIDE SECTION
   ============================================================ */
.guide-section {
  background: linear-gradient(155deg, var(--green-deep) 0%, #1b4d35 50%, #0f3a26 100%);
  position: relative;
  overflow: hidden;
}

.guide-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 80% 20%, rgba(82,183,136,0.15) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 10% 80%, rgba(201,168,76,0.08) 0%, transparent 60%);
}

.guide-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.guide-card {
  display: flex;
  align-items: center;
  gap: 18px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 24px 22px;
  cursor: pointer;
  transition: var(--transition);
  backdrop-filter: blur(8px);
  text-decoration: none;
  color: var(--white);
}

.guide-card:hover {
  background: rgba(255,255,255,0.13);
  border-color: rgba(201,168,76,0.4);
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}

.guide-card-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  transition: var(--transition);
  color: var(--gold-light);
  font-size: 1.15rem;
}
.guide-card:hover .guide-card-icon {
  background: rgba(201,168,76,0.18);
  border-color: rgba(201,168,76,0.35);
  color: var(--gold-light);
}

.guide-card-body { flex: 1; }
.guide-card-body h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
}
.guide-card-body p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.45;
}

.guide-card-arrow {
  font-size: 0.9rem;
  color: var(--gold-light);
  opacity: 0;
  transform: translateX(-6px);
  transition: var(--transition);
}
.guide-card:hover .guide-card-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* Coming-soon variant — dimmed, no hover lift */
.guide-card.coming-soon {
  opacity: 0.52;
  cursor: default;
  pointer-events: none;
}
.guide-card.coming-soon:hover {
  transform: none;
  box-shadow: none;
  border-color: rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.06);
}
.guide-card-badge {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: rgba(201,168,76,0.25);
  color: var(--gold-light);
  border: 1px solid rgba(201,168,76,0.35);
  border-radius: 50px;
  padding: 3px 10px;
  margin-top: 6px;
  display: inline-block;
  font-family: 'Inter', sans-serif;
}

/* ============================================================
   SERVICES SECTION
   ============================================================ */
.services-section {
  background: var(--beige-mid);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 44px 34px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid rgba(0,0,0,0.05);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(201,168,76,0.35);
}

.service-badge {
  position: absolute;
  top: 18px; right: 18px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 50px;
}

.service-icon-wrap {
  width: 72px;
  height: 72px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--green-pale), rgba(82,183,136,0.15));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: var(--transition);
}
.service-card:hover .service-icon-wrap {
  background: linear-gradient(135deg, var(--gold-pale), rgba(201,168,76,0.2));
}

.service-icon { font-size: 2.2rem; }

.service-card h3 {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--charcoal);
}

.service-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 24px;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--green-deep);
  transition: var(--transition);
}
.service-link:hover {
  color: var(--gold);
  gap: 12px;
}

/* Service card — menu list & note */
.service-menu-list {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.service-menu-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--text-muted);
  font-family: 'Inter', sans-serif;
  line-height: 1.45;
}
.service-menu-list li i {
  color: var(--green-mid);
  font-size: 0.7rem;
  margin-top: 3px;
  flex-shrink: 0;
}
.service-menu-list li em {
  font-style: italic;
  color: var(--green-deep);
}
.service-note {
  font-size: 0.75rem !important;
  color: rgba(90,90,90,0.7) !important;
  font-style: italic;
  border-top: 1px solid rgba(0,0,0,0.06);
  padding-top: 10px;
  margin-top: 4px !important;
  margin-bottom: 16px !important;
  line-height: 1.5 !important;
}

/* ============================================================
   RETURNING GUEST PERKS
   ============================================================ */
/* ============================================================
   RETURNING GUEST PERKS — redesign
   ============================================================ */
.returning-section {
  background: linear-gradient(160deg, #0d1f17 0%, #122418 50%, #0a160f 100%);
  padding: 100px 0;
}

.returning-section .section-header { margin-bottom: 56px; }
.returning-section .section-eyebrow { color: var(--gold-light); }
.returning-section .section-title   { color: var(--white); }
.returning-section .section-subtitle{ color: rgba(255,255,255,0.55); }

.returning-section .section-title .heart {
  color: #e05a7a;
}

/* ── Main two-column layout ── */
.returning-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: stretch;
  max-width: 1100px;
  margin: 0 auto;
}

/* ── Left photo ── */
.returning-photo {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  min-height: 480px;
}

.returning-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: brightness(0.75);
}

.returning-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.1) 55%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 36px;
  gap: 16px;
}

.returning-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, rgba(201,168,76,0.9), rgba(180,140,50,0.9));
  color: #0d1f17;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 30px;
  width: fit-content;
  box-shadow: 0 4px 16px rgba(201,168,76,0.3);
}

.returning-photo-quote {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-style: italic;
  color: rgba(255,255,255,0.9);
  line-height: 1.5;
  max-width: 340px;
}

/* ── Right perks stack ── */
.returning-perks-stack {
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
}

.returning-perk-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: 16px;
  padding: 28px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.returning-perk-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, var(--gold), var(--green-light));
  border-radius: 3px 0 0 3px;
}

.returning-perk-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(201,168,76,0.35);
  transform: translateX(6px);
}

.returning-perk-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, rgba(201,168,76,0.18), rgba(201,168,76,0.06));
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--gold-light);
}

.returning-perk-label {
  display: block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(201,168,76,0.6);
  margin-bottom: 6px;
}

.returning-perk-body h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
}

.returning-perk-body p {
  font-size: 0.87rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
  margin: 0;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .returning-visual {
    grid-template-columns: 1fr;
  }
  .returning-photo {
    min-height: 280px;
  }
}

/* ============================================================
   PREMIUM EXPERIENCES
   ============================================================ */
.experiences-section {
  background: linear-gradient(145deg, #0d1f17 0%, #152b20 40%, #0a1a10 100%);
  position: relative;
  overflow: hidden;
}

.experiences-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 15% 30%, rgba(45,106,79,0.25) 0%, transparent 60%),
    radial-gradient(ellipse 50% 45% at 85% 70%, rgba(201,168,76,0.12) 0%, transparent 55%);
}

.experiences-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  position: relative;
  z-index: 1;
}

.experience-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  padding: 40px 30px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.experience-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green-light), var(--gold));
  transform: scaleX(0);
  transition: var(--transition);
}

.experience-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(201,168,76,0.25);
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.3);
}
.experience-card:hover::after { transform: scaleX(1); }

.experience-card.featured {
  background: rgba(201,168,76,0.08);
  border-color: rgba(201,168,76,0.25);
}

.experience-number {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: rgba(255,255,255,0.06);
  line-height: 1;
  margin-bottom: 12px;
  user-select: none;
}

.experience-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
  display: block;
}

.experience-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 12px;
}

.experience-card p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.65;
  margin-bottom: 28px;
}

.experience-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold-light);
  transition: var(--transition);
  letter-spacing: 0.04em;
}
.experience-link:hover { gap: 14px; }

/* — FA icon replacing emoji in experience cards — */
.exp-fa-icon {
  font-size: 2.2rem;
  color: var(--gold-light);
  display: block;
}

.exp-icon-row {
  margin-bottom: 18px;
}

/* — External link style — */
.exp-external-link {
  color: var(--gold-light);
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  border: 1px solid rgba(201,168,76,0.35);
  padding: 8px 16px;
  border-radius: 30px;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
}
.exp-external-link:hover {
  background: rgba(201,168,76,0.12);
  border-color: var(--gold-light);
  gap: 12px;
}

/* ---- Mini browser / site preview ---- */
.exp-site-preview {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.10);
  margin-bottom: 22px;
  background: #0a1208;
}

.exp-browser-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.06);
  padding: 8px 12px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.exp-browser-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
  display: inline-block;
}
.exp-browser-dot:nth-child(1) { background: rgba(255, 95, 86, 0.55); }
.exp-browser-dot:nth-child(2) { background: rgba(255, 189, 46, 0.55); }
.exp-browser-dot:nth-child(3) { background: rgba(40, 200, 64, 0.55); }

.exp-browser-url {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.02em;
  margin-left: 6px;
  font-family: 'Inter', monospace;
}

.exp-iframe-wrap {
  position: relative;
  height: 200px;
  overflow: hidden;
}

/* ---- Image preview (replaces iframe) ---- */
.exp-img-wrap {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.exp-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  transition: transform 0.5s ease;
}

.exp-site-preview:hover .exp-img-wrap img {
  transform: scale(1.04);
}

/* Clickable overlay on image */
.exp-iframe-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  cursor: pointer;
}

/* Floating "visit site" badge on image */
.exp-img-badge {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(201,168,76,0.4);
  color: rgba(255,255,255,0.75);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 4px 10px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 5px;
  z-index: 3;
  pointer-events: none;
}

/* ---- Party Bus card ---- */
.exp-partybus-card {
  background: rgba(255,255,255,0.04);
}

.exp-partybus-media {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 22px;
  /* 1:1 square — matches the party bus flyer's native proportion */
  aspect-ratio: 1 / 1;
  width: 100%;
}

.exp-partybus-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.exp-partybus-badge {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background: rgba(0,0,0,0.65);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(201,168,76,0.4);
  color: var(--gold-light);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.exp-inquire-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--green-deep), var(--green-light));
  color: var(--white) !important;
  padding: 11px 22px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: var(--transition);
  text-transform: uppercase;
  margin-top: 4px;
}
.exp-inquire-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(45,106,79,0.4);
  gap: 14px;
}

/* ============================================================
   CALL TO ACTION
   ============================================================ */
.cta-section {
  background: linear-gradient(160deg, var(--beige-mid) 0%, var(--pink-soft) 50%, var(--beige) 100%);
  position: relative;
  overflow: hidden;
}

.cta-bg-decoration {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.cta-bg-decoration svg { width: 100%; height: 100%; }

.cta-content {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.cta-title {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 700;
  margin-bottom: 14px;
}

.cta-subtitle {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 36px;
}

.cta-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 44px;
}

.tag {
  background: var(--white);
  border: 1.5px solid rgba(201,168,76,0.25);
  color: var(--text-body);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: default;
  transition: var(--transition);
}
.tag:hover {
  background: var(--gold-pale);
  border-color: var(--gold);
  transform: scale(1.04);
}

/* Form */
.cta-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 44px 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(201,168,76,0.12);
  text-align: left;
  margin-bottom: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--charcoal);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.form-group input,
.form-group textarea {
  padding: 14px 18px;
  border: 1.5px solid rgba(0,0,0,0.1);
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: var(--charcoal);
  background: var(--beige-mid);
  transition: var(--transition);
  outline: none;
  resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--green-light);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(82,183,136,0.12);
}

.cta-form .btn-gold {
  width: 100%;
  justify-content: center;
  margin-top: 4px;
}

.cta-note {
  font-size: 0.82rem;
  color: var(--text-muted);
  text-align: center;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: linear-gradient(160deg, #151510 0%, #1a1a15 100%);
  color: rgba(255,255,255,0.65);
  padding: 72px 0 36px;
}

.footer-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 36px;
  gap: 12px;
}

.footer .brand-name { color: var(--white); font-size: 1.4rem; }

/* Footer logo */
.footer-logo {
  height: 80px;
  width: auto;
  display: block;
  margin: 0 auto;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.footer-tagline {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.45);
}

.footer-social {
  display: flex;
  gap: 18px;
  margin-top: 8px;
}

.footer-social a {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: rgba(255,255,255,0.7);
  transition: var(--transition);
}
.footer-social a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
  transform: translateY(-3px);
}

.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 28px;
  margin-bottom: 36px;
}

.footer-links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--gold-light); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.82rem;
}

.footer-bottom a {
  color: rgba(255,255,255,0.4);
  transition: color var(--transition);
}
.footer-bottom a:hover { color: var(--gold-light); }

.footer-savings {
  color: var(--gold);
  font-weight: 500;
}

/* ============================================================
   FLOATING BOOK BUTTON
   ============================================================ */
.float-book {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--white);
  padding: 14px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  box-shadow: 0 6px 28px rgba(201,168,76,0.45);
  transition: var(--transition);
  text-decoration: none;
  letter-spacing: 0.03em;
  transform: translateY(100px);
  opacity: 0;
}

.float-book.visible {
  transform: translateY(0);
  opacity: 1;
}

.float-book:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 10px 36px rgba(201,168,76,0.55);
}

.float-icon { font-size: 1.2rem; }

/* ============================================================
   TOAST NOTIFICATION
   ============================================================ */
.toast {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%) translateY(120px);
  background: var(--green-deep);
  color: var(--white);
  padding: 16px 28px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
  z-index: 9999;
  transition: transform 0.4s cubic-bezier(0.25,0.8,0.25,1);
  white-space: nowrap;
}
.toast.show {
  transform: translateX(-50%) translateY(0);
}
.toast i { color: #74e8a3; font-size: 1.1rem; }

/* ============================================================
   ANIMATION HELPERS
   ============================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   RESPONSIVE — TABLET (max 1024px)
   ============================================================ */
@media (max-width: 1024px) {
  .perks-grid,
  .services-grid,
  .experiences-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .returning-perks {
    padding: 44px 40px;
  }
}

/* ============================================================
   RESPONSIVE — MOBILE (max 768px)
   ============================================================ */
@media (max-width: 768px) {
  .section { padding: 72px 0; }

  /* Nav mobile */
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    top: 0; left: 0; right: 0;
    height: 100vh;
    background: var(--charcoal);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 32px;
    transform: translateX(100%);
    transition: transform 0.4s ease;
    z-index: 998;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { color: var(--white) !important; font-size: 1.1rem; }
  .nav-cta-btn { font-size: 1rem !important; padding: 14px 32px !important; }

  /* Hero */
  .hero-buttons { flex-direction: column; align-items: center; }
  .btn { width: 100%; max-width: 340px; justify-content: center; }
  .palm { width: 150px; }

  /* Grids → single column */
  .perks-grid,
  .guide-grid,
  .services-grid,
  .experiences-grid {
    grid-template-columns: 1fr;
  }

  /* Form */
  .form-row { grid-template-columns: 1fr; }
  .cta-form { padding: 30px 22px; }

  /* Returning perks */
  .returning-perks {
    padding: 36px 24px;
  }

  /* Float btn */
  .float-book .float-text { display: none; }
  .float-book {
    width: 56px; height: 56px;
    border-radius: 50%;
    padding: 0;
    justify-content: center;
  }
  .float-icon { font-size: 1.5rem; margin: 0; }

  /* Footer */
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* ============================================================
   RESPONSIVE — SMALL MOBILE (max 480px)
   ============================================================ */
@media (max-width: 480px) {
  .hero-title { font-size: 2.2rem; }
  .section-title { font-size: 1.75rem; }
  .cta-title { font-size: 1.8rem; }

  .perk-card,
  .service-card,
  .experience-card {
    padding: 28px 20px;
  }

  .returning-perk { gap: 16px; }
  .returning-icon { width: 52px; height: 52px; font-size: 1.8rem; }
}

/* ============================================================
   PERK CARD — CLICKABLE / GALLERY TRIGGER
   ============================================================ */
.perk-clickable {
  cursor: pointer;
  position: relative;
}
.perk-clickable:focus-visible {
  outline: 2px solid var(--green-mid);
  outline-offset: 3px;
}
.perk-photo-hint {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--green-deep);
  background: rgba(82,183,136,0.12);
  border: 1px solid rgba(82,183,136,0.3);
  border-radius: 20px;
  padding: 4px 12px;
  transition: background 0.2s, color 0.2s;
}
.perk-clickable:hover .perk-photo-hint {
  background: var(--green-deep);
  color: var(--white);
  border-color: var(--green-deep);
}

/* ============================================================
   PHOTO LIGHTBOX
   ============================================================ */
.perk-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.perk-lightbox.open {
  display: flex;
}
.lb-inner {
  position: relative;
  max-width: 960px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.lb-img-wrap {
  width: 100%;
  max-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  overflow: hidden;
  background: rgba(255,255,255,0.03);
}
.lb-img-wrap img {
  max-width: 100%;
  max-height: 80vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
  transition: opacity 0.25s ease;
  display: block;
}
.lb-caption {
  text-align: center;
  color: rgba(255,255,255,0.75);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.lb-caption p {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  line-height: 1.5;
  color: rgba(255,255,255,0.8);
}
.lb-counter {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.06em;
}
.lb-close {
  position: fixed;
  top: 20px;
  right: 24px;
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.12);
  border: 1.5px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  color: #fff;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
  z-index: 10000;
}
.lb-close:hover { background: rgba(255,255,255,0.25); }
.lb-prev,
.lb-next {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 48px; height: 48px;
  background: rgba(255,255,255,0.1);
  border: 1.5px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  color: #fff;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, transform 0.2s;
  z-index: 10000;
}
.lb-prev { left: 16px; }
.lb-next { right: 16px; }
.lb-prev:hover { background: rgba(255,255,255,0.22); transform: translateY(-50%) translateX(-2px); }
.lb-next:hover { background: rgba(255,255,255,0.22); transform: translateY(-50%) translateX(2px); }

@media (max-width: 600px) {
  .lb-prev { left: 6px; }
  .lb-next { right: 6px; }
  .lb-prev, .lb-next { width: 38px; height: 38px; font-size: 0.95rem; }
}
