/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  /* NEW COLOR SCHEME: Deep Teal + Amber + Ivory */
  --green: #0d4f5c;
  --green-light: #1a6b7a;
  --green-dark: #072d36;
  --gold: #e8a020;
  --gold-light: #f5c050;
  --gold-dark: #b87a10;
  --white: #ffffff;
  --beige: #f0f7f8;
  --beige-dark: #d8edf0;
  --accent: #2a9d8f;
  --accent-light: #3dbdad;
  --text: #1a2e35;
  --text-light: #5a7a82;
  --radius: 16px;
  --radius-lg: 24px;
  --shadow: 0 8px 32px rgba(7,45,54,0.12);
  --shadow-lg: 0 16px 48px rgba(7,45,54,0.2);
  --transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
}
html { scroll-behavior: smooth; }
body { font-family: 'Poppins', sans-serif; color: var(--text); background: var(--white); overflow-x: clip; }
h1,h2,h3,h4,h5 { font-family: 'Playfair Display', serif; line-height: 1.2; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 5rem 0; }
.text-center { text-align: center; }

/* ===== PRELOADER ===== */
#preloader {
  position: fixed; inset: 0; z-index: 9999;
  background: #041c22;
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.7s ease, visibility 0.7s ease;
  overflow: hidden;
}
#preloader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }

/* Animated background rings */
.preloader-bg {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  pointer-events: none;
}
.preloader-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(232,160,32,0.15);
  animation: ringPulse 3s ease-in-out infinite;
}
.preloader-ring:nth-child(1) { width: 200px; height: 200px; animation-delay: 0s; }
.preloader-ring:nth-child(2) { width: 320px; height: 320px; animation-delay: 0.4s; border-color: rgba(232,160,32,0.1); }
.preloader-ring:nth-child(3) { width: 440px; height: 440px; animation-delay: 0.8s; border-color: rgba(232,160,32,0.06); }
@keyframes ringPulse {
  0%, 100% { transform: scale(0.95); opacity: 0.4; }
  50% { transform: scale(1.05); opacity: 1; }
}

.preloader-inner { position: relative; z-index: 1; text-align: center; }

/* Leaf / nature icon */
.preloader-icon {
  width: 72px; height: 72px;
  margin: 0 auto 1.5rem;
  position: relative;
}
.preloader-icon svg {
  width: 100%; height: 100%;
  animation: iconSpin 4s linear infinite;
}
@keyframes iconSpin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
.preloader-icon-center {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  animation: iconBounce 2s ease-in-out infinite;
}
@keyframes iconBounce {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.15); }
}

/* Logo text */
.preloader-logo { margin-bottom: 2rem; }
.logo-text {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem; color: var(--gold);
  letter-spacing: 3px;
  animation: logoReveal 0.9s cubic-bezier(0.22,1,0.36,1) 0.3s both;
}
.logo-text span { color: var(--accent-light); }
.logo-sub {
  display: block; font-size: 0.72rem;
  color: rgba(255,255,255,0.45);
  letter-spacing: 5px; text-transform: uppercase;
  margin-top: 0.4rem;
  animation: logoReveal 0.9s cubic-bezier(0.22,1,0.36,1) 0.5s both;
}
@keyframes logoReveal {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Progress bar */
.preloader-progress {
  width: 180px; margin: 0 auto;
  position: relative;
}
.preloader-bar {
  width: 100%; height: 2px;
  background: rgba(255,255,255,0.08);
  border-radius: 2px; overflow: hidden;
}
.preloader-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent), var(--gold), var(--gold-light));
  background-size: 200% 100%;
  border-radius: 2px;
  animation: fillBar 2.2s cubic-bezier(0.4,0,0.2,1) forwards,
             shimmerBar 1.5s linear 0.5s infinite;
}
@keyframes fillBar { from { width: 0; } to { width: 100%; } }
@keyframes shimmerBar {
  0%   { background-position: 200% center; }
  100% { background-position: -200% center; }
}
.preloader-pct {
  font-size: 0.7rem; color: rgba(255,255,255,0.3);
  letter-spacing: 2px; margin-top: 0.75rem;
  animation: countUp 2.2s ease forwards;
}
@keyframes countUp {
  0%   { content: '0%'; }
  100% { content: '100%'; }
}

/* ===== NAVBAR ===== */
#navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 500;
  background: rgba(7,45,54,0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 2px 20px rgba(4,28,34,0.35);
  transition: box-shadow 0.3s ease;
}
#navbar.scrolled { box-shadow: 0 4px 32px rgba(4,28,34,0.55); }

.nav-container {
  max-width: 1200px; margin: 0 auto; padding: 0 1.5rem;
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
}
.nav-logo { display: flex; flex-direction: column; flex-shrink: 0; text-decoration: none; }
.logo-main { font-family: 'Playfair Display', serif; font-size: 1.4rem; color: var(--gold); font-weight: 700; line-height: 1; }
.logo-tagline { font-size: 0.65rem; color: rgba(255,255,255,0.6); letter-spacing: 3px; text-transform: uppercase; }

/* Desktop nav */
.nav-links { display: flex; align-items: center; gap: 0.2rem; }
.nav-links a { color: rgba(255,255,255,0.85); font-size: 0.85rem; font-weight: 400; padding: 0.5rem 0.8rem; border-radius: 8px; transition: var(--transition); text-decoration: none; }
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-links .nav-cta { background: linear-gradient(135deg, var(--gold), var(--gold-dark)); color: var(--green-dark) !important; font-weight: 600; padding: 0.5rem 1.2rem; border-radius: 50px; }
.nav-links .nav-cta:hover { box-shadow: 0 0 24px rgba(232,160,32,0.5); transform: translateY(-1px); }

/* Hamburger — desktop hidden */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 42px; height: 42px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 8px;
  cursor: pointer;
  flex-shrink: 0;
  padding: 0;
  z-index: 9999; /* always on top */
}
.nav-toggle span {
  display: block;
  width: 20px; height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
  pointer-events: none;
}

/* ── SIDEBAR DRAWER ── */
.nav-sidebar {
  display: none; /* JS controls visibility */
  position: fixed;
  top: 0; left: 0;
  width: 80vw;
  max-width: 300px;
  height: 100%;
  min-height: 100vh;
  background: linear-gradient(180deg, #041c22 0%, #072d36 60%, #051e26 100%);
  z-index: 9000;
  transform: translateX(-100%);
  transition: transform 0.4s ease;
  overflow-y: auto;
  overflow-x: hidden;
  box-shadow: 6px 0 40px rgba(0,0,0,0.6);
  padding: 0;
  flex-direction: column;
}
.nav-sidebar.open {
  transform: translateX(0);
}

/* Sidebar header */
.sidebar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.25rem 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  min-height: 68px;
}
.sidebar-logo { font-family: 'Playfair Display', serif; font-size: 1.2rem; color: var(--gold); font-weight: 700; }
.sidebar-close {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  color: rgba(255,255,255,0.7);
  font-size: 1.1rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, color 0.2s;
  flex-shrink: 0;
}
.sidebar-close:hover { background: rgba(232,160,32,0.2); color: var(--gold); }

/* Sidebar nav items */
.sidebar-nav {
  padding: 1rem 1rem 0;
  flex: 1;
}
.sidebar-nav a {
  display: flex;
  align-items: center;
  padding: 14px 16px;
  font-size: 0.95rem;
  font-weight: 400;
  color: rgba(255,255,255,0.8);
  border-radius: 10px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, padding-left 0.2s;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  letter-spacing: 0.2px;
}
.sidebar-nav a:last-child { border-bottom: none; }
.sidebar-nav a:hover { background: rgba(232,160,32,0.1); color: var(--gold); padding-left: 22px; }
.sidebar-nav a.active { background: rgba(232,160,32,0.12); color: var(--gold); }

/* Sidebar Book Now */
.sidebar-cta {
  padding: 1.25rem 1rem 2rem;
}
.sidebar-cta a {
  display: block;
  width: 100%;
  padding: 15px;
  text-align: center;
  border-radius: 30px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #041c22 !important;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: box-shadow 0.3s ease, transform 0.2s ease;
  box-shadow: 0 4px 20px rgba(232,160,32,0.3);
}
.sidebar-cta a:hover { box-shadow: 0 6px 28px rgba(232,160,32,0.55); transform: translateY(-2px); }

/* Sidebar contact strip */
.sidebar-contact {
  padding: 0 1rem 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 1rem;
}
.sidebar-contact a {
  display: flex; align-items: center; gap: 0.6rem;
  font-size: 0.82rem; color: rgba(255,255,255,0.45);
  text-decoration: none; padding: 0.4rem 0;
  transition: color 0.2s;
}
.sidebar-contact a:hover { color: var(--gold); }

/* ── OVERLAY ── */
.nav-overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 8000;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.nav-overlay.open { opacity: 1; }

/* ===== HERO ===== */
.hero {
  position: relative; height: 100vh; min-height: 620px;
  display: flex; align-items: center; justify-content: center;
  /* overflow: hidden removed — was clipping fixed nav drawer on mobile */
  background: #041c22;
  padding-top: 68px;
}
.hero-slider { position: absolute; inset: 0; overflow: hidden; }
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0;
  transition: opacity 1.4s ease;
}
.hero-slide.active { opacity: 1; }
/* Cinematic overlay — dark at bottom for text readability */
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(to bottom,
      rgba(4,28,34,0.55) 0%,
      rgba(4,28,34,0.25) 40%,
      rgba(4,28,34,0.65) 100%);
}
.hero-content { position: relative; z-index: 2; text-align: center; color: var(--white); max-width: 800px; padding: 0 1.5rem; }
.hero-eyebrow { font-size: 0.8rem; letter-spacing: 5px; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; }
.hero-title { font-size: clamp(2.5rem, 6vw, 4.5rem); font-weight: 700; line-height: 1.1; margin-bottom: 1.5rem; }
.hero-title em { color: var(--gold); font-style: italic; }
.hero-subtitle { font-size: 1.05rem; color: rgba(255,255,255,0.8); max-width: 560px; margin: 0 auto 2.5rem; line-height: 1.7; font-weight: 300; }
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.hero-scroll-hint { position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%); z-index: 2; text-align: center; color: rgba(255,255,255,0.5); font-size: 0.7rem; letter-spacing: 3px; text-transform: uppercase; }
.scroll-line { width: 1px; height: 40px; background: linear-gradient(to bottom, var(--gold), transparent); margin: 0.5rem auto 0; animation: scrollPulse 2s ease infinite; }
@keyframes scrollPulse { 0%,100%{opacity:0.3;transform:scaleY(1)} 50%{opacity:1;transform:scaleY(1.2)} }
.hero-slider-dots { position: absolute; bottom: 2rem; right: 2rem; z-index: 2; display: flex; gap: 0.5rem; }
.slider-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.3); cursor: pointer; transition: var(--transition); border: none; }
.slider-dot.active { background: var(--gold); transform: scale(1.3); }

/* ===== BUTTONS ===== */
.btn { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.85rem 2rem; border-radius: 50px; font-size: 0.9rem; font-weight: 500; cursor: pointer; transition: var(--transition); border: none; font-family: 'Poppins', sans-serif; }
.btn-gold { background: linear-gradient(135deg, var(--gold), var(--gold-dark)); color: var(--green-dark); font-weight: 600; }
.btn-gold:hover { box-shadow: 0 0 25px rgba(201,168,76,0.5); transform: translateY(-2px); }
.btn-outline { background: transparent; border: 1.5px solid rgba(255,255,255,0.5); color: var(--white); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }
.btn-outline-white { background: transparent; border: 1.5px solid rgba(255,255,255,0.7); color: var(--white); }
.btn-outline-white:hover { background: rgba(255,255,255,0.1); transform: translateY(-2px); }
.btn-green { background: var(--green); color: var(--white); }
.btn-green:hover { background: var(--green-light); transform: translateY(-2px); }

/* ===== SECTION HEADERS ===== */
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-eyebrow { font-size: 0.75rem; letter-spacing: 5px; text-transform: uppercase; color: var(--gold); margin-bottom: 0.75rem; display: block; }
.section-title { font-size: clamp(1.8rem, 4vw, 2.8rem); color: var(--green-dark); margin-bottom: 1rem; }
.section-desc { color: var(--text-light); max-width: 500px; margin: 0 auto; line-height: 1.7; }

/* ===== STATS BAR ===== */
.stats-bar { background: linear-gradient(135deg, var(--green-dark), var(--green)); padding: 2.5rem 0; }
.stats-bar .container { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.stat-item { text-align: center; color: var(--white); }
.stat-num { display: block; font-family: 'Playfair Display', serif; font-size: 2.2rem; color: var(--gold); font-weight: 700; }
.stat-label { font-size: 0.8rem; color: rgba(255,255,255,0.6); letter-spacing: 1px; margin-top: 0.25rem; display: block; }

/* ===== PACKAGES ===== */
.packages-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.package-card { background: var(--white); border-radius: var(--radius-lg); padding: 2.5rem 2rem; box-shadow: var(--shadow); position: relative; transition: var(--transition); border: 1px solid rgba(201,168,76,0.1); text-align: center; }
.package-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: var(--gold); }
.package-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: linear-gradient(135deg, var(--gold), var(--gold-dark)); color: var(--green-dark); font-size: 0.7rem; font-weight: 700; padding: 0.3rem 1rem; border-radius: 50px; letter-spacing: 1px; white-space: nowrap; }
.package-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.package-card h3 { font-size: 1.4rem; color: var(--green-dark); margin-bottom: 0.75rem; }
.package-price { font-size: 2rem; font-family: 'Playfair Display', serif; color: var(--gold); font-weight: 700; margin-bottom: 1.5rem; }
.package-price span { font-size: 0.85rem; color: var(--text-light); font-family: 'Poppins', sans-serif; font-weight: 400; }
.package-features { margin-bottom: 2rem; text-align: left; }
.package-features li { padding: 0.5rem 0; border-bottom: 1px solid var(--beige); font-size: 0.88rem; color: var(--text-light); display: flex; align-items: center; gap: 0.5rem; }
.package-features li::before { content: '✓'; color: var(--gold); font-weight: 700; flex-shrink: 0; }

/* ===== SERVICES ===== */
.services-section { background: var(--beige); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.service-card { background: var(--white); border-radius: var(--radius); padding: 2.5rem 2rem; text-align: center; box-shadow: var(--shadow); transition: var(--transition); }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.service-icon { font-size: 3rem; margin-bottom: 1rem; }
.service-card h4 { font-size: 1.2rem; color: var(--green-dark); margin-bottom: 0.75rem; }
.service-card p { color: var(--text-light); font-size: 0.9rem; line-height: 1.7; }

/* ===== ABOUT PREVIEW ===== */
.about-preview-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.about-preview-images { position: relative; }
.img-main { border-radius: var(--radius-lg); width: 100%; height: 420px; object-fit: cover; box-shadow: var(--shadow-lg); }
.img-secondary { position: absolute; bottom: -2rem; right: -2rem; width: 200px; height: 160px; object-fit: cover; border-radius: var(--radius); border: 4px solid var(--white); box-shadow: var(--shadow); }
.about-preview-content .section-title { text-align: left; }
.about-preview-content p { color: var(--text-light); line-height: 1.8; margin-bottom: 1rem; font-size: 0.95rem; }
.about-preview-content .btn { margin-top: 1rem; }

/* ===== GALLERY PREVIEW ===== */
.gallery-preview { background: var(--beige); }
.gallery-grid-preview { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.gallery-item { position: relative; border-radius: var(--radius); overflow: hidden; cursor: pointer; aspect-ratio: 1; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay { position: absolute; inset: 0; background: rgba(10,25,15,0.5); display: flex; align-items: center; justify-content: center; opacity: 0; transition: var(--transition); }
.gallery-overlay span { color: var(--gold); font-size: 0.85rem; letter-spacing: 3px; text-transform: uppercase; border: 1px solid var(--gold); padding: 0.5rem 1rem; border-radius: 50px; }
.gallery-item:hover .gallery-overlay { opacity: 1; }

/* ===== TESTIMONIALS ===== */
.testimonials-section { background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 100%); }
.testimonials-section .section-title { color: var(--white); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.testimonial-card { background: rgba(255,255,255,0.05); backdrop-filter: blur(10px); border: 1px solid rgba(201,168,76,0.2); border-radius: var(--radius); padding: 2rem; transition: var(--transition); }
.testimonial-card:hover { border-color: var(--gold); transform: translateY(-4px); }
.stars { color: var(--gold); font-size: 1rem; margin-bottom: 1rem; letter-spacing: 2px; }
.testimonial-card p { color: rgba(255,255,255,0.8); font-size: 0.9rem; line-height: 1.8; margin-bottom: 1.5rem; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.author-avatar { width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(135deg, var(--gold), var(--gold-dark)); display: flex; align-items: center; justify-content: center; color: var(--green-dark); font-weight: 700; font-size: 1rem; flex-shrink: 0; }
.testimonial-author strong { display: block; color: var(--white); font-size: 0.9rem; }
.testimonial-author span { color: rgba(255,255,255,0.5); font-size: 0.78rem; }

/* ===== CTA BANNER ===== */
.cta-banner { position: relative; background: url('https://images.unsplash.com/photo-1586348943529-beaae6c28db9?w=1400&q=80') center/cover; padding: 6rem 0; text-align: center; }
.cta-overlay { position: absolute; inset: 0; background: rgba(10,25,15,0.8); }
.cta-content { position: relative; z-index: 1; color: var(--white); }
.cta-content h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 1rem; }
.cta-content p { color: rgba(255,255,255,0.75); margin-bottom: 2rem; font-size: 1rem; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ===== FOOTER ===== */
.footer { background: linear-gradient(180deg, var(--green-dark) 0%, #041c22 100%); color: rgba(255,255,255,0.75); padding: 4rem 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 3rem; padding-bottom: 3rem; }
.footer-logo { font-family: 'Playfair Display', serif; font-size: 1.6rem; color: var(--gold); margin-bottom: 1rem; }
.footer-brand p { font-size: 0.88rem; line-height: 1.8; margin-bottom: 1.5rem; }
.footer-social { display: flex; gap: 0.75rem; }
.footer-social a { width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; transition: var(--transition); }
.footer-social a:hover { background: var(--gold); }
.footer-links h5, .footer-contact h5 { font-family: 'Playfair Display', serif; color: var(--white); font-size: 1rem; margin-bottom: 1.25rem; }
.footer-links ul li { margin-bottom: 0.6rem; }
.footer-links ul li a { font-size: 0.85rem; transition: var(--transition); }
.footer-links ul li a:hover { color: var(--gold); padding-left: 4px; }
.footer-contact p { font-size: 0.85rem; line-height: 1.8; margin-bottom: 0.5rem; }
.footer-contact a { color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 1.5rem 0; text-align: center; font-size: 0.8rem; color: rgba(255,255,255,0.4); }

/* ===== LIGHTBOX ===== */
.lightbox { position: fixed; inset: 0; background: rgba(0,0,0,0.95); z-index: 9998; display: none; align-items: center; justify-content: center; }
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 90vh; border-radius: var(--radius); object-fit: contain; }
.lightbox-close { position: absolute; top: 1.5rem; right: 1.5rem; background: rgba(255,255,255,0.1); border: none; color: var(--white); font-size: 1.2rem; width: 44px; height: 44px; border-radius: 50%; cursor: pointer; transition: var(--transition); }
.lightbox-close:hover { background: var(--gold); color: var(--green-dark); }

/* ===== FLOATING BUTTONS ===== */
.whatsapp-float { position: fixed; bottom: 5rem; right: 1.5rem; z-index: 999; width: 52px; height: 52px; background: #25d366; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 20px rgba(37,211,102,0.4); transition: var(--transition); }
.whatsapp-float svg { width: 28px; height: 28px; color: var(--white); }
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,0.6); }
.scroll-top { position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 999; width: 44px; height: 44px; background: var(--gold); color: var(--green-dark); border: none; border-radius: 50%; font-size: 1.1rem; cursor: pointer; box-shadow: var(--shadow); transition: var(--transition); opacity: 0; visibility: hidden; font-weight: 700; }
.scroll-top.visible { opacity: 1; visibility: visible; }
.scroll-top:hover { background: var(--gold-light); transform: translateY(-3px); }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  height: 45vh; min-height: 320px;
  background-size: cover; background-position: center;
  position: relative;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  margin-top: 68px; /* offset for sticky navbar */
}
.page-hero-overlay { position: absolute; inset: 0; background: rgba(10,25,15,0.7); }
.page-hero-content { position: relative; z-index: 1; color: var(--white); }
.page-hero-content h1 { font-size: clamp(2rem, 5vw, 3.5rem); margin-bottom: 0.5rem; }
.page-hero-content p { color: rgba(255,255,255,0.7); font-size: 0.9rem; letter-spacing: 2px; }
.breadcrumb { display: flex; gap: 0.5rem; justify-content: center; font-size: 0.8rem; color: rgba(255,255,255,0.5); margin-top: 0.75rem; }
.breadcrumb a { color: var(--gold); }
.breadcrumb span { color: rgba(255,255,255,0.3); }

/* ===== ROOMS PAGE ===== */
.rooms-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.room-card { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); transition: var(--transition); background: var(--white); }
.room-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.room-img { height: 240px; overflow: hidden; }
.room-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.room-card:hover .room-img img { transform: scale(1.06); }
.room-info { padding: 1.75rem; }
.room-info h3 { font-size: 1.3rem; color: var(--green-dark); margin-bottom: 0.5rem; }
.room-info p { color: var(--text-light); font-size: 0.88rem; line-height: 1.7; margin-bottom: 1rem; }
.room-amenities { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.25rem; }
.amenity-tag { background: var(--beige); color: var(--green); font-size: 0.75rem; padding: 0.3rem 0.75rem; border-radius: 50px; }
.room-price { font-family: 'Playfair Display', serif; font-size: 1.4rem; color: var(--gold); font-weight: 700; }
.room-price span { font-size: 0.8rem; color: var(--text-light); font-family: 'Poppins', sans-serif; font-weight: 400; }

/* ===== TOUR PAGE ===== */
.timeline { position: relative; padding-left: 3rem; }
.timeline::before { content: ''; position: absolute; left: 1rem; top: 0; bottom: 0; width: 2px; background: linear-gradient(to bottom, var(--gold), var(--green-light)); }
.timeline-item { position: relative; margin-bottom: 3rem; }
.timeline-dot { position: absolute; left: -2.5rem; top: 0.25rem; width: 16px; height: 16px; border-radius: 50%; background: var(--gold); border: 3px solid var(--white); box-shadow: 0 0 0 3px var(--gold); }
.timeline-day { font-size: 0.75rem; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 0.5rem; }
.timeline-item h3 { font-size: 1.3rem; color: var(--green-dark); margin-bottom: 0.75rem; }
.timeline-stops { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.stop-tag { background: var(--beige); border: 1px solid rgba(201,168,76,0.3); color: var(--green); font-size: 0.82rem; padding: 0.4rem 0.9rem; border-radius: 50px; display: flex; align-items: center; gap: 0.4rem; }
.stop-tag::before { content: '📍'; font-size: 0.75rem; }

/* ===== DINING PAGE ===== */
.menu-day { margin-bottom: 3rem; }
.menu-day-header { background: linear-gradient(135deg, var(--green), var(--accent)); color: var(--white); padding: 1.25rem 2rem; border-radius: var(--radius) var(--radius) 0 0; display: flex; align-items: center; gap: 1rem; }
.menu-day-header h3 { font-size: 1.2rem; }
.menu-day-header span { background: var(--gold); color: var(--green-dark); font-size: 0.75rem; font-weight: 700; padding: 0.25rem 0.75rem; border-radius: 50px; }
.menu-items-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 1rem; background: var(--beige); padding: 1.5rem; border-radius: 0 0 var(--radius) var(--radius); }
.menu-item { background: var(--white); border-radius: 12px; padding: 1rem; text-align: center; box-shadow: 0 2px 8px rgba(0,0,0,0.06); transition: var(--transition); }
.menu-item:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.menu-item-icon { font-size: 2rem; margin-bottom: 0.5rem; }
.menu-item h5 { font-size: 0.88rem; color: var(--green-dark); }
.menu-item p { font-size: 0.75rem; color: var(--text-light); margin-top: 0.25rem; }

/* ===== GALLERY PAGE ===== */
.gallery-full-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.gallery-full-grid .gallery-item { aspect-ratio: 4/3; }

/* ===== CONTACT PAGE ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 4rem; align-items: start; }
.contact-info-card { background: var(--green-dark); color: var(--white); border-radius: var(--radius-lg); padding: 2.5rem; }
.contact-info-card h3 { font-size: 1.5rem; color: var(--gold); margin-bottom: 2rem; }
.contact-detail { display: flex; gap: 1rem; margin-bottom: 1.5rem; align-items: flex-start; }
.contact-detail-icon { font-size: 1.5rem; flex-shrink: 0; }
.contact-detail h5 { color: rgba(255,255,255,0.6); font-size: 0.75rem; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 0.25rem; font-family: 'Poppins', sans-serif; font-weight: 400; }
.contact-detail p, .contact-detail a { color: var(--white); font-size: 0.95rem; }
.contact-form { background: var(--white); border-radius: var(--radius-lg); padding: 2.5rem; box-shadow: var(--shadow); }
.contact-form h3 { font-size: 1.5rem; color: var(--green-dark); margin-bottom: 2rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: 0.82rem; font-weight: 500; color: var(--text); margin-bottom: 0.5rem; letter-spacing: 0.5px; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 0.85rem 1rem; border: 1.5px solid var(--beige-dark); border-radius: 10px; font-family: 'Poppins', sans-serif; font-size: 0.9rem; color: var(--text); background: var(--beige); transition: var(--transition); outline: none; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--gold); background: var(--white); box-shadow: 0 0 0 3px rgba(201,168,76,0.1); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.map-embed { border-radius: var(--radius-lg); overflow: hidden; margin-top: 3rem; box-shadow: var(--shadow); }
.map-embed iframe { width: 100%; height: 400px; border: none; display: block; }

/* ===== BOOKING PAGE ===== */
.booking-form-wrap { max-width: 700px; margin: 0 auto; background: var(--white); border-radius: var(--radius-lg); padding: 3rem; box-shadow: var(--shadow-lg); }
.booking-form-wrap h2 { font-size: 1.8rem; color: var(--green-dark); margin-bottom: 0.5rem; }
.booking-form-wrap > p { color: var(--text-light); margin-bottom: 2rem; font-size: 0.9rem; }

/* ===== ABOUT PAGE ===== */
.about-story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; margin-bottom: 5rem; }
.about-story-grid img { border-radius: var(--radius-lg); width: 100%; height: 400px; object-fit: cover; box-shadow: var(--shadow-lg); }
.about-story-content h2 { font-size: 2rem; color: var(--green-dark); margin-bottom: 1.25rem; }
.about-story-content p { color: var(--text-light); line-height: 1.8; margin-bottom: 1rem; font-size: 0.95rem; }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.why-card { background: var(--beige); border-radius: var(--radius); padding: 2rem; text-align: center; transition: var(--transition); }
.why-card:hover { background: var(--white); box-shadow: var(--shadow); transform: translateY(-4px); }
.why-card .icon { font-size: 2.5rem; margin-bottom: 1rem; }
.why-card h4 { font-size: 1.1rem; color: var(--green-dark); margin-bottom: 0.5rem; }
.why-card p { font-size: 0.85rem; color: var(--text-light); line-height: 1.7; }

/* ===== FAQ PAGE ===== */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { border: 1px solid var(--beige-dark); border-radius: var(--radius); margin-bottom: 1rem; overflow: hidden; }
.faq-question { padding: 1.25rem 1.5rem; cursor: pointer; display: flex; justify-content: space-between; align-items: center; background: var(--white); transition: var(--transition); font-weight: 500; color: var(--green-dark); }
.faq-question:hover { background: var(--beige); }
.faq-question.open { background: var(--green-dark); color: var(--white); }
.faq-icon { font-size: 1.2rem; transition: var(--transition); flex-shrink: 0; }
.faq-question.open .faq-icon { transform: rotate(45deg); color: var(--gold); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s ease; }
.faq-answer.open { max-height: 300px; }
.faq-answer p { padding: 1.25rem 1.5rem; color: var(--text-light); font-size: 0.9rem; line-height: 1.8; background: var(--beige); }

/* ===== PACKAGE DETAIL ===== */
.pkg-detail-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 3rem; align-items: start; }
.pkg-detail-content h2 { font-size: 2rem; color: var(--green-dark); margin-bottom: 1rem; }
.pkg-detail-content p { color: var(--text-light); line-height: 1.8; margin-bottom: 1.5rem; }
.pkg-includes h4 { font-size: 1.1rem; color: var(--green-dark); margin-bottom: 1rem; }
.pkg-includes ul li { padding: 0.5rem 0; border-bottom: 1px solid var(--beige); font-size: 0.9rem; color: var(--text-light); display: flex; gap: 0.5rem; }
.pkg-includes ul li::before { content: '✓'; color: var(--gold); font-weight: 700; }
.pkg-sidebar { background: var(--white); border-radius: var(--radius-lg); padding: 2rem; box-shadow: var(--shadow); position: sticky; top: 100px; }
.pkg-sidebar .price { font-family: 'Playfair Display', serif; font-size: 2.5rem; color: var(--gold); font-weight: 700; margin-bottom: 0.25rem; }
.pkg-sidebar .price-note { font-size: 0.82rem; color: var(--text-light); margin-bottom: 1.5rem; }
.pkg-sidebar .btn { width: 100%; justify-content: center; margin-bottom: 0.75rem; }

/* ===== PRIVACY / TERMS ===== */
.legal-content { max-width: 800px; margin: 0 auto; }
.legal-content h3 { font-size: 1.2rem; color: var(--green-dark); margin: 2rem 0 0.75rem; }
.legal-content p, .legal-content li { color: var(--text-light); line-height: 1.8; font-size: 0.92rem; margin-bottom: 0.5rem; }
.legal-content ul { padding-left: 1.5rem; list-style: disc; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .packages-grid, .services-grid, .testimonials-grid, .rooms-grid { grid-template-columns: repeat(2, 1fr); }
  .about-preview-grid, .about-story-grid, .contact-grid, .pkg-detail-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .gallery-full-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-bar .container { grid-template-columns: repeat(2, 1fr); }
  .img-secondary { display: none; }
}

@media (max-width: 768px) {
  /* Show hamburger, hide desktop nav */
  .nav-toggle { display: flex; }
  .nav-links { display: none !important; }

  /* Layout */
  .packages-grid, .services-grid, .testimonials-grid, .rooms-grid, .why-grid { grid-template-columns: 1fr; }
  .gallery-grid-preview { grid-template-columns: repeat(2, 1fr); }
  .gallery-full-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .stats-bar .container { grid-template-columns: repeat(2, 1fr); }
  .section { padding: 3.5rem 0; }
  .booking-form-wrap { padding: 2rem 1.5rem; }
  .contact-form { padding: 2rem 1.5rem; }
}

@media (max-width: 480px) {
  .gallery-grid-preview, .gallery-full-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: center; }
  .cta-actions { flex-direction: column; align-items: center; }
  .stats-bar .container { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
}
