/* ============================================================
   KODAI QUEEN TOURS — Premium Website CSS
   Aesthetic: Cinematic luxury travel — deep forest greens,
   warm gold, misty whites. Cormorant Garamond editorial feel.
   ============================================================ */

:root {
  --forest:   #0f2218;
  --forest-mid: #1a3a28;
  --forest-light: #265c3e;
  --gold:     #c9a84c;
  --gold-light: #e8c96a;
  --gold-pale: #f5e6bb;
  --cream:    #faf6ee;
  --white:    #ffffff;
  --mist:     rgba(255,255,255,0.06);
  --text-dark: #0f1a14;
  --text-mid:  #3d5446;
  --text-light: #7a9688;

  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-inout: cubic-bezier(0.65, 0, 0.35, 1);

  --nav-h: 76px;
  --section-pad: clamp(80px, 10vw, 140px);
  --radius: 16px;
  --radius-lg: 24px;
}

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

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

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--text-dark);
  overflow-x: hidden;
  cursor: none;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: none; border: none; background: none; }
select, input, textarea { font-family: inherit; }

/* ============================================================
   SCROLLBAR
   ============================================================ */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--forest); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* ============================================================
   CUSTOM CURSOR
   ============================================================ */
.cursor {
  width: 10px; height: 10px;
  background: var(--gold);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s, background 0.2s;
}
.cursor-follower {
  width: 36px; height: 36px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.18s var(--ease-out-expo), opacity 0.3s;
  opacity: 0.6;
}
body.hovering .cursor { transform: translate(-50%, -50%) scale(2.5); background: var(--gold-light); }
body.hovering .cursor-follower { opacity: 0; }

@media (max-width: 768px) {
  .cursor, .cursor-follower { display: none; }
  body { cursor: auto; }
  button { cursor: pointer; }
}

/* ============================================================
   LOADER
   ============================================================ */
.loader {
  position: fixed; inset: 0; z-index: 10000;
  background: var(--forest);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.7s var(--ease-out-expo), visibility 0.7s;
}
.loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-inner { text-align: center; }
.loader-logo {
  display: flex; align-items: center; justify-content: center; gap: 14px;
  margin-bottom: 32px;
}
.loader-logo img { width: 96px; filter: brightness(1.5); }
.loader-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem; font-weight: 400; color: var(--white);
  letter-spacing: 0.06em;
}
.loader-bar {
  width: 220px; height: 2px; background: rgba(255,255,255,0.15);
  border-radius: 2px; margin: 0 auto 16px;
  overflow: hidden;
}
.loader-progress {
  height: 100%; background: var(--gold);
  width: 0%; transition: width 0.1s linear;
}
.loader-subtitle {
  color: rgba(255,255,255,0.4); font-size: 0.85rem;
  letter-spacing: 0.15em; text-transform: uppercase;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-h);
  transition: background 0.4s, box-shadow 0.4s, backdrop-filter 0.4s;
}
.nav.scrolled {
  background: rgba(15, 34, 24, 0.92);
  backdrop-filter: blur(20px);
  box-shadow: 0 2px 40px rgba(0,0,0,0.3);
}
.nav-inner {
  max-width: 1320px; margin: 0 auto; padding: 0 32px;
  height: 100%; display: flex; align-items: center; gap: 40px;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  flex-shrink: 0;
}
.nav-logo img { height: 42px; filter: brightness(1.2); }
.logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem; font-weight: 700; color: var(--gold);
}
.nav-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem; font-weight: 600; color: var(--white);
  letter-spacing: 0.04em;
}
.nav-links {
  display: flex; align-items: center; gap: 32px;
  list-style: none; margin-left: auto;
}
.nav-link {
  color: rgba(255,255,255,0.75);
  font-size: 0.88rem; font-weight: 400; letter-spacing: 0.04em;
  position: relative; transition: color 0.25s;
}
.nav-link::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 100%;
  height: 1px; background: var(--gold);
  transition: right 0.3s var(--ease-out-expo);
}
.nav-link:hover, .nav-link.active { color: var(--white); }
.nav-link:hover::after, .nav-link.active::after { right: 0; }
.nav-cta {
  display: flex; align-items: center; gap: 8px;
  background: var(--gold);
  color: var(--forest);
  padding: 10px 22px; border-radius: 50px;
  font-size: 0.85rem; font-weight: 600; letter-spacing: 0.04em;
  transition: background 0.25s, transform 0.25s, box-shadow 0.25s;
  flex-shrink: 0;
}
.nav-cta:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(201,168,76,0.35);
}
/* ==========================================
   NAVIGATION
========================================== */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 40px;
  position: relative;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-logo img {
  height: 50px;
  width: auto;
}

.nav-brand {
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 600;
}

/* Desktop Menu */
.nav-links {
  display: flex;
  align-items: center;
  gap: 35px;
  list-style: none;
}

.nav-links a {
  color: var(--white);
  text-decoration: none;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 50px;
  background: var(--gold);
  color: var(--forest);
  text-decoration: none;
  font-weight: 600;
}

/* ==========================================
   HAMBURGER TOGGLE
========================================== */

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  background: transparent;
  border: none;
  margin-left: auto;
  z-index: 1001;
}

.nav-toggle span {
  width: 26px;
  height: 3px;
  background: #fff;
  border-radius: 10px;
  transition: all 0.3s ease;
}

/* X Animation */
.nav-toggle.open span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

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

.nav-toggle.open span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* ==========================================
   MOBILE MENU
========================================== */

.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--forest);
  z-index: 999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  transform: translateX(100%);
  transition: transform 0.4s ease;
}

.mobile-menu.open {
  transform: translateX(0);
}

.mobile-menu ul {
  list-style: none;
  text-align: center;
}

.mobile-menu li {
  margin: 20px 0;
}

.mobile-menu a {
  color: #fff;
  text-decoration: none;
  font-size: 2rem;
  font-family: 'Cormorant Garamond', serif;
}

.mobile-menu a:hover {
  color: var(--gold);
}

.mobile-cta {
  margin-top: 30px;
  background: var(--gold);
  color: var(--forest);
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
}

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

@media (max-width: 768px) {

  .nav-inner {
    padding: 15px 20px;
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .nav-toggle {
    display: flex;
    position: absolute;
    right: 20px;   /* right side */
    top: 50%;
    transform: translateY(-50%);
  }

  .nav-brand {
    font-size: 1rem;
  }

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

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-video-wrap {
  position: absolute; inset: 0; z-index: 0;
}
.hero-video {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10,26,18,0.82) 0%,
    rgba(15,34,24,0.6) 50%,
    rgba(10,20,15,0.75) 100%
  );
}

/* Particles */
.hero-particles {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
}
.particle {
  position: absolute;
  width: 2px; height: 2px;
  background: var(--gold);
  border-radius: 50%;
  animation: floatParticle linear infinite;
  opacity: 0;
}
@keyframes floatParticle {
  0% { transform: translateY(0) translateX(0); opacity: 0; }
  10% { opacity: 0.8; }
  90% { opacity: 0.6; }
  100% { transform: translateY(-100vh) translateX(var(--drift)); opacity: 0; }
}

.hero-content {
  position: relative; z-index: 2;
  text-align: center; padding: 0 20px;
  max-width: 900px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.08); backdrop-filter: blur(12px);
  border: 1px solid rgba(201,168,76,0.3);
  padding: 8px 20px; border-radius: 50px;
  color: var(--gold-pale); font-size: 0.78rem; letter-spacing: 0.2em;
  text-transform: uppercase; margin-bottom: 28px;
}
.badge-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(201,168,76,0.6); }
  50% { box-shadow: 0 0 0 8px rgba(201,168,76,0); }
}
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 300; line-height: 1.08;
  color: var(--white); margin-bottom: 24px;
}
.hero-title .line { display: block; }
.hero-title .italic { font-style: italic; font-weight: 300; }
.hero-title .gold { color: var(--gold); font-weight: 600; }
.hero-sub {
  color: rgba(255,255,255,0.7); font-size: clamp(0.95rem, 2vw, 1.1rem);
  max-width: 600px; margin: 0 auto 40px;
  line-height: 1.8; font-weight: 300;
}
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* Hero image strip */
.hero-images-strip {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 2;
  display: flex; height: 100px; gap: 4px;
}
.strip-item {
  flex: 1; background-size: cover; background-position: center;
  opacity: 0.5; transition: opacity 0.4s, flex 0.6s var(--ease-out-expo);
  cursor: pointer;
}
.strip-item.active, .strip-item:hover { opacity: 0.85; flex: 2.5; }

/* Scroll hint */
.hero-scroll-hint {
  position: absolute; bottom: 120px; left: 50%; transform: translateX(-50%);
  z-index: 3; display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.5); font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase;
  animation: scrollBounce 2.5s infinite;
}
.scroll-mouse {
  width: 24px; height: 38px; border: 1.5px solid rgba(255,255,255,0.3);
  border-radius: 12px; display: flex; justify-content: center; padding-top: 6px;
}
.scroll-wheel {
  width: 4px; height: 8px; background: var(--gold);
  border-radius: 2px;
  animation: scrollWheel 2s infinite;
}
@keyframes scrollWheel {
  0% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(12px); opacity: 0; }
}
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-6px); }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--gold);
  color: var(--forest);
  padding: 14px 32px; border-radius: 50px;
  font-weight: 600; font-size: 0.9rem; letter-spacing: 0.04em;
  transition: all 0.3s var(--ease-out-expo);
  border: none; cursor: none;
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(201,168,76,0.4);
}
.btn-primary.full-width { width: 100%; justify-content: center; }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 10px;
  border: 1.5px solid rgba(255,255,255,0.4);
  color: var(--white);
  padding: 14px 32px; border-radius: 50px;
  font-weight: 400; font-size: 0.9rem; letter-spacing: 0.04em;
  transition: all 0.3s var(--ease-out-expo);
  background: transparent;
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201,168,76,0.08);
}
.btn-light {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--white);
  color: var(--forest);
  padding: 14px 32px; border-radius: 50px;
  font-weight: 600; font-size: 0.9rem; letter-spacing: 0.04em;
  transition: all 0.3s var(--ease-out-expo);
}
.btn-light:hover {
  background: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.25);
}

/* ============================================================
   CONTAINER
   ============================================================ */
.container { max-width: 1320px; margin: 0 auto; padding: 0 32px; }

/* ============================================================
   SECTION TYPOGRAPHY
   ============================================================ */
.section-eyebrow {
  font-size: 0.72rem; font-weight: 500; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 12px; display: block;
}
.section-eyebrow.light { color: var(--gold-light); }
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 400; line-height: 1.15;
  color: var(--text-dark);
  margin-bottom: 20px;
}
.section-sub {
  font-size: 1rem; color: var(--text-mid);
  max-width: 560px; line-height: 1.8;
  margin: 0 auto;
}
.section-header { text-align: center; margin-bottom: 60px; }

/* ============================================================
   STATS
   ============================================================ */
.stats-section {
  padding: 0 32px;
  margin-top: -60px; position: relative; z-index: 10;
}
.stats-glass {
  max-width: 900px; margin: 0 auto;
  background: rgba(15, 34, 24, 0.92);
  backdrop-filter: blur(24px);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: space-around;
  padding: 40px 48px;
  box-shadow: 0 24px 80px rgba(10,26,18,0.35);
}
.stat { text-align: center; flex: 1; }
.stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem; font-weight: 700;
  color: var(--gold); display: inline;
}
.stat-plus { font-size: 1.5rem; color: var(--gold); font-weight: 700; }
.stat p { color: rgba(255,255,255,0.55); font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; margin-top: 4px; }
.stat-divider { width: 1px; height: 50px; background: rgba(201,168,76,0.2); }

/* ============================================================
   ABOUT
   ============================================================ */
.about {
  padding: var(--section-pad) 0;
  background: var(--cream);
}
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px); align-items: center;
}
.about-visuals { position: relative; }
.about-img-main {
  border-radius: var(--radius-lg); overflow: hidden;
  aspect-ratio: 4/3; position: relative;
  box-shadow: 0 32px 80px rgba(15,34,24,0.2);
}
.about-img-main img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.8s var(--ease-out-expo);
}
.about-img-main:hover img { transform: scale(1.04); }
.img-tag {
  position: absolute; bottom: 20px; left: 20px;
  background: rgba(15,34,24,0.85); backdrop-filter: blur(12px);
  color: var(--white); padding: 8px 16px; border-radius: 50px;
  font-size: 0.78rem; display: flex; align-items: center; gap: 6px;
  border: 1px solid rgba(201,168,76,0.25);
}
.about-img-secondary {
  position: absolute; bottom: -32px; right: -28px;
  width: 42%; border-radius: var(--radius);
  overflow: hidden; aspect-ratio: 4/3;
  box-shadow: 0 20px 60px rgba(15,34,24,0.25);
  border: 4px solid var(--cream);
}
.about-img-secondary img { width: 100%; height: 100%; object-fit: cover; }
.about-years-badge {
  position: absolute; top: 24px; left: -20px;
  background: var(--gold);
  border-radius: var(--radius);
  padding: 16px 20px; text-align: center;
  box-shadow: 0 12px 40px rgba(201,168,76,0.4);
}
.years-num {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem; font-weight: 700; color: var(--forest); line-height: 1;
}
.years-text {
  font-size: 0.65rem; font-weight: 600; color: var(--forest-mid);
  text-transform: uppercase; letter-spacing: 0.08em;
}

.about-text { padding-left: 20px; }
.about-text .section-title { text-align: left; color: var(--forest); margin-bottom: 20px; }
.about-lead {
  font-size: 1.1rem; color: var(--text-mid);
  line-height: 1.8; margin-bottom: 16px;
}
.about-body {
  font-size: 0.95rem; color: var(--text-light);
  line-height: 1.85; margin-bottom: 32px;
}
.about-body strong { color: var(--forest); font-weight: 600; }
.about-pillars { display: flex; flex-direction: column; gap: 18px; margin-bottom: 36px; }
.pillar { display: flex; align-items: flex-start; gap: 16px; }
.pillar-icon {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--gold); color: var(--forest);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(201,168,76,0.3);
}
.pillar h4 { font-size: 0.9rem; font-weight: 600; color: var(--forest); margin-bottom: 2px; }
.pillar p { font-size: 0.82rem; color: var(--text-light); line-height: 1.5; }

/* ============================================================
   DESTINATIONS
   ============================================================ */

.destinations {
    padding: var(--section-pad) 0;
    background: var(--forest);
}

.destinations .section-title {
    color: var(--white);
}

.destinations .section-sub {
    color: rgba(255,255,255,0.5);
}

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

.dest-card {
    position: relative;
    height: 380px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
}

.dest-card.featured {
    grid-column: span 1;
    height: 380px;
}

.dest-card:nth-child(5) {
    grid-column: span 1;
}

.dest-img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 0.5s ease;
}

.dest-card:hover .dest-img {
    transform: scale(1.05);
}

.dest-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(10,26,18,0.95) 0%,
        rgba(10,26,18,0.20) 60%
    );
    transition: all 0.4s ease;
}

.dest-card:hover .dest-overlay {
    background: linear-gradient(
        to top,
        rgba(10,26,18,0.98) 0%,
        rgba(10,26,18,0.35) 60%
    );
}

.dest-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 28px;
    z-index: 2;
}

.dest-tag {
    display: inline-block;
    background: var(--gold);
    color: var(--forest);
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.dest-content h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 8px;
    line-height: 1.2;
}

.dest-card.featured .dest-content h3 {
    font-size: 1.8rem;
}

.dest-content p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
    margin-bottom: 15px;
}

.dest-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.dest-meta span {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.6);
}

.dest-btn {
    display: inline-flex;
    align-items: center;
    color: var(--gold);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.dest-card:hover .dest-btn {
    opacity: 1;
    transform: translateY(0);
}

/* Tablet */

@media (max-width: 992px) {
    .dest-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */

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

    .dest-card,
    .dest-card.featured {
        height: 320px;
    }

    .dest-content {
        padding: 20px;
    }

    .dest-content h3 {
        font-size: 1.5rem;
    }
}
/* ============================================================
   EXPERIENCE STRIP
   ============================================================ */
.experience-strip {
  position: relative; padding: 120px 0;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; text-align: center;
}
.strip-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  background-attachment: fixed;
}
.strip-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(10,26,18,0.88) 0%, rgba(26,58,40,0.75) 100%);
}
.strip-content {
  position: relative; z-index: 2;
  max-width: 700px; padding: 0 32px;
}
.strip-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 5vw, 3.8rem);
  font-weight: 300; font-style: italic;
  color: var(--white); line-height: 1.2; margin-bottom: 20px;
}
.strip-content p {
  color: rgba(255,255,255,0.65); font-size: 1rem;
  line-height: 1.8; margin-bottom: 36px;
}

/* ============================================================
   SERVICES
   ============================================================ */
.services {
  padding: var(--section-pad) 0;
  background: var(--cream);
}
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--white);
  border: 1px solid rgba(15,34,24,0.08);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: all 0.4s var(--ease-out-expo);
  position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; bottom: -60%; left: -20%;
  width: 140%; height: 140%; border-radius: 50%;
  background: var(--gold);
  opacity: 0; transform: scale(0.5);
  transition: all 0.6s var(--ease-out-expo);
  z-index: 0;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 32px 80px rgba(15,34,24,0.12);
  border-color: var(--gold);
}
.service-card:hover::before { opacity: 0.05; transform: scale(1); }
.service-icon {
  font-size: 2.4rem; margin-bottom: 20px;
  display: block; position: relative; z-index: 1;
}
.service-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem; font-weight: 600; color: var(--forest);
  margin-bottom: 12px; position: relative; z-index: 1;
}
.service-card p {
  font-size: 0.88rem; color: var(--text-light);
  line-height: 1.75; position: relative; z-index: 1;
}

/* ============================================================
   GALLERY
   ============================================================ */
.gallery {
  padding: var(--section-pad) 0;
  background: var(--forest);
}

.gallery .section-title {
  color: var(--white);
}

.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 0 32px;
  max-width: 1320px;
  margin: 0 auto;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--forest-mid);
  height: 280px;
  cursor: pointer;
}

/* Remove uneven masonry sizes */
.gallery-item.tall,
.gallery-item.wide {
  grid-row: auto;
  grid-column: auto;
  height: 280px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;

  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-hover {
  position: absolute;
  inset: 0;
  background: rgba(15, 34, 24, 0.55);

  display: flex;
  align-items: center;
  justify-content: center;

  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.gallery-hover span {
  width: 60px;
  height: 60px;
  border-radius: 50%;

  background: var(--gold);
  color: var(--forest);

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;

  transform: scale(0.8);
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-hover span {
  transform: scale(1);
}

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;

  background: rgba(10,20,15,0.95);
  backdrop-filter: blur(15px);

  display: flex;
  align-items: center;
  justify-content: center;

  opacity: 0;
  visibility: hidden;

  transition: all 0.3s ease;
}

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

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 32px;

  width: 48px;
  height: 48px;

  border: none;
  border-radius: 50%;

  background: rgba(255,255,255,0.12);
  color: var(--white);

  font-size: 22px;
  cursor: pointer;

  transition: 0.3s ease;
}

.lightbox-close:hover {
  background: var(--gold);
  color: var(--forest);
}

.lightbox-inner {
  max-width: 90vw;
  max-height: 90vh;
}

.lightbox-inner img {
  max-width: 100%;
  max-height: 90vh;
  border-radius: 12px;
  object-fit: contain;
}

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

@media (max-width: 992px) {
  .gallery-masonry {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .gallery-masonry {
    grid-template-columns: 1fr;
    padding: 0 20px;
  }

  .gallery-item,
  .gallery-item.tall,
  .gallery-item.wide {
    height: 250px;
  }
}
/* ============================================================
   VIDEO SECTION
   ============================================================ */
.video-section {
  padding: var(--section-pad) 0;
  background: var(--cream);
}
.video-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.video-card {
  border-radius: var(--radius-lg); overflow: hidden;
  background: var(--forest);
  box-shadow: 0 16px 48px rgba(15,34,24,0.15);
  transition: transform 0.4s var(--ease-out-expo), box-shadow 0.4s;
}
.video-card:hover { transform: translateY(-6px); box-shadow: 0 32px 80px rgba(15,34,24,0.22); }
.video-card video { width: 100%; display: block; aspect-ratio: 16/9; object-fit: cover; }
.video-label {
  padding: 14px 18px; background: var(--forest);
  color: rgba(255,255,255,0.75); font-size: 0.82rem;
  text-align: center; letter-spacing: 0.02em;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials {
  padding: var(--section-pad) 0;
  background: var(--forest);
  overflow: hidden;
}
.testimonials .section-title { color: var(--white); }
.testimonials-track {
  display: flex; gap: 24px;
  overflow-x: hidden;
  padding-bottom: 12px;
  transition: transform 0.6s var(--ease-out-expo);
}
.testi-card {
  min-width: calc(33.333% - 16px);
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: var(--radius-lg); padding: 36px;
  flex-shrink: 0;
  transition: transform 0.4s, box-shadow 0.4s;
}
.testi-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.25);
}
.testi-stars { color: var(--gold); font-size: 1rem; margin-bottom: 18px; letter-spacing: 3px; }
.testi-card p {
  color: rgba(255,255,255,0.7); font-size: 0.92rem;
  line-height: 1.8; margin-bottom: 24px;
  font-style: italic;
}
.testi-author { display: flex; align-items: center; gap: 14px; }
.testi-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--gold); color: var(--forest);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.82rem; flex-shrink: 0;
}
.testi-author strong { display: block; color: var(--white); font-size: 0.88rem; }
.testi-author span { color: rgba(255,255,255,0.4); font-size: 0.75rem; }
.testi-nav {
  display: flex; align-items: center; justify-content: center; gap: 20px;
  margin-top: 36px;
}
.testi-prev, .testi-next {
  width: 48px; height: 48px; border-radius: 50%;
  border: 1.5px solid rgba(201,168,76,0.4);
  color: var(--gold); font-size: 1.2rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all 0.25s;
  background: transparent;
}
.testi-prev:hover, .testi-next:hover {
  background: var(--gold); color: var(--forest);
  border-color: var(--gold);
}
.testi-dots { display: flex; gap: 8px; }
.dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(201,168,76,0.3); cursor: pointer;
  transition: background 0.25s, transform 0.25s;
}
.dot.active { background: var(--gold); transform: scale(1.3); }

/* ============================================================
   CONTACT
   ============================================================ */
.contact {
  padding: var(--section-pad) 0;
  background: var(--cream);
}
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.4fr;
  gap: clamp(40px, 6vw, 80px); align-items: start;
  margin-bottom: 60px;
}
.contact-info { display: flex; flex-direction: column; gap: 16px; }
.contact-card {
  background: var(--white);
  border: 1px solid rgba(15,34,24,0.08);
  border-radius: var(--radius); padding: 20px 22px;
  display: flex; align-items: flex-start; gap: 16px;
  transition: box-shadow 0.3s, transform 0.3s;
}
.contact-card:hover { transform: translateX(4px); box-shadow: 0 8px 32px rgba(15,34,24,0.08); }
.contact-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; }
.contact-card h4 { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); margin-bottom: 4px; }
.contact-card p { font-size: 0.85rem; color: var(--text-mid); line-height: 1.65; }
.contact-card a { color: var(--text-mid); transition: color 0.2s; }
.contact-card a:hover { color: var(--gold); }
.whatsapp-card { background: var(--forest); border-color: var(--forest); }
.whatsapp-card > a { display: flex; gap: 16px; align-items: flex-start; width: 100%; }
.whatsapp-card h4 { color: var(--gold); }
.whatsapp-card p { color: rgba(255,255,255,0.6); }

.contact-form-wrap {
  background: var(--white);
  border: 1px solid rgba(15,34,24,0.08);
  border-radius: var(--radius-lg); padding: 40px;
  box-shadow: 0 24px 80px rgba(15,34,24,0.07);
}
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 0.78rem; font-weight: 600; color: var(--text-mid); letter-spacing: 0.06em; text-transform: uppercase; }
.form-group input, .form-group select, .form-group textarea {
  padding: 12px 16px; border-radius: 10px;
  border: 1.5px solid rgba(15,34,24,0.12);
  font-size: 0.9rem; color: var(--text-dark);
  background: var(--cream);
  transition: border-color 0.25s, box-shadow 0.25s;
  outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.1);
  background: var(--white);
}
.form-group textarea { resize: vertical; }
.contact-form .btn-primary { margin-top: 4px; }

.map-wrap {
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: 0 24px 80px rgba(15,34,24,0.12);
  border: 4px solid var(--white);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--forest); padding: 80px 0 0;
  position: relative; overflow: hidden;
}
.footer-glow {
  position: absolute; top: -100px; left: 50%; transform: translateX(-50%);
  width: 600px; height: 300px;
  background: radial-gradient(ellipse, rgba(201,168,76,0.12), transparent 70%);
  pointer-events: none;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px; padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-logo { height: 40px; filter: brightness(1.5); margin-bottom: 12px; }
.footer-brand h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem; color: var(--white); margin-bottom: 14px;
}
.footer-brand p { font-size: 0.85rem; color: rgba(255,255,255,0.45); line-height: 1.7; margin-bottom: 24px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 40px; height: 40px; 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;
  color: rgba(255,255,255,0.6);
  transition: all 0.25s;
}
.footer-social a:hover { background: var(--gold); color: var(--forest); border-color: var(--gold); }
.footer-links h4, .footer-contact-info h4 {
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 20px;
}
.footer-links ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  color: rgba(255,255,255,0.45); font-size: 0.85rem;
  transition: color 0.25s;
}
.footer-links a:hover { color: var(--white); }
.footer-contact-info p {
  color: rgba(255,255,255,0.45); font-size: 0.85rem; line-height: 1.7; margin-bottom: 10px;
}
.footer-contact-info a { color: rgba(255,255,255,0.45); transition: color 0.25s; }
.footer-contact-info a:hover { color: var(--gold); }
.footer-bottom {
  padding: 24px 0; display: flex; justify-content: space-between; align-items: center;
}
.footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.25); }
.footer-crafted { color: rgba(201,168,76,0.5) !important; }

/* ============================================================
   WHATSAPP + SCROLL TOP
   ============================================================ */
.whatsapp-float {
  position: fixed; bottom: 32px; right: 32px; z-index: 500;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25d366;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  box-shadow: 0 8px 32px rgba(37,211,102,0.4);
  transition: transform 0.3s var(--ease-out-expo), box-shadow 0.3s;
  animation: floatWA 3s ease-in-out infinite;
}
.whatsapp-float:hover {
  transform: scale(1.12);
  box-shadow: 0 16px 48px rgba(37,211,102,0.5);
}
@keyframes floatWA {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
.scroll-top {
  position: fixed; bottom: 100px; right: 32px; z-index: 500;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--gold); color: var(--forest);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; font-weight: 700;
  box-shadow: 0 6px 24px rgba(201,168,76,0.4);
  cursor: pointer; transition: all 0.3s var(--ease-out-expo);
  opacity: 0; transform: translateY(20px);
}
.scroll-top.visible { opacity: 1; transform: translateY(0); }
.scroll-top:hover { background: var(--gold-light); transform: translateY(-4px) scale(1.08); }

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.reveal-up {
  opacity: 0; transform: translateY(48px);
  transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}
.reveal-left {
  opacity: 0; transform: translateX(-48px);
  transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}
.reveal-right {
  opacity: 0; transform: translateX(48px);
  transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}
.revealed { opacity: 1 !important; transform: none !important; }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.35s; }

/* ============================================================
   FORM SUCCESS
   ============================================================ */
.form-success {
  background: rgba(15,34,24,0.06); border: 1px solid var(--gold);
  border-radius: var(--radius); padding: 20px 24px;
  color: var(--forest); text-align: center;
  font-size: 0.9rem;
  display: none;
}
.form-success.show { display: block; animation: fadeIn 0.4s; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .dest-grid { grid-template-columns: repeat(2, 1fr); }
  .dest-card, .dest-card.featured, .dest-card:nth-child(5) { grid-column: span 1; min-height: 300px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 900px) {
  .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .about-img-secondary { display: none; }
  .about-years-badge { display: none; }
  .about-text { padding-left: 0; }
  .stats-glass { padding: 28px 24px; flex-wrap: wrap; gap: 24px; }
  .stat-divider { display: none; }
  .stat { min-width: 40%; }
  .gallery-masonry { grid-template-columns: repeat(2, 1fr); }
  .video-grid { grid-template-columns: 1fr; }
  .testi-card { min-width: calc(80vw); }
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
}
@media (max-width: 600px) {
  :root { --nav-h: 64px; }
  .hero-title { font-size: 2.4rem; }
  .dest-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .gallery-masonry { grid-template-columns: 1fr; }
  .gallery-item.tall { grid-row: span 1; }
  .gallery-item.wide { grid-column: span 1; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 6px; text-align: center; }
  .hero-images-strip { display: none; }
  .stats-glass { border-radius: var(--radius); }
  .contact-form-wrap { padding: 28px 20px; }
  .container { padding: 0 20px; }
}
