/* ========================================
   SPLASH HEAVEN ULTRA LUX POOL VILLA
   Design System & Styles — V2 (Polished)
   ======================================== */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400&family=Montserrat:wght@300;400;500;600;700&display=swap');

/* ---------- CSS Custom Properties ---------- */
:root {
  /* Palette */
  --clr-forest: #1a3c2a;
  --clr-forest-90: rgba(26, 60, 42, 0.92);
  --clr-forest-70: rgba(26, 60, 42, 0.70);
  --clr-forest-40: rgba(26, 60, 42, 0.40);
  --clr-forest-15: rgba(26, 60, 42, 0.15);
  --clr-cream: #f5f0e8;
  --clr-cream-dark: #ebe4d6;
  --clr-gold: #c9a962;
  --clr-gold-light: #dcc588;
  --clr-gold-glow: rgba(201, 169, 98, 0.15);
  --clr-charcoal: #2c2c2c;
  --clr-white: #fafaf7;
  --clr-black: #111;
  --clr-overlay: rgba(17, 17, 17, 0.55);
  --clr-overlay-heavy: rgba(17, 17, 17, 0.72);

  /* Typography — increased hierarchy contrast */
  --ff-heading: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --ff-body: 'Montserrat', 'Segoe UI', Tahoma, sans-serif;

  --fs-hero: clamp(3.2rem, 7vw, 6rem);
  --fs-h2: clamp(2.2rem, 4.5vw, 3.6rem);
  --fs-h3: clamp(1.3rem, 2.5vw, 1.75rem);
  --fs-body: clamp(0.92rem, 1.1vw, 1.05rem);
  --fs-small: 0.85rem;
  --fs-xs: 0.78rem;

  /* Spacing — increased breathing room */
  --section-py: clamp(5.5rem, 10vw, 9rem);
  --container: min(88%, 1240px);

  /* Transitions */
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --dur: 0.4s;
  --dur-slow: 0.7s;

  /* Borders & Shadows — deeper layered shadows */
  --radius: 14px;
  --radius-sm: 8px;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.04), 0 4px 12px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.06), 0 12px 36px rgba(0, 0, 0, 0.10);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.08), 0 24px 72px rgba(0, 0, 0, 0.12);
  --shadow-xl: 0 12px 36px rgba(0, 0, 0, 0.10), 0 40px 100px rgba(0, 0, 0, 0.16);
  --shadow-gold: 0 4px 24px rgba(201, 169, 98, 0.30);
  --shadow-inset: inset 0 2px 4px rgba(0, 0, 0, 0.04);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--ff-body);
  font-size: var(--fs-body);
  font-weight: 400;
  line-height: 1.75;
  color: var(--clr-charcoal);
  background: var(--clr-white);
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  image-rendering: auto;
  -webkit-image-rendering: auto;
}

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

ul {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* ---------- Typography ---------- */
h1,
h2,
h3,
h4 {
  font-family: var(--ff-heading);
  font-weight: 500;
  line-height: 1.15;
  color: var(--clr-forest);
}

h2 {
  font-size: var(--fs-h2);
  margin-bottom: 0.5em;
  letter-spacing: -0.01em;
}

h3 {
  font-size: var(--fs-h3);
}

.section-subtitle {
  font-family: var(--ff-body);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--clr-gold);
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1rem;
}

.section-subtitle::before,
.section-subtitle::after {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--clr-gold);
}

.section-desc {
  max-width: 600px;
  margin: 0 auto 3.5rem;
  color: #777;
  text-align: center;
  line-height: 1.85;
  font-size: var(--fs-small);
}

/* ---------- Utility ---------- */
.container {
  width: var(--container);
  margin: 0 auto;
}

.text-center {
  text-align: center;
}

.section-padding {
  padding: var(--section-py) 0;
}

/* ---------- Decorative Section Divider ---------- */
.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 0;
}

.section-divider::before,
.section-divider::after {
  content: '';
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--clr-gold));
}

.section-divider::after {
  background: linear-gradient(90deg, var(--clr-gold), transparent);
}

.section-divider .diamond {
  width: 8px;
  height: 8px;
  background: var(--clr-gold);
  transform: rotate(45deg);
  flex-shrink: 0;
}

/* ---------- Scroll Reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.9s var(--ease-out),
    transform 0.9s var(--ease-out);
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 0.9s var(--ease-out),
    transform 0.9s var(--ease-out);
}

.reveal-left.revealed {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.9s var(--ease-out),
    transform 0.9s var(--ease-out);
}

.reveal-right.revealed {
  opacity: 1;
  transform: translateX(0);
}

/* ========================================
   NAVIGATION
   ======================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.2rem 0;
  transition: background var(--dur) var(--ease),
    padding var(--dur) var(--ease),
    box-shadow var(--dur) var(--ease);
}

.navbar.scrolled {
  background: rgba(26, 60, 42, 0.97);
  backdrop-filter: blur(20px) saturate(1.2);
  -webkit-backdrop-filter: blur(20px) saturate(1.2);
  padding: 0.6rem 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.20);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.nav-logo-icon {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-logo-icon svg {
  width: 100%;
  height: 100%;
}

.nav-logo-text {
  font-family: var(--ff-heading);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--clr-white);
  letter-spacing: 0.5px;
  line-height: 1.2;
}

.nav-logo-text span {
  display: block;
  font-family: var(--ff-body);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--clr-gold);
  margin-top: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.2rem;
}

.nav-links a {
  font-size: var(--fs-small);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.5px;
  position: relative;
  transition: color var(--dur) var(--ease);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--clr-gold);
  transition: width var(--dur) var(--ease);
}

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

.nav-links a:hover::after {
  width: 100%;
}

.btn-book {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.8rem;
  font-family: var(--ff-body);
  font-size: var(--fs-small);
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--clr-forest);
  background: var(--clr-gold);
  border-radius: 50px;
  transition: all var(--dur) var(--ease);
}

.btn-book:hover {
  background: var(--clr-gold-light);
  box-shadow: var(--shadow-gold);
  transform: translateY(-2px);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--clr-white);
  border-radius: 2px;
  transition: all 0.3s var(--ease);
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ========================================
   HERO — Strengthened
   ======================================== */
.hero {
  position: relative;
  height: 100vh;
  height: 100dvh;
  min-height: 650px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: -5%;
  z-index: -2;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  filter: brightness(1.05) contrast(1.05) saturate(1.1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(26, 60, 42, 0.15) 0%, transparent 60%),
    linear-gradient(180deg,
      rgba(17, 17, 17, 0.25) 0%,
      rgba(26, 60, 42, 0.45) 30%,
      rgba(26, 60, 42, 0.55) 60%,
      rgba(17, 17, 17, 0.70) 100%);
}

.hero-content {
  text-align: center;
  color: var(--clr-white);
  z-index: 2;
  max-width: 900px;
  padding: 0 1.5rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background: rgba(201, 169, 98, 0.15);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(201, 169, 98, 0.35);
  border-radius: 50px;
  padding: 0.65rem 1.6rem;
  margin-bottom: 2.2rem;
  font-size: var(--fs-small);
  font-weight: 600;
  animation: fadeInDown 1s var(--ease-out) 0.3s both;
}

.hero-badge .stars {
  color: var(--clr-gold);
  font-size: 1.1rem;
}

.hero-location {
  display: block;
  font-family: var(--ff-body);
  font-size: var(--fs-xs);
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 1rem;
  animation: fadeInUp 1s var(--ease-out) 0.4s both;
}

.hero-title {
  font-size: var(--fs-hero);
  color: var(--clr-white);
  font-weight: 300;
  line-height: 1.05;
  margin-bottom: 1.5rem;
  animation: fadeInUp 1s var(--ease-out) 0.5s both;
  text-shadow: 0 4px 40px rgba(0, 0, 0, 0.3);
}

.hero-title strong {
  font-weight: 700;
  display: block;
  background: linear-gradient(135deg, var(--clr-white) 0%, var(--clr-gold-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-tagline {
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2.8rem;
  letter-spacing: 0.3px;
  line-height: 1.7;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
  animation: fadeInUp 1s var(--ease-out) 0.7s both;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  flex-wrap: wrap;
  animation: fadeInUp 1s var(--ease-out) 0.9s both;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1.1rem 2.8rem;
  font-family: var(--ff-body);
  font-size: var(--fs-small);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--clr-forest);
  background: linear-gradient(135deg, var(--clr-gold) 0%, var(--clr-gold-light) 100%);
  border-radius: 50px;
  transition: all var(--dur) var(--ease);
  box-shadow: 0 4px 20px rgba(201, 169, 98, 0.3);
}

.btn-primary:hover {
  box-shadow: 0 8px 32px rgba(201, 169, 98, 0.45);
  transform: translateY(-3px);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1.1rem 2.8rem;
  font-family: var(--ff-body);
  font-size: var(--fs-small);
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--clr-white);
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  border-radius: 50px;
  transition: all var(--dur) var(--ease);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.6);
  transform: translateY(-3px);
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.5);
  font-size: var(--fs-xs);
  letter-spacing: 3px;
  text-transform: uppercase;
  animation: float 2.5s ease-in-out infinite;
}

.hero-scroll .scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.5), transparent);
}

/* ========================================
   TRUST BAR — Prominent proof section
   ======================================== */
.trust-bar {
  background: var(--clr-forest);
  padding: 1.8rem 0;
  position: relative;
  overflow: hidden;
}

.trust-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
      rgba(201, 169, 98, 0.05) 0%,
      rgba(201, 169, 98, 0.1) 50%,
      rgba(201, 169, 98, 0.05) 100%);
  pointer-events: none;
}

.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: rgba(255, 255, 255, 0.9);
}

.trust-item-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(201, 169, 98, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.trust-item-icon svg {
  width: 18px;
  height: 18px;
  color: var(--clr-gold);
}

.trust-item-text strong {
  display: block;
  font-family: var(--ff-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--clr-white);
  line-height: 1.1;
}

.trust-item-text span {
  font-size: var(--fs-xs);
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.5px;
  font-weight: 500;
}

.trust-divider {
  width: 1px;
  height: 36px;
  background: rgba(255, 255, 255, 0.12);
}

/* ========================================
   ABOUT
   ======================================== */
.about {
  background: var(--clr-white);
  position: relative;
}

.about::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(270deg, var(--clr-cream) 0%, transparent 100%);
  opacity: 0.5;
  pointer-events: none;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 5rem;
  align-items: center;
  position: relative;
}

.about-image {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.about-image img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  filter: contrast(1.03) saturate(1.05);
  transition: transform 0.8s var(--ease);
}

.about-image:hover img {
  transform: scale(1.03);
}

.about-image-accent {
  position: absolute;
  bottom: -18px;
  right: -18px;
  width: 140px;
  height: 140px;
  border: 3px solid var(--clr-gold);
  border-radius: var(--radius);
  z-index: -1;
  opacity: 0.6;
}

.about-image-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: rgba(26, 60, 42, 0.92);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(201, 169, 98, 0.3);
  border-radius: var(--radius-sm);
  padding: 1rem 1.4rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  z-index: 2;
}

.about-image-badge .badge-rating {
  font-family: var(--ff-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--clr-white);
  line-height: 1;
}

.about-image-badge .badge-stars {
  color: var(--clr-gold);
  font-size: 0.8rem;
  display: block;
}

.about-image-badge .badge-text {
  font-size: var(--fs-xs);
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}

.about-text h2 {
  margin-bottom: 1.5rem;
}

.about-text p {
  color: #666;
  margin-bottom: 1.2rem;
  line-height: 1.85;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-family: var(--ff-heading);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--clr-forest);
  line-height: 1;
}

.stat-number .gold {
  color: var(--clr-gold);
}

.stat-label {
  font-size: var(--fs-xs);
  font-weight: 600;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 0.3rem;
}

/* ========================================
   PROPERTY HIGHLIGHTS
   ======================================== */
.highlights {
  background: var(--clr-cream);
  position: relative;
}

.highlights::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--clr-gold), transparent);
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
}

.highlight-card {
  background: var(--clr-white);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all var(--dur) var(--ease);
  position: relative;
  overflow: hidden;
}

.highlight-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--clr-gold), var(--clr-gold-light));
  transform: scaleX(0);
  transition: transform var(--dur) var(--ease);
}

.highlight-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.highlight-card:hover::before {
  transform: scaleX(1);
}

.highlight-icon {
  width: 68px;
  height: 68px;
  margin: 0 auto 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--clr-cream);
  border-radius: 50%;
  color: var(--clr-forest);
  transition: all var(--dur) var(--ease);
  box-shadow: var(--shadow-inset);
}

.highlight-card:hover .highlight-icon {
  background: var(--clr-forest);
  color: var(--clr-gold);
  box-shadow: 0 4px 16px rgba(26, 60, 42, 0.25);
}

.highlight-icon svg {
  width: 28px;
  height: 28px;
}

.highlight-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.6rem;
  font-weight: 600;
}

.highlight-card p {
  font-size: var(--fs-small);
  color: #888;
  line-height: 1.7;
}

/* ========================================
   GALLERY — Cleaner layout, fewer items
   ======================================== */
.gallery {
  background: var(--clr-white);
  position: relative;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 280px;
  gap: 10px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.02) saturate(1.05);
  transition: transform 0.7s var(--ease), filter 0.4s var(--ease);
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 60, 42, 0.55) 0%, transparent 50%);
  opacity: 0;
  transition: opacity var(--dur) var(--ease);
}

.gallery-item:hover img {
  transform: scale(1.06);
  filter: contrast(1.05) saturate(1.1) brightness(1.02);
}

.gallery-item:hover::after {
  opacity: 1;
}

.gallery-item .gallery-zoom {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  color: var(--clr-white);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0;
  transition: all var(--dur) var(--ease);
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.gallery-item:hover .gallery-zoom {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* Featured items span more grid cells */
.gallery-item.featured {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item.tall {
  grid-row: span 2;
}

.gallery-item.wide {
  grid-column: span 2;
}

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.94);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s var(--ease);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-img {
  max-width: 88%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
  box-shadow: 0 0 80px rgba(0, 0, 0, 0.6);
  transform: scale(0.90);
  transition: transform 0.4s var(--ease-out);
}

.lightbox.active .lightbox-img {
  transform: scale(1);
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  color: var(--clr-white);
  font-size: 2rem;
  cursor: pointer;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  transition: background var(--dur) var(--ease);
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.18);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: var(--clr-white);
  font-size: 2.5rem;
  cursor: pointer;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  transition: background var(--dur) var(--ease);
}

.lightbox-nav:hover {
  background: rgba(255, 255, 255, 0.15);
}

.lightbox-prev {
  left: 2rem;
}

.lightbox-next {
  right: 2rem;
}

.lightbox-counter {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.5);
  font-size: var(--fs-small);
  font-weight: 500;
  letter-spacing: 3px;
}

/* ========================================
   EXPERIENCES (Amenities Clusters)
   ======================================== */
.experiences {
  background: var(--clr-forest);
  color: var(--clr-white);
  position: relative;
  overflow: hidden;
}

.experiences::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -15%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(201, 169, 98, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.experiences::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(201, 169, 98, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.experiences h2 {
  color: var(--clr-white);
}

.experiences .section-desc {
  color: rgba(255, 255, 255, 0.55);
}

.experiences .section-subtitle::before,
.experiences .section-subtitle::after {
  background: rgba(201, 169, 98, 0.5);
}

.exp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.exp-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  transition: all var(--dur) var(--ease);
  position: relative;
}

.exp-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background: var(--clr-gold);
  border-radius: 2px;
  opacity: 0;
  transition: all var(--dur) var(--ease);
}

.exp-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(201, 169, 98, 0.25);
  transform: translateY(-4px);
}

.exp-card:hover::before {
  opacity: 1;
  width: 60px;
}

.exp-card-icon {
  width: 52px;
  height: 52px;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-gold);
}

.exp-card-icon svg {
  width: 36px;
  height: 36px;
}

.exp-card h3 {
  color: var(--clr-white);
  font-size: 1.35rem;
  margin-bottom: 1.2rem;
  font-weight: 600;
}

.exp-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.exp-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  font-size: var(--fs-small);
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.5;
}

.exp-list li::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--clr-gold);
  flex-shrink: 0;
  margin-top: 0.5rem;
}

/* ========================================
   REVIEWS
   ======================================== */
.reviews {
  background: var(--clr-cream);
  position: relative;
  overflow: hidden;
}

.reviews::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--clr-gold), transparent);
}

.reviews-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.reviews-rating {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 0.5rem;
}

.rating-big {
  font-family: var(--ff-heading);
  font-size: 4.5rem;
  font-weight: 700;
  color: var(--clr-forest);
  line-height: 1;
}

.rating-meta .rating-stars {
  color: var(--clr-gold);
  font-size: 1.2rem;
  margin-bottom: 0.2rem;
}

.rating-meta .rating-count {
  font-size: var(--fs-small);
  color: #888;
  font-weight: 500;
}

.reviews-nav {
  display: flex;
  gap: 0.8rem;
}

.review-nav-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1.5px solid var(--clr-forest-40);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-forest);
  transition: all var(--dur) var(--ease);
}

.review-nav-btn:hover {
  background: var(--clr-forest);
  color: var(--clr-white);
  border-color: var(--clr-forest);
}

.reviews-track-wrapper {
  overflow: hidden;
  margin: 0 -1rem;
  padding: 0 1rem;
}

.reviews-track {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.5s var(--ease-out);
}

.review-card {
  flex: 0 0 calc(33.333% - 1rem);
  background: var(--clr-white);
  border-radius: var(--radius);
  padding: 2.2rem;
  box-shadow: var(--shadow-sm);
  position: relative;
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.review-card::before {
  content: '"';
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-family: var(--ff-heading);
  font-size: 5rem;
  color: var(--clr-gold);
  opacity: 0.12;
  line-height: 1;
}

.review-stars {
  color: var(--clr-gold);
  font-size: 0.85rem;
  margin-bottom: 1rem;
  letter-spacing: 2px;
}

.review-text {
  font-size: var(--fs-small);
  color: #666;
  line-height: 1.85;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.review-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--clr-forest);
  color: var(--clr-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: var(--fs-small);
}

.review-name {
  font-weight: 600;
  font-size: var(--fs-small);
  color: var(--clr-charcoal);
}

.review-source {
  font-size: var(--fs-xs);
  color: #999;
}

/* ========================================
   LOCATION
   ======================================== */
.location {
  background: var(--clr-white);
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.location-map {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  height: 440px;
}

.location-map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.location-info h3 {
  margin-bottom: 1.5rem;
}

.location-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.location-detail:last-child {
  border-bottom: none;
}

.location-icon {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--clr-cream);
  color: var(--clr-forest);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-inset);
}

.location-icon svg {
  width: 18px;
  height: 18px;
}

.location-detail-text h4 {
  font-family: var(--ff-body);
  font-size: var(--fs-small);
  font-weight: 600;
  color: var(--clr-charcoal);
  margin-bottom: 0.2rem;
}

.location-detail-text p {
  font-size: var(--fs-small);
  color: #777;
  line-height: 1.6;
}

.proximity-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 2rem;
}

.proximity-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1rem;
  background: var(--clr-cream);
  border-radius: 50px;
  font-size: var(--fs-xs);
  font-weight: 600;
  color: var(--clr-forest);
  box-shadow: var(--shadow-inset);
}

.location-directions-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 2rem;
  margin-top: 2rem;
  font-family: var(--ff-body);
  font-size: var(--fs-small);
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--clr-forest);
  background: linear-gradient(135deg, var(--clr-gold) 0%, var(--clr-gold-light) 100%);
  border-radius: 50px;
  transition: all var(--dur) var(--ease);
  box-shadow: 0 4px 20px rgba(201, 169, 98, 0.25);
}

.location-directions-btn:hover {
  box-shadow: 0 8px 32px rgba(201, 169, 98, 0.4);
  transform: translateY(-3px);
}

.location-directions-btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* ========================================
   WHATSAPP FLOATING BUTTON
   ======================================== */
.whatsapp-float {
  position: fixed;
  bottom: 1.8rem;
  right: 1.8rem;
  z-index: 999;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 18px rgba(37, 211, 102, 0.45), 0 8px 32px rgba(0, 0, 0, 0.15);
  transition: all var(--dur) var(--ease);
  animation: whatsappPulse 2.5s ease-in-out infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.55), 0 12px 40px rgba(0, 0, 0, 0.2);
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
}

@keyframes whatsappPulse {

  0%,
  100% {
    box-shadow: 0 4px 18px rgba(37, 211, 102, 0.45), 0 8px 32px rgba(0, 0, 0, 0.15);
  }

  50% {
    box-shadow: 0 4px 18px rgba(37, 211, 102, 0.45), 0 8px 32px rgba(0, 0, 0, 0.15), 0 0 0 12px rgba(37, 211, 102, 0.15);
  }
}

/* ========================================
   BOOKING CTA
   ======================================== */
.booking-cta {
  position: relative;
  padding: var(--section-py) 0;
  overflow: hidden;
}

.booking-cta-bg {
  position: absolute;
  inset: -5%;
  z-index: -2;
}

.booking-cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(1.05) saturate(1.1);
}

.booking-cta-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg,
      rgba(26, 60, 42, 0.80) 0%,
      rgba(17, 17, 17, 0.75) 100%);
}

.booking-cta-content {
  text-align: center;
  color: var(--clr-white);
  max-width: 700px;
  margin: 0 auto;
}

.booking-cta-content h2 {
  color: var(--clr-white);
  margin-bottom: 1rem;
}

.booking-cta-content .section-subtitle::before,
.booking-cta-content .section-subtitle::after {
  background: rgba(201, 169, 98, 0.5);
}

.booking-cta-content p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 2.5rem;
  font-size: var(--fs-body);
  line-height: 1.85;
}

.booking-details {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.booking-detail {
  text-align: center;
  padding: 0 1.5rem;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.booking-detail:last-child {
  border-right: none;
}

.booking-detail-label {
  font-size: var(--fs-xs);
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--clr-gold);
  font-weight: 700;
  margin-bottom: 0.3rem;
}

.booking-detail-value {
  font-family: var(--ff-heading);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--clr-white);
}

.btn-cta-large {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 1.2rem 3.2rem;
  font-family: var(--ff-body);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--clr-forest);
  background: linear-gradient(135deg, var(--clr-gold), var(--clr-gold-light));
  border-radius: 50px;
  transition: all var(--dur) var(--ease);
  box-shadow: 0 4px 24px rgba(201, 169, 98, 0.3);
}

.btn-cta-large:hover {
  box-shadow: 0 8px 40px rgba(201, 169, 98, 0.5);
  transform: translateY(-3px);
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
  background: var(--clr-black);
  color: rgba(255, 255, 255, 0.6);
  padding: 4.5rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-brand .nav-logo-text {
  font-size: 1.6rem;
  margin-bottom: 1rem;
}

.footer-brand p {
  font-size: var(--fs-small);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  color: rgba(255, 255, 255, 0.4);
}

.footer-social {
  display: flex;
  gap: 0.8rem;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  transition: all var(--dur) var(--ease);
}

.footer-social a:hover {
  background: var(--clr-gold);
  border-color: var(--clr-gold);
  color: var(--clr-forest);
}

.footer-col h4 {
  font-family: var(--ff-body);
  font-size: var(--fs-xs);
  font-weight: 700;
  color: var(--clr-white);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 1.5rem;
}

.footer-col ul li {
  margin-bottom: 0.7rem;
}

.footer-col ul li a {
  font-size: var(--fs-small);
  color: rgba(255, 255, 255, 0.4);
  transition: color var(--dur) var(--ease);
}

.footer-col ul li a:hover {
  color: var(--clr-gold);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
  font-size: var(--fs-xs);
  flex-wrap: wrap;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.3);
}

.footer-bottom a {
  color: var(--clr-gold);
}

/* ========================================
   ANIMATIONS
   ======================================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(35px);
  }

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

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-25px);
  }

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

@keyframes float {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(-10px);
  }
}

/* ========================================
   RESPONSIVE
   ======================================== */

/* ----- Tablet ----- */
@media (max-width: 1024px) {
  .highlights-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .exp-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 240px;
  }

  .review-card {
    flex: 0 0 calc(50% - 0.75rem);
  }

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

  .trust-bar-inner {
    gap: 2rem;
  }

  .trust-divider {
    display: none;
  }
}

/* ----- Mobile ----- */
@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--clr-forest);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 2rem 2.5rem;
    gap: 1.5rem;
    transition: right 0.4s var(--ease-out);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.3);
  }

  .nav-links.open {
    right: 0;
  }

  .nav-links a {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
  }

  .nav-toggle {
    display: flex;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .about-image img {
    height: 350px;
  }

  .about-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }

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

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 200px;
  }

  .gallery-item.featured {
    grid-column: span 2;
    grid-row: span 1;
  }

  .gallery-item.tall {
    grid-row: span 1;
  }

  .review-card {
    flex: 0 0 calc(100% - 1rem);
  }

  .reviews-header {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .location-map {
    height: 300px;
    order: -1;
  }

  .booking-details {
    gap: 1.5rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

  .hero-title {
    font-size: clamp(2.4rem, 9vw, 3.8rem);
  }

  .trust-bar-inner {
    flex-direction: column;
    gap: 1.2rem;
  }

  .section-subtitle::before,
  .section-subtitle::after {
    width: 16px;
  }

  .booking-detail {
    border-right: none;
    padding: 0;
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 170px;
  }

  .gallery-item.featured,
  .gallery-item.wide {
    grid-column: span 2;
  }

  .about-stats {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .booking-details {
    flex-direction: column;
    gap: 1rem;
  }

  .lightbox-nav {
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
  }

  .lightbox-prev {
    left: 0.5rem;
  }

  .lightbox-next {
    right: 0.5rem;
  }
}