/* ===== ROOT VARIABLES ===== */
:root {
  --green-dark: #153010;
  --green-mid: #3B5A10;
  --green-light: #4f7a1a;
  --gold: #BEC050;
  --gold-light: #d1d46a;
  --accent: #9F5A20;
  --accent-light: #c07228;
  --beige: #f5efe6;
  --beige-dark: #ede3d4;
  --white: #ffffff;
  --text-dark: #1a1a1a;
  --text-muted: #6b6b6b;
  --shadow: 0 4px 24px rgba(0,0,0,0.12);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.18);
  --radius: 12px;
  --transition: all 0.3s ease;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}
img { display: block; width: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
button { cursor: pointer; border: none; outline: none; background: none; font-family: inherit; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5 {
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
  color: var(--green-dark);
}
h1 { font-size: clamp(2.2rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
p { font-size: 1rem; color: var(--text-muted); }

/* ===== UTILITY ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: clamp(40px, 8vh, 80px) 0; }
.section-alt { background: var(--beige); }
.text-center { text-align: center; }
.text-white { color: var(--white) !important; }
.text-gold { color: var(--gold); }
.badge {
  display: inline-block;
  background: rgba(201,169,110,0.15);
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.section-header { margin-bottom: 26px; }
.section-header p { max-width: 580px; margin: 10px auto 0; font-size: 0.98rem; }
.divider {
  width: 60px; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--green-light));
  margin: 16px auto 0;
  border-radius: 2px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.92rem;
  transition: all 0.28s ease;
  letter-spacing: 0.4px;
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(255,255,255,0.12);
  opacity: 0;
  transition: opacity 0.25s ease;
  border-radius: inherit;
}
.btn:hover::after { opacity: 1; }
.btn-primary {
  background: #0071c2;
  color: #ffffff;
  font-weight: 700;
  border: 1px solid #0071c2;
  box-shadow: 0 2px 8px rgba(0,113,194,0.28);
  letter-spacing: 0.01em;
}
.btn-primary:hover {
  background: #005fa3;
  border-color: #005fa3;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0,113,194,0.38);
}
.btn-outline {
  border: 2px solid var(--white);
  color: var(--white);
  padding: 10px 26px;
  backdrop-filter: blur(4px);
}
.btn-outline:hover { background: rgba(255,255,255,0.15); border-color: var(--white); }
.btn-outline-dark {
  border: 2px solid var(--green-dark);
  color: var(--green-dark);
  padding: 10px 26px;
}
.btn-outline-dark:hover { background: var(--green-dark); color: var(--white); transform: translateY(-1px); }
.btn-green {
  background: var(--green-dark);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(21,48,16,0.28);
}
.btn-green:hover { background: var(--green-mid); transform: translateY(-2px); box-shadow: 0 8px 22px rgba(21,48,16,0.35); }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0 0;
  transition: var(--transition);
}
.navbar.scrolled {
  background: var(--green-dark);
  box-shadow: 0 2px 20px rgba(0,0,0,0.25);
}
.navbar.scrolled .navbar-inner {
  padding: 4px 32px;
}
.navbar.scrolled .logo img {
  height: 54px !important;
  mix-blend-mode: normal !important;
  filter: hue-rotate(-85deg) saturate(1.15) brightness(1.9) drop-shadow(0 2px 4px rgba(0,0,0,0.25)) !important;
}
.navbar-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 32px;
  max-width: 1300px; margin: 0 auto;
}
.logo {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--white);
  font-weight: 700;
}
.logo-icon {
  width: 34px; height: 34px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
}
.logo span { display: flex; flex-direction: column; line-height: 1.1; }
.logo .sub { font-size: 0.68rem; font-family: 'Inter', sans-serif; font-weight: 400; letter-spacing: 2px; text-transform: uppercase; color: var(--gold-light); }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  color: rgba(255,255,255,0.88);
  font-size: 0.86rem;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 6px;
  letter-spacing: 0.3px;
  transition: var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--gold-light); }
.nav-book {
  background: #0071c2 !important;
  color: #ffffff !important;
  padding: 8px 18px !important;
  border-radius: 6px !important;
  font-weight: 700 !important;
  margin-left: 6px;
  font-size: 0.86rem !important;
  border: 1px solid #0071c2 !important;
  box-shadow: 0 2px 8px rgba(0,113,194,0.25) !important;
}
.nav-book:hover { background: #005fa3 !important; border-color: #005fa3 !important; transform: translateY(-1px); box-shadow: 0 4px 14px rgba(0,113,194,0.38) !important; }
.hamburger {
  display: none; flex-direction: column; gap: 5px; padding: 8px; cursor: pointer;
}
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: var(--transition); }
.mobile-menu {
  display: none;
  background: var(--green-dark);
  padding: 16px 24px 24px;
  flex-direction: column; gap: 4px;
}
.mobile-menu a {
  color: rgba(255,255,255,0.88);
  font-size: 1rem;
  padding: 12px 16px;
  border-radius: 8px;
  display: block;
}
.mobile-menu a:hover { background: rgba(255,255,255,0.08); color: var(--gold-light); }
.mobile-menu .nav-book { background: #0071c2 !important; color: #ffffff !important; font-weight: 700; text-align: center; margin-top: 8px; border-radius: 6px; border: 1px solid #0071c2 !important; }
.mobile-menu.open { display: flex; }

/* ===== HERO ===== */
.hero {
  position: relative; height: 100vh; min-height: 620px;
  overflow: hidden;
}
.hero-slides { position: relative; height: 100%; }
.hero-slide {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.hero-slide.active { opacity: 1; }
.hero-slide img { height: 100%; object-fit: cover; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.35) 0%, rgba(10,30,15,0.65) 100%);
}
.hero-content {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 0 24px;
  flex-direction: column;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(201,169,110,0.2);
  border: 1px solid rgba(201,169,110,0.5);
  color: var(--gold-light);
  padding: 8px 20px; border-radius: 50px;
  font-size: 0.78rem; letter-spacing: 2px; text-transform: uppercase;
  font-weight: 600; margin-bottom: 24px;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
/* Hide the location badge on the night-resort slide (slide 0) */
.hero.hide-hero-badge .hero-badge {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.hero-content h1 {
  color: var(--white);
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
  margin-bottom: 16px;
  max-width: 800px;
}
.hero-content p {
  color: rgba(255,255,255,0.85);
  font-size: clamp(1rem, 2vw, 1.2rem);
  max-width: 560px; margin-bottom: 40px;
}
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }
.hero-indicators {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 10px;
}
.hero-indicators span {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.4); cursor: pointer; transition: var(--transition);
}
.hero-indicators span.active { background: var(--gold); width: 24px; border-radius: 4px; }
.hero-scroll {
  position: absolute; bottom: 32px; right: 40px;
  color: rgba(255,255,255,0.7); font-size: 0.78rem; letter-spacing: 2px;
  writing-mode: vertical-rl; display: flex; align-items: center; gap: 10px;
}
.hero-scroll::before {
  content: ''; width: 1px; height: 50px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.5));
}

/* ===== WELCOME ===== */
.welcome-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center;
}
.welcome-text .badge { margin-bottom: 10px; }
.welcome-text h2 { margin-bottom: 14px; }
.welcome-text p { margin-bottom: 12px; font-size: 1rem; line-height: 1.75; }
.welcome-stats {
  display: flex; gap: 24px; margin-top: 24px; padding-top: 24px;
  border-top: 1px solid var(--beige-dark);
}
.stat h3 { font-size: 1.8rem; color: var(--green-dark); }
.stat p { font-size: 0.82rem; color: var(--text-muted); margin-top: 2px; }
.welcome-img {
  position: relative;
  border-radius: 20px; overflow: hidden;
  box-shadow: var(--shadow-lg);
  height: 380px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.welcome-img:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,0.22); }
.welcome-img img { height: 100%; transition: transform 0.5s ease; }
.welcome-img:hover img { transform: scale(1.04); }
.welcome-img-badge {
  position: absolute; bottom: 20px; left: 20px;
  background: var(--white);
  padding: 12px 18px; border-radius: 12px;
  box-shadow: var(--shadow);
  display: flex; align-items: center; gap: 12px;
}
.welcome-img-badge .icon { font-size: 1.6rem; }
.welcome-img-badge strong { display: block; font-size: 0.82rem; color: var(--green-dark); font-family: 'Inter', sans-serif; }
.welcome-img-badge span { font-size: 0.72rem; color: var(--text-muted); }

/* ===== ROOMS CAROUSEL ===== */
.rooms-carousel-section { position: relative; }
.rooms-carousel-wrapper {
  overflow: hidden;
  position: relative;
  margin: 0 -8px;
  padding: 0 8px;
}
.rooms-carousel-track {
  display: flex;
  transition: transform 0.6s ease;
  will-change: transform;
}
.rooms-carousel-track .room-card {
  min-width: calc(33.333% - 16px);
  flex-shrink: 0;
  margin-right: 24px;
}
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--green-dark);
  color: white;
  border: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
}
.carousel-btn:hover { background: var(--green-mid); transform: translateY(-50%) scale(1.08); }
.carousel-btn-prev { left: -24px; }
.carousel-btn-next { right: -24px; }

/* Legacy rooms-grid kept for any fallback usage */
.rooms-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 32px;
}
.room-card {
  background: var(--white); border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08), 0 1px 3px rgba(0,0,0,0.06);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  border: 1px solid rgba(0,0,0,0.05);
}
.room-card:hover { transform: translateY(-6px); box-shadow: 0 12px 36px rgba(0,0,0,0.16); }
.room-card-img { height: 220px; overflow: hidden; }
.room-card-img img { height: 100%; transition: transform 0.55s ease; }
.room-card:hover .room-card-img img { transform: scale(1.06); }
.room-card-body { padding: 22px; }
.room-card-body h3 { margin-bottom: 7px; font-size: 1.15rem; }
.room-card-body p { font-size: 0.9rem; margin-bottom: 16px; }
.room-amenities { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 16px; }
.amenity-tag {
  background: var(--beige); color: var(--green-dark);
  padding: 4px 11px; border-radius: 50px;
  font-size: 0.76rem; font-weight: 500;
  border: 1px solid var(--beige-dark);
  transition: background 0.2s ease, color 0.2s ease;
}
.amenity-tag:hover { background: var(--green-dark); color: var(--white); }
.room-footer { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.room-price { font-family: 'Playfair Display', serif; color: var(--green-dark); }
.room-price span { font-size: 1.35rem; font-weight: 700; }
.room-price small { font-size: 0.78rem; color: var(--text-muted); font-family: 'Inter', sans-serif; }

/* ===== WHY CHOOSE US ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.feature-card {
  text-align: center; padding: 18px 14px;
  border-radius: var(--radius); background: var(--white);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  border: 1px solid rgba(0,0,0,0.04);
}
.feature-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,0.12); }
.feature-icon {
  width: 46px; height: 46px; border-radius: 50%;
  background: linear-gradient(135deg, rgba(31,61,43,0.1), rgba(201,169,110,0.15));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; margin: 0 auto 10px;
  transition: transform 0.3s ease;
}
.feature-card:hover .feature-icon { transform: scale(1.1); }
.feature-card h3 { font-size: 0.94rem; margin-bottom: 6px; }
.feature-card p { font-size: 0.82rem; }

/* ===== ACTIVITIES ===== */
.activities-row {
  display: flex;
  gap: 24px;
  margin-bottom: 24px;
}
.activities-row-3 { }
.activities-row-3 .activity-card { flex: 1; }
.activities-row-2 {
  justify-content: center;
  margin-bottom: 0;
}
.activities-row-2 .activity-card {
  flex: 0 0 calc(33.333% - 16px);
}
.activity-card {
  position: relative; border-radius: var(--radius); overflow: hidden;
  height: 240px; cursor: pointer;
  box-shadow: 0 4px 20px rgba(0,0,0,0.14);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.activity-card:hover { transform: translateY(-5px); box-shadow: 0 12px 36px rgba(0,0,0,0.22); }
.activity-card img { height: 100%; transition: transform 0.55s ease; }
.activity-card:hover img { transform: scale(1.08); }
.activity-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,30,15,0.88) 0%, rgba(10,30,15,0.1) 55%, transparent 100%);
  display: flex; align-items: center; padding: 22px;
  flex-direction: column; justify-content: flex-end;
  text-align: center;
  transition: background 0.35s ease;
}
.activity-card:hover .activity-overlay {
  background: linear-gradient(to top, rgba(10,30,15,0.92) 0%, rgba(10,30,15,0.3) 55%, transparent 100%);
}
.activity-overlay h3 { color: var(--white); font-size: 1.1rem; margin-bottom: 5px; text-align: center; }
.activity-overlay p { color: rgba(255,255,255,0.8); font-size: 0.82rem; text-align: center; }
.activity-icon {
  position: absolute; top: 16px; left: 16px;
  background: rgba(255,255,255,0.18); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.3);
  width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: 1.2rem;
  transition: background 0.3s ease, transform 0.3s ease;
}
.activity-card:hover .activity-icon { background: rgba(255,255,255,0.28); transform: scale(1.1); }

/* ===== REVIEWS ===== */
.reviews-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px;
}
.review-card {
  background: var(--white); border-radius: 16px;
  padding: 18px 20px 20px; box-shadow: 0 2px 14px rgba(0,0,0,0.08);
  border-top: 3px solid var(--gold);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  flex-shrink: 0;
  box-sizing: border-box;
}
.review-card:hover { transform: translateY(-5px); box-shadow: 0 10px 32px rgba(0,0,0,0.14); }
.stars { color: var(--gold); font-size: 1rem; margin-bottom: 12px; letter-spacing: 2px; }
.review-text { font-style: italic; font-size: 0.87rem; color: var(--text-dark); line-height: 1.7; margin-bottom: 16px; }
.review-card .review-text { font-size: 0.88rem; line-height: 1.6; }
.reviewer { display: flex; align-items: center; gap: 12px; padding-top: 14px; border-top: 1px solid var(--beige-dark); }
.reviewer-avatar {
  width: 42px; height: 42px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--green-mid), var(--gold));
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-weight: 700; font-size: 1rem;
  font-family: 'Playfair Display', serif;
  box-shadow: 0 2px 8px rgba(45,90,61,0.3);
}
.reviewer strong { display: block; color: var(--green-dark); font-size: 0.9rem; }
.reviewer span { display: block; font-size: 0.78rem; color: var(--text-muted); margin-top: 2px; }

/* ===== LOCATION ===== */
.location-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 36px; align-items: center;
}
.location-info h2 { margin-bottom: 10px; font-size: clamp(1.4rem, 2.8vw, 2rem); }
.location-info p { font-size: 0.93rem; line-height: 1.7; margin-bottom: 14px; }
.location-features { display: flex; flex-direction: column; gap: 8px; }
.loc-item {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 13px; background: var(--beige); border-radius: 10px;
  border: 1px solid var(--beige-dark);
  transition: background 0.25s ease, transform 0.25s ease;
}
.loc-item:hover { background: #e8dece; transform: translateX(3px); }
.loc-item .icon { font-size: 1.15rem; flex-shrink: 0; }
.loc-item strong { display: block; color: var(--green-dark); font-size: 0.86rem; }
.loc-item span { font-size: 0.76rem; color: var(--text-muted); }
.map-container {
  border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-lg); height: 350px;
  transition: box-shadow 0.3s ease;
}
.map-container:hover { box-shadow: 0 12px 40px rgba(0,0,0,0.22); }
.map-container iframe { width: 100%; height: 100%; border: 0; }
.map-container-tall {
  height: 350px;
  min-height: 320px;
}

/* ===== LOCATION: MAP AS FULL-BACKGROUND (DESKTOP) ===== */

/* The map iframe fills the entire section as a background */
.location-map-bg {
  display: none; /* hidden by default; shown on desktop only */
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}
.location-map-bg iframe {
  width: 150%;
  height: 100%;
  border: 0;
  display: block;
  pointer-events: none;
  position: absolute;
  left: 0%;
  top: 0;
}

/* Gradient overlay: strong on the left (text side), fades to transparent on right
   so the map pin/marker area stays clear and legible */
.location-map-overlay {
  display: none; /* shown on desktop only */
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    90deg,
    rgba(10, 28, 17, 0.95) 0%,
    rgba(10, 28, 17, 0.90) 28%,
    rgba(10, 28, 17, 0.55) 48%,
    rgba(10, 28, 17, 0.10) 62%,
    rgba(10, 28, 17, 0.00) 70%
  );
  pointer-events: none;
}

/* Container sits above both the map bg and overlay */
.location-map-container {
  position: relative;
  z-index: 2;
  padding-top: clamp(40px, 7vh, 72px);
  padding-bottom: clamp(40px, 7vh, 72px);
}

/* Info panel: only left half on desktop — text sits over the dark gradient */
.location-info-panel {
  max-width: 520px;
}

/* On desktop: text/headings/features use light colors since map is the bg */
@media (min-width: 768px) {
  .location-map-section { background: transparent; }

  .location-map-bg,
  .location-map-overlay { display: block; }

  /* Mobile map hidden on desktop */
  .location-map-mobile { display: none !important; }

  /* Force light text over dark gradient */
  .location-info-panel .badge {
    background: rgba(201, 169, 110, 0.22);
    border-color: var(--gold);
    color: var(--gold-light);
  }
  .location-info-panel h2 {
    color: var(--white);
    margin-bottom: 12px;
    font-size: clamp(1.4rem, 2.8vw, 2rem);
  }
  .location-info-panel > p {
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.93rem;
    line-height: 1.7;
    margin-bottom: 18px;
  }

  /* loc-items: semi-transparent dark card so they read well over map */
  .location-info-panel .loc-item {
    background: rgba(10, 28, 17, 0.62);
    border-color: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
  }
  .location-info-panel .loc-item:hover {
    background: rgba(10, 28, 17, 0.80);
  }
  .location-info-panel .loc-item strong { color: var(--gold-light); }
  .location-info-panel .loc-item span { color: rgba(255, 255, 255, 0.68); }
}

/* Mobile: stacked layout — info on top, map below */
@media (max-width: 767px) {
  .location-map-section {
    background: var(--beige);
    min-height: unset !important;
    overflow: visible !important;
  }

  .location-map-container {
    padding-top: 36px;
    padding-bottom: 0;
  }

  .location-info-panel { max-width: 100%; }

  /* Mobile map: shown as a normal block below info */
  .location-map-mobile {
    display: block;
    height: 280px;
    margin-top: 24px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
  }
  .location-map-mobile iframe {
    width: 100%; height: 100%; border: 0; display: block;
  }

  /* Section needs padding bottom to clear the mobile map */
  .location-map-section { padding-bottom: 36px !important; }
}

/* ===== BOOKING CTA ===== */
.booking-cta {
  background: linear-gradient(135deg, #9F5A20 0%, #6b3a10 50%, #153010 100%);
  padding: clamp(48px, 10vh, 100px) 0; min-height: unset;
  text-align: center;
  position: relative; overflow: hidden;
}
.booking-cta::before {
  content: '';
  position: absolute; inset: 0;
  background: url('https://images.unsplash.com/photo-1441974231531-c6227db76b6e?w=1920&q=60') center/cover;
  opacity: 0.08;
}
.booking-cta .container { position: relative; }
.booking-cta h2 { color: var(--white); margin-bottom: 16px; }
.booking-cta p { color: rgba(255,255,255,0.75); font-size: 1.1rem; max-width: 520px; margin: 0 auto 40px; }
.booking-cta .btn-primary { font-size: 1.05rem; padding: 16px 40px; }

/* ===== GALLERY PREVIEW ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto;
  gap: 16px;
}
.gallery-item {
  border-radius: 10px; overflow: hidden;
  cursor: pointer; position: relative;
}
.gallery-item img { height: 200px; transition: transform 0.5s ease; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.gallery-item:nth-child(1) img { height: 100%; min-height: 416px; }
.gallery-item .gallery-overlay {
  position: absolute; inset: 0;
  background: rgba(10,30,15,0.4);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: var(--transition);
  font-size: 2rem; color: var(--white);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-more { text-align: center; margin-top: 40px; }

/* ===== FINAL CTA ===== */
.final-cta {
  background: var(--beige);
  padding: 38px 0; text-align: center;
}
.final-cta h2 { margin-bottom: 10px; }
.final-cta p { font-size: 1rem; max-width: 500px; margin: 0 auto 28px; }
.final-cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ===== FOOTER ===== */
.footer {
  background: var(--green-dark);
  color: rgba(255,255,255,0.8);
  padding: 72px 0 0;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 56px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand .logo { margin-bottom: 20px; }
.footer-brand p { font-size: 0.9rem; line-height: 1.8; max-width: 300px; }
.footer-social { display: flex; gap: 12px; margin-top: 24px; }
.social-icon {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.7); font-size: 1rem; transition: var(--transition);
}
.social-icon:hover { background: var(--gold); color: var(--green-dark); transform: translateY(-2px); }
.footer-col h4 {
  font-family: 'Playfair Display', serif;
  color: var(--white); font-size: 1.05rem; margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: 0.9rem; color: rgba(255,255,255,0.65);
  display: flex; align-items: center; gap: 8px;
}
.footer-col ul li a:hover { color: var(--gold-light); padding-left: 4px; }
.footer-contact-item {
  display: flex; gap: 12px; margin-bottom: 16px; align-items: flex-start;
}
.footer-contact-item .icon { font-size: 1.1rem; margin-top: 2px; flex-shrink: 0; }
.footer-contact-item span { font-size: 0.88rem; color: rgba(255,255,255,0.65); line-height: 1.6; }
.footer-bottom {
  padding: 20px 0;
  display: flex; align-items: center; justify-content: space-between;
}
.footer-bottom p { font-size: 0.85rem; color: rgba(255,255,255,0.5); }
.footer-bottom a { color: var(--gold-light); }

/* ===== WHATSAPP BUTTON ===== */
.whatsapp-btn {
  position: fixed; bottom: 32px; right: 32px; z-index: 999;
  width: 60px; height: 60px; border-radius: 50%;
  background: #25D366; color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem; box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  transition: var(--transition); text-decoration: none;
}
.whatsapp-btn:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,0.6); }
.whatsapp-btn::before {
  content: '';
  position: absolute; inset: -6px; border-radius: 50%;
  border: 2px solid rgba(37,211,102,0.4);
  animation: pulse-wa 2s infinite;
}
@keyframes pulse-wa {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.5); opacity: 0; }
}

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  min-height: 55vh; max-height: 70vh; height: clamp(320px, 60vh, 520px); position: relative;
  display: flex; align-items: center; justify-content: center;
  text-align: center; overflow: hidden;
}
.page-hero img {
  position: absolute; inset: 0; height: 100%; width: 100%; object-fit: cover;
}
.page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(10,30,15,0.7));
}
.page-hero-content { position: relative; padding: 0 24px; }
.page-hero-content .badge { margin-bottom: 12px; }
.page-hero-content h1 { color: var(--white); text-shadow: 0 2px 16px rgba(0,0,0,0.4); }
.page-hero-content p { color: rgba(255,255,255,0.8); font-size: 1.1rem; margin-top: 12px; }
.breadcrumb {
  display: flex; align-items: center; gap: 8px; justify-content: center;
  margin-top: 16px; color: rgba(255,255,255,0.65); font-size: 0.85rem;
}
.breadcrumb a { color: var(--gold-light); }
.breadcrumb span { color: rgba(255,255,255,0.4); }

/* ===== ROOMS PAGE ===== */
.rooms-page .rooms-grid { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }
.room-card-full .room-card-img { height: 260px; }

/* ===== SHUKLAPHANTA: ABOUT SECTION — desktop split layout ===== */

/* Mobile default: stacked, image first then text */
.park-about-layout {
  display: flex;
  flex-direction: column;
}
/* On mobile: slideshow (order 1) appears above text (order 2) */
.park-about-slideshow { order: 1; }
.park-about-text { order: 2; }

.park-about-gallery {
  display: none; /* hidden on mobile */
}
.park-about-text .park-intro {
  max-width: 100%;
  text-align: left;
}
.park-about-text .park-intro .divider {
  margin: 16px 0 0;
}

/* Desktop (≥ 992px): left half = text, right half = image grid */
@media (min-width: 992px) {
  .park-about-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: start;
    min-height: min(600px, 90vh);
  }
  /* Reset order for desktop — text on left, slideshow on right */
  .park-about-text { order: unset; }
  .park-about-slideshow { order: unset; }

  /* Left-align text in the split layout */
  .park-about-text .park-intro {
    text-align: left;
    max-width: 100%;
    margin: 0;
  }
  .park-about-text .park-intro .divider {
    margin: 16px 0 0;
  }

  .park-about-gallery {
    display: block;
  }

  .park-about-gallery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 12px;
    height: 100%;
  }

  /* First image spans both rows on the left column — tall portrait */
  .park-gal-item {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  .park-gal-item:hover { transform: scale(1.02); box-shadow: var(--shadow-lg); }
  .park-gal-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
  }
  .park-gal-item:hover img { transform: scale(1.05); }

  .park-gal-tall {
    grid-row: span 2;
  }
  .park-gal-tall img {
    height: 100%;
    min-height: 452px; /* 2 × 220px + 12px gap */
  }
}

/* ===== SHUKLAPHANTA: WILDLIFE — infinite horizontal auto-scroll ===== */

/* Keyframes for the continuous scroll */
@keyframes wildlifeScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); } /* 8 originals + 8 duplicates = 50% */
}

.wildlife-scroll-section {
  overflow: hidden;
}

/* Full-width outer: hides overflow so the strip scrolls behind edge */
.wildlife-scroll-outer {
  width: 100%;
  overflow: hidden;
  padding: 8px 0 16px;
  /* Fade edges to hint at off-screen content */
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 5%, black 95%, transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0%, black 5%, black 95%, transparent 100%);
}

/* The scrolling track: contains 6 original + 6 duplicate cards */
.wildlife-scroll-track {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 20px;
  width: max-content;
  animation: wildlifeScroll 30s linear infinite;
  will-change: transform;
}

/* Pause on hover (desktop) */
@media (hover: hover) {
  .wildlife-scroll-track:hover {
    animation-play-state: paused;
  }
}

/* Each card: compact size, max 5 visible at a time on desktop */
.wildlife-scroll-card {
  flex: 0 0 auto;
  width: clamp(200px, 18vw, 240px); /* ~5 cards across 1200px container */
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.wildlife-scroll-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.wildlife-scroll-img {
  height: 150px;
  overflow: hidden;
}
.wildlife-scroll-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.wildlife-scroll-card:hover .wildlife-scroll-img img {
  transform: scale(1.06);
}

.wildlife-scroll-body {
  padding: 14px 16px 10px;
}
.wildlife-scroll-body h3 {
  font-size: 0.92rem;
  margin-bottom: 6px;
  color: var(--green-dark);
  font-family: 'Playfair Display', serif;
}
.wildlife-scroll-body p {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0;
}

/* Wildlife population stat bar */
.wildlife-stat-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px 10px;
  border-top: 1px solid rgba(21, 48, 16, 0.08);
  background: rgba(21, 48, 16, 0.04);
}
.wildlife-stat-icon {
  font-size: 0.78rem;
  flex-shrink: 0;
}
.wildlife-stat-num {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--green-dark);
  white-space: nowrap;
}
.wildlife-stat-label {
  font-size: 0.68rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
/* Alert variant — critically endangered */
.wildlife-stat-bar--alert {
  background: rgba(220, 60, 30, 0.06);
  border-top-color: rgba(220, 60, 30, 0.15);
}
.wildlife-stat-bar--alert .wildlife-stat-num {
  color: #b83a1a;
}
.wildlife-stat-bar--alert .wildlife-stat-label {
  color: #b83a1a;
}
/* Rare variant */
.wildlife-stat-bar--rare {
  background: rgba(201, 169, 110, 0.1);
  border-top-color: rgba(201, 169, 110, 0.3);
}
.wildlife-stat-bar--rare .wildlife-stat-num {
  color: #8a6a20;
}
.wildlife-stat-bar--rare .wildlife-stat-label {
  color: #8a6a20;
}

/* Mobile: slightly smaller cards */
@media (max-width: 768px) {
  .wildlife-scroll-card {
    width: 200px;
  }
  .wildlife-scroll-img { height: 130px; }
  .wildlife-scroll-track { gap: 14px; animation-duration: 24s; }
}

/* ===== SHUKLAPHANTA: ACTIVITIES — desktop grid / mobile infinite scroll ===== */

.activities-scroll-section {
  background: linear-gradient(
    135deg,
    #1a3626 0%,
    #2c4a35 25%,
    #3d5a3e 50%,
    #4a5430 70%,
    #5c5028 100%
  );
  overflow: hidden;
}

.activities-scroll-section .section-header .badge {
  background: rgba(201, 169, 110, 0.2);
  border-color: var(--gold);
  color: var(--gold-light);
}
.activities-scroll-section .section-header h2 { color: var(--white); }
.activities-scroll-section .section-header p { color: rgba(255, 255, 255, 0.72); }
.activities-scroll-section .section-header .divider {
  background: linear-gradient(90deg, var(--gold-light), var(--gold));
}

/* Desktop (≥992px): all 6 cards in one flex row, no scroll */
.activities-desktop-grid {
  display: none;
}
@media (min-width: 992px) {
  .activities-desktop-grid {
    display: flex;
    flex-wrap: nowrap;
    gap: 16px;
    padding: 8px 0 20px;
  }
  .activities-desktop-grid .activity-scroll-card {
    flex: 1 1 0;
    min-width: 0;
    width: auto;
  }
  .activities-desktop-grid .activity-scroll-card .activity-scroll-body h3 {
    font-size: 0.84rem;
  }
  .activities-desktop-grid .activity-scroll-card .activity-scroll-body p {
    font-size: 0.73rem;
  }
  .activities-scroll-outer { display: none; }
}

/* Mobile/tablet (<992px): keep infinite scroll */
@keyframes activitiesScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.activities-scroll-outer {
  width: 100%;
  overflow: hidden;
  padding: 8px 0 20px;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 5%, black 95%, transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0%, black 5%, black 95%, transparent 100%);
}

.activities-scroll-track {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 20px;
  width: max-content;
  animation: activitiesScroll 26s linear infinite;
  will-change: transform;
}

@media (hover: hover) {
  .activities-scroll-track:hover { animation-play-state: paused; }
}

.activity-scroll-card {
  flex: 0 0 auto;
  width: clamp(200px, 18vw, 240px);
  background: rgba(255, 255, 255, 0.96);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.28);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.activity-scroll-card:hover {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.38);
  transform: translateY(-3px);
}

.activity-scroll-img {
  height: 150px;
  overflow: hidden;
}
.activity-scroll-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.activity-scroll-card:hover .activity-scroll-img img { transform: scale(1.06); }

.activity-scroll-body { padding: 14px 16px 18px; }
.activity-scroll-body h3 {
  font-size: 0.92rem;
  margin-bottom: 6px;
  color: var(--green-dark);
  font-family: 'Playfair Display', serif;
}
.activity-scroll-body p {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0;
}

@media (max-width: 768px) {
  .activity-scroll-card { width: 200px; }
  .activity-scroll-img { height: 130px; }
  .activities-scroll-track { gap: 14px; animation-duration: 20s; }
}

/* ===== SHUKLAPHANTA: ABOUT — right side slideshow ===== */
.park-about-slideshow {
  display: none;
}
@media (min-width: 992px) {
  .park-about-gallery { display: none !important; }
  .park-about-slideshow {
    display: block;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    height: 100%;
    min-height: min(480px, 80vh);
    max-height: 85vh;
  }
  .park-about-slideshow-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.4s ease;
  }
  .park-about-slideshow-img.active { opacity: 1; }
  .park-about-slideshow-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
}
@media (max-width: 991px) {
  .park-about-slideshow {
    display: block;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    height: 220px;
    width: 100%;
    margin-top: 0;
    margin-bottom: 24px;
  }
  .park-about-slideshow-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.4s ease;
  }
  .park-about-slideshow-img.active { opacity: 1; }
  .park-about-slideshow-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
}

/* ===== SHUKLAPHANTA: WILDLIFE — gradient background ===== */
.wildlife-scroll-section {
  background: linear-gradient(
    160deg,
    #0d2318 0%,
    #142d1e 30%,
    #1a3a26 55%,
    #1f3d2b 80%,
    #162b1d 100%
  );
  overflow: hidden;
}
.wildlife-scroll-section .section-header .badge {
  background: rgba(201, 169, 110, 0.2);
  border-color: var(--gold);
  color: var(--gold-light);
}
.wildlife-scroll-section .section-header h2 { color: var(--white); }
.wildlife-scroll-section .section-header p { color: rgba(255, 255, 255, 0.72); }
.wildlife-scroll-section .section-header .divider {
  background: linear-gradient(90deg, var(--gold-light), var(--gold));
}
.wildlife-scroll-card { background: rgba(255,255,255,0.97); }

/* ===== SHUKLAPHANTA: BEST TIME — weather/nature background ===== */
.best-time-section {
  position: relative;
  overflow: hidden;
}
.best-time-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?w=1600&q=60') center/cover no-repeat;
  opacity: 0.12;
  z-index: 0;
}
.best-time-section .container { position: relative; z-index: 1; }

/* ===== SHUKLAPHANTA: WHY STAY — 5-col desktop, 3-col tablet, 2-col mobile ===== */
.why-stay-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.why-stay-grid .why-card h3 { font-size: 1rem; }
@media (max-width: 1100px) {
  .why-stay-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 600px) {
  .why-stay-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
}

/* ===== INDEX: ACTIVITIES — single row desktop + gradient bg ===== */
.activities-section-gradient {
  background: linear-gradient(
    135deg,
    #f0ede6 0%,
    #e8e2d8 30%,
    #ddd6c8 60%,
    #e5e0d5 100%
  );
}
.activities-desktop .activities-row-3,
.activities-desktop .activities-row-2 {
  margin-bottom: 0;
}
@media (min-width: 992px) {
  .activities-desktop {
    display: flex !important;
    flex-wrap: nowrap;
    gap: 18px;
  }
  .activities-desktop .activities-row-3,
  .activities-desktop .activities-row-2 {
    display: contents;
  }
  .activities-desktop .activity-card {
    flex: 1 1 0;
    min-width: 0;
    height: 280px;
  }
  .activities-desktop .activity-overlay h3 { font-size: 0.95rem; }
  .activities-desktop .activity-overlay p { font-size: 0.76rem; }
}

/* ===== INDEX: ROOMS — gradient background ===== */
.rooms-section-gradient {
  background: linear-gradient(
    160deg,
    #1a3626 0%,
    #213d2e 35%,
    #1f3d2b 65%,
    #162b1d 100%
  );
}
.rooms-section-gradient .section-header .badge {
  background: rgba(201, 169, 110, 0.2);
  border-color: var(--gold);
  color: var(--gold-light);
}
.rooms-section-gradient .section-header h2 { color: var(--white); }
.rooms-section-gradient .section-header p { color: rgba(255, 255, 255, 0.72); }
.rooms-section-gradient .section-header .divider {
  background: linear-gradient(90deg, var(--gold-light), var(--gold));
}
.rooms-section-gradient .room-card { box-shadow: 0 4px 20px rgba(0,0,0,0.3); }
.rooms-section-gradient .btn-green { background: var(--gold); color: var(--green-dark); }
.rooms-section-gradient .btn-green:hover { background: var(--gold-light); }

/* ===== ACTIVITY POPUP MODAL ===== */
.activity-modal-overlay {
  display: none;
  position: fixed; inset: 0; z-index: 3000;
  background: rgba(0,0,0,0.72);
  align-items: center; justify-content: center;
  padding: 20px;
  overflow-y: auto;
  animation: fadeOverlay 0.25s ease;
}
.activity-modal-overlay.open { display: flex; }
.activity-modal {
  background: var(--white);
  border-radius: 20px;
  max-width: 640px; width: 100%;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,0.38);
  animation: slideModal 0.32s cubic-bezier(0.34,1.2,0.64,1);
  position: relative;
  margin: auto;
}
.activity-modal-img {
  height: 260px; overflow: hidden; position: relative;
}
.activity-modal-img img { width: 100%; height: 100%; object-fit: cover; }
.activity-modal-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(10,30,15,0.6) 100%);
}
.activity-modal-close {
  position: absolute; top: 16px; right: 16px;
  background: rgba(255,255,255,0.9); backdrop-filter: blur(6px);
  border: none; width: 38px; height: 38px; border-radius: 50%;
  font-size: 1.3rem; color: var(--green-dark);
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  z-index: 10; transition: all 0.22s ease; line-height: 1;
}
.activity-modal-close:hover { background: var(--white); transform: scale(1.1); }
.activity-modal-body { padding: 28px 30px 30px; }
.activity-modal-body h3 { font-size: 1.6rem; color: var(--green-dark); margin-bottom: 12px; }
.activity-modal-body p { font-size: 0.95rem; line-height: 1.75; color: var(--text-muted); margin-bottom: 20px; }
.activity-modal-footer {
  padding-top: 16px; border-top: 1px solid var(--beige-dark);
  display: flex; justify-content: flex-end; gap: 10px;
}

/* ===== GALLERY PAGE ===== */
.gallery-filter {
  display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 48px;
}
.filter-btn {
  padding: 10px 24px; border-radius: 50px;
  border: 2px solid var(--beige-dark);
  background: var(--white); color: var(--text-muted);
  font-size: 0.9rem; font-weight: 500; transition: var(--transition);
  cursor: pointer;
}
.filter-btn.active, .filter-btn:hover {
  background: var(--green-dark); color: var(--white); border-color: var(--green-dark);
}
.masonry-grid {
  columns: 4; column-gap: 16px;
}
.masonry-item {
  break-inside: avoid; margin-bottom: 16px;
  border-radius: 10px; overflow: hidden;
  cursor: pointer; position: relative;
}
.masonry-item img { display: block; width: 100%; border-radius: 10px; transition: transform 0.5s ease; }
.masonry-item:hover img { transform: scale(1.04); }
.masonry-item .gallery-overlay {
  position: absolute; inset: 0; background: rgba(10,30,15,0.4);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: var(--transition); font-size: 2rem; color: var(--white);
  border-radius: 10px;
}
.masonry-item:hover .gallery-overlay { opacity: 1; }

/* Lightbox */
.lightbox {
  display: none; position: fixed; inset: 0; z-index: 2000;
  background: rgba(0,0,0,0.92); align-items: center; justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 85vh; object-fit: contain; border-radius: 8px; }
.lightbox-close {
  position: absolute; top: 24px; right: 32px;
  color: var(--white); font-size: 2.5rem; cursor: pointer;
  background: none; border: none; line-height: 1;
}
.lightbox-prev, .lightbox-next {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.15); border: none; color: var(--white);
  width: 52px; height: 52px; border-radius: 50%;
  font-size: 1.4rem; cursor: pointer; transition: var(--transition);
  display: flex; align-items: center; justify-content: center;
}
.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }
.lightbox-prev:hover, .lightbox-next:hover { background: rgba(255,255,255,0.3); }

/* ===== SHUKLAPHANTA PAGE ===== */
.park-intro { max-width: 840px; margin: 0 auto; text-align: center; }
.park-intro p { font-size: 1.1rem; line-height: 1.9; margin-bottom: 16px; }
.wildlife-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 28px;
}
.wildlife-card {
  border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); transition: var(--transition);
}
.wildlife-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.wildlife-card-img { height: 200px; overflow: hidden; }
.wildlife-card-img img { height: 100%; transition: transform 0.5s ease; }
.wildlife-card:hover .wildlife-card-img img { transform: scale(1.06); }
.wildlife-card-body { padding: 20px; }
.wildlife-card-body h3 { font-size: 1.1rem; margin-bottom: 8px; }
.wildlife-card-body p { font-size: 0.9rem; }
.best-time-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px;
}
.season-card {
  padding: 28px 24px; border-radius: var(--radius); text-align: center;
  border: 2px solid var(--beige-dark); transition: var(--transition);
}
.season-card.best { border-color: var(--gold); background: rgba(201,169,110,0.06); }
.season-card.avoid { border-color: #e0e0e0; opacity: 0.75; }
/* Featured / recommended season — Winter (Dec–Feb) */
.season-card.featured-season {
  border: 2px solid var(--green-mid);
  background: linear-gradient(145deg, rgba(59,90,16,0.08) 0%, rgba(190,192,80,0.10) 100%);
  box-shadow: 0 4px 24px rgba(21,48,16,0.14);
  position: relative;
  overflow: hidden;
}
.season-card.featured-season:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(21,48,16,0.22);
}
.season-badge.featured {
  background: var(--green-mid);
  color: var(--white);
  padding: 5px 16px;
}
.season-highlight-strip {
  margin-top: 16px;
  padding: 6px 14px;
  background: rgba(21,48,16,0.08);
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--green-dark);
  display: inline-block;
}
.season-icon { font-size: 2.5rem; margin-bottom: 12px; }
.season-card h3 { font-size: 1.05rem; margin-bottom: 8px; }
.season-card p { font-size: 0.88rem; }
.season-badge {
  display: inline-block; padding: 4px 14px; border-radius: 50px;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  margin-bottom: 12px;
}
.season-badge.best { background: var(--gold); color: var(--green-dark); }
.season-badge.avoid { background: #e0e0e0; color: var(--text-muted); }

/* A2 — Best Time: mobile horizontal scroll (≤768px) */
@media (max-width: 768px) {
  .best-time-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    gap: 12px;
    padding-bottom: 8px;
  }
  .best-time-grid::-webkit-scrollbar { display: none; }
  .best-time-grid .season-card {
    flex: 0 0 48%;
    min-width: 48%;
    scroll-snap-align: start;
  }
}

/* A3 — Location Advantage: mobile horizontal scroll (≤768px) */
@media (max-width: 768px) {
  .why-stay-grid {
    display: flex !important;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    gap: 12px;
    padding-bottom: 8px;
  }
  .why-stay-grid::-webkit-scrollbar { display: none; }
  .why-stay-grid .why-card {
    flex: 0 0 70%;
    min-width: 70%;
    scroll-snap-align: start;
    padding: 18px 16px;
  }
  .why-stay-grid .why-card h3 { font-size: 0.95rem; }
  .why-stay-grid .why-card p { font-size: 0.82rem; }
  .why-stay-grid .why-card .icon { font-size: 1.6rem; margin-bottom: 10px; }
}

/* ===== CONTACT PAGE ===== */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px;
}
.contact-info h2 { margin-bottom: 16px; }
.contact-info p { font-size: 1.05rem; line-height: 1.8; margin-bottom: 36px; }
.contact-item {
  display: flex; gap: 16px; margin-bottom: 28px; align-items: flex-start;
}
.contact-icon {
  width: 52px; height: 52px; border-radius: 12px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--green-dark), var(--green-mid));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; color: var(--white);
}
.contact-item-text strong { display: block; color: var(--green-dark); font-size: 0.95rem; margin-bottom: 4px; }
.contact-item-text span, .contact-item-text a { font-size: 0.92rem; color: var(--text-muted); }
.contact-form {
  background: var(--white); padding: 44px; border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}
.contact-form h3 { margin-bottom: 28px; font-size: 1.5rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.88rem; font-weight: 600; color: var(--green-dark); margin-bottom: 8px; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 14px 16px;
  border: 2px solid var(--beige-dark); border-radius: 10px;
  font-family: 'Inter', sans-serif; font-size: 0.95rem;
  color: var(--text-dark); background: var(--beige);
  transition: var(--transition); outline: none;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  border-color: var(--green-mid); background: var(--white);
}
.form-group textarea { min-height: 130px; resize: vertical; }
.contact-map { margin-top: 64px; }
.contact-map h3 { margin-bottom: 24px; text-align: center; font-size: 1.5rem; }
.whatsapp-contact {
  display: inline-flex; align-items: center; gap: 12px;
  background: #25D366; color: var(--white);
  padding: 14px 32px; border-radius: 50px;
  font-weight: 700; font-size: 1rem;
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(37,211,102,0.35);
  margin-top: 16px;
}
.whatsapp-contact:hover { background: #1db954; transform: translateY(-2px); }

/* ===== CONTACT MAP MODERN ===== */
.contact-map-modern { margin-top: 64px; }
.contact-map-header { text-align: center; margin-bottom: 32px; }
.contact-map-header h2 { font-size: clamp(1.4rem, 2.5vw, 1.9rem); }
.contact-map-header p { color: var(--text-muted, #6b7280); max-width: 560px; margin: 10px auto 0; }
.contact-map-body {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 0;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,0.13);
  min-height: 380px;
}
.contact-map-details {
  background: linear-gradient(160deg, #0a2a16 0%, #143d22 100%);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.cmap-item { display: flex; gap: 16px; align-items: flex-start; }
.cmap-icon {
  width: 40px; height: 40px; min-width: 40px;
  background: rgba(201,169,110,0.18);
  border: 1px solid rgba(201,169,110,0.35);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-light, #c9a96e); font-size: 1rem;
}
.cmap-item strong { display: block; color: #fff; font-size: 0.88rem; margin-bottom: 2px; }
.cmap-item span { color: rgba(255,255,255,0.65); font-size: 0.83rem; line-height: 1.5; }
.contact-map-embed { position: relative; min-height: 380px; }
.contact-map-embed iframe { width: 100%; height: 100%; border: 0; display: block; }
@media (max-width: 768px) {
  .contact-map-body { grid-template-columns: 1fr; }
  .contact-map-embed { min-height: 280px; }
}

/* ===== FADE IN ANIMATION ===== */
.fade-in {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ===== REVIEWS CAROUSEL ===== */
.reviews-carousel-wrapper {
  overflow: hidden;
  position: relative;
  border-radius: var(--radius);
  max-height: min(500px, 70vh);
}
.reviews-carousel-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.4,0,0.2,1);
  will-change: transform;
  gap: 0;
}
.reviews-carousel-track .review-card {
  /* Show exactly 3 cards at a time: (100% - 2*gap) / 3 */
  min-width: calc(33.333% - 16px);
  flex: 0 0 calc(33.333% - 16px);
  flex-shrink: 0;
  margin-right: 24px;
  box-sizing: border-box;
}

/* Dot indicators */
.reviews-dots {
  display: flex; justify-content: center; align-items: center;
  gap: 10px; margin-top: 24px;
}
.reviews-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--beige-dark);
  border: none; cursor: pointer; padding: 0;
  transition: background 0.3s ease, transform 0.3s ease, width 0.3s ease;
}
.reviews-dot.active {
  background: var(--green-mid);
  transform: scale(1.2);
  width: 26px;
  border-radius: 5px;
}

/* ===== HOMEPAGE 2-COLUMN ROOMS GRID (legacy) ===== */
.rooms-2col-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 40px;
}
.rooms-2col-grid .room-card-img { height: 240px; }

/* ===== HOMEPAGE 4-COLUMN ROOMS GRID ===== */
.rooms-4col-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-bottom: 8px;
}
.rooms-4col-grid .room-card-img { height: 180px; }
.rooms-4col-grid .room-card-body { padding: 16px 18px 18px; }
.rooms-4col-grid .room-card-body h3 { font-size: 1.05rem; margin-bottom: 6px; }
.rooms-4col-grid .room-card-body p { font-size: 0.84rem; margin-bottom: 14px; }
.rooms-4col-grid .room-amenities { gap: 8px; margin-bottom: 14px; }
.rooms-4col-grid .amenity-tag { font-size: 0.72rem; padding: 3px 10px; }
.btn-sm-room {
  padding: 8px 16px !important;
  font-size: 0.8rem !important;
}

/* ===== MODERN ROOMS PAGE ===== */
.rooms-modern-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 64px;
}
.room-modern-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
  border-top: 4px solid var(--gold);
}
.room-modern-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(0,0,0,0.18); }
.room-modern-img {
  height: 320px;
  position: relative;
  overflow: hidden;
}
.room-modern-img img { height: 100%; transition: transform 0.5s ease; }
.room-modern-card:hover .room-modern-img img { transform: scale(1.05); }
.room-modern-flag {
  position: absolute; top: 18px; left: 18px;
  background: rgba(31,61,43,0.88); backdrop-filter: blur(6px);
  color: var(--gold-light); padding: 6px 16px;
  border-radius: 50px; font-size: 0.78rem;
  font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
}
.room-modern-body { padding: 28px; }
.room-modern-body h2 { font-size: 1.5rem; margin-bottom: 4px; }
.room-modern-tagline { color: var(--text-muted); font-size: 0.88rem; margin-bottom: 16px; font-style: italic; }
.room-modern-beds {
  display: flex; align-items: center; gap: 10px;
  background: var(--beige); border-radius: 8px;
  padding: 10px 16px; margin-bottom: 18px;
}
.room-modern-beds i { color: var(--green-mid); font-size: 1.1rem; }
.room-modern-beds span { font-size: 0.9rem; font-weight: 600; color: var(--green-dark); }
.room-modern-amenities {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 9px; margin-bottom: 24px;
}
.room-modern-amenity {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.86rem; color: var(--text-dark);
}
.room-modern-amenity i { color: var(--green-mid); width: 15px; }
.room-modern-footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--beige-dark);
}
.room-modern-price .price-label { font-size: 0.76rem; color: var(--text-muted); }
.room-modern-price .price-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.7rem; font-weight: 700; color: var(--green-dark); line-height: 1;
}
.room-modern-price .price-per { font-size: 0.76rem; color: var(--text-muted); }

/* Included Amenities */
.included-grid {
  display: grid; grid-template-columns: repeat(8, 1fr); gap: 14px;
}
.included-item {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; padding: 18px 12px;
  background: var(--white); border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06); transition: var(--transition);
}
.included-item:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.included-item i { color: var(--green-mid); font-size: 1.3rem; margin-bottom: 8px; }
.included-item span { font-size: 0.82rem; color: var(--text-dark); font-weight: 500; }

/* Facilities */
.facilities-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}
.facility-card {
  background: var(--white); border-radius: 16px;
  overflow: hidden; box-shadow: var(--shadow); transition: var(--transition);
}
.facility-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.facility-card-img { height: 200px; overflow: hidden; }
.facility-card-img img { height: 100%; transition: transform 0.5s ease; }
.facility-card:hover .facility-card-img img { transform: scale(1.06); }
.facility-card-body { padding: 22px; }
.facility-card-body h3 { font-size: 1.1rem; margin-bottom: 8px; }
.facility-card-body p { font-size: 0.88rem; }

/* ===== REVIEW PLATFORM BADGES ===== */
.review-platform-badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 10px; border-radius: 50px;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.5px;
  margin-bottom: 10px; text-transform: uppercase;
}
.review-platform-badge.tripadvisor {
  background: rgba(0,170,108,0.12); color: #007a4d;
  border: 1px solid rgba(0,170,108,0.35);
}
.review-platform-badge.booking {
  background: rgba(0,53,128,0.1); color: #003580;
  border: 1px solid rgba(0,53,128,0.3);
}
.review-platform-badge.google {
  background: rgba(66,133,244,0.1); color: #3367d6;
  border: 1px solid rgba(66,133,244,0.3);
}
.review-platform-badge svg { flex-shrink: 0; }
.review-score-badge {
  display: inline-block;
  background: #003580; color: #fff;
  font-size: 1rem; font-weight: 700;
  padding: 3px 9px; border-radius: 6px;
  margin-left: 4px; vertical-align: middle;
}
.review-card .stars-google {
  color: transparent;
  font-size: 1rem;
  letter-spacing: 1px;
  margin-bottom: 10px;
  background: linear-gradient(90deg, #fbbc05 80%, #e0e0e0 80%);
  -webkit-background-clip: text;
  background-clip: text;
}
.review-card .stars-filled { color: #fbbc05; font-size: 1rem; margin-bottom: 10px; letter-spacing: 1px; }
.review-reviewer-flag { font-size: 0.9rem; }

/* ===== GALLERY SINGLE-SLIDE CAROUSEL ===== */
.gallery-carousel-section { position: relative; }
.gallery-slider-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  max-width: 100%;
  background: var(--green-dark);
}
.gallery-slider-track {
  display: flex;
  transition: transform 0.55s cubic-bezier(0.4,0,0.2,1);
  will-change: transform;
}
.gallery-slide {
  flex: 0 0 100%;
  min-width: 100%;
  position: relative;
  cursor: pointer;
}
.gallery-slide img {
  width: 100%;
  height: clamp(320px, 50vh, 520px);
  object-fit: cover;
  display: block;
  border-radius: 16px;
}
.gallery-slide-overlay {
  position: absolute; inset: 0;
  background: rgba(10,30,15,0.25);
  border-radius: 16px;
  opacity: 0; transition: opacity 0.3s ease;
  display: flex; align-items: center; justify-content: center;
  font-size: 2.5rem; color: var(--white);
}
.gallery-slide:hover .gallery-slide-overlay { opacity: 1; }
.gallery-slider-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.92); backdrop-filter: blur(6px);
  border: none; width: 50px; height: 50px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; color: var(--green-dark);
  cursor: pointer; transition: all 0.25s ease; z-index: 5;
  box-shadow: 0 4px 16px rgba(0,0,0,0.18);
}
.gallery-slider-btn:hover { background: var(--white); transform: translateY(-50%) scale(1.07); box-shadow: 0 6px 22px rgba(0,0,0,0.24); }
.gallery-slider-prev { left: 16px; }
.gallery-slider-next { right: 16px; }
.gallery-slider-dots {
  display: flex; justify-content: center; align-items: center;
  gap: 8px; margin-top: 18px;
}
.gallery-slider-dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--beige-dark); border: none; cursor: pointer; padding: 0;
  transition: background 0.3s ease, transform 0.3s ease, width 0.3s ease;
}
.gallery-slider-dot.active {
  background: var(--green-mid); transform: scale(1.15);
  width: 24px; border-radius: 5px;
}
.gallery-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 20px 24px 16px;
  background: linear-gradient(to top, rgba(10,30,15,0.8) 0%, transparent 100%);
  border-radius: 0 0 16px 16px;
}
.gallery-caption p { color: rgba(255,255,255,0.9); font-size: 0.88rem; margin: 0; }

/* ===== DESKTOP-ONLY WRAPPERS — disabled, replaced by scroll rows ===== */
.activities-desktop { display: none !important; }
.features-desktop   { display: none !important; }
/* Mobile carousels also disabled — replaced by unified scroll rows */
.activities-mobile-carousel { display: none !important; }
.features-mobile-carousel   { display: none !important; }

/* ===== FEATURES UNIFIED SCROLL ROW ===== */
.features-scroll-row {
  display: flex;
  gap: 16px;
  margin-top: 28px;
}
/* On large screens: 6 equal columns */
.features-scroll-row .feature-card {
  flex: 1 1 0;
  min-width: 0;
}
/* On smaller screens: scroll sideways, don't stack */
@media (max-width: 1100px) {
  .features-scroll-row {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 8px;
    gap: 14px;
  }
  .features-scroll-row::-webkit-scrollbar { display: none; }
  .features-scroll-row .feature-card {
    flex: 0 0 200px;
    min-width: 200px;
    scroll-snap-align: start;
  }
}
@media (max-width: 640px) {
  .features-scroll-row .feature-card {
    flex: 0 0 72vw;
    min-width: 200px;
  }
}

/* ===== ACTIVITIES UNIFIED SCROLL ROW ===== */
.activities-scroll-row {
  display: flex;
  gap: 20px;
  margin-top: 28px;
}
.activities-scroll-row .activity-card {
  flex: 1 1 0;
  min-width: 0;
  height: 280px;
}
@media (max-width: 1300px) {
  .activities-scroll-row {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 8px;
  }
  .activities-scroll-row::-webkit-scrollbar { display: none; }
  .activities-scroll-row .activity-card {
    flex: 0 0 280px;
    min-width: 280px;
    scroll-snap-align: start;
  }
}
@media (max-width: 640px) {
  .activities-scroll-row .activity-card {
    flex: 0 0 80vw;
    min-width: 240px;
  }
}
@media (max-width: 768px) {
  .activity-card { height: clamp(200px, 50vw, 280px) !important; }
  .activities-scroll-row .activity-card { height: clamp(200px, 50vw, 280px) !important; }
}

/* ===== GLOBAL MOBILE ANTI-STACK (scroll sideways instead) ===== */
@media (max-width: 768px) {
  /* Rooms grid */
  .rooms-4col-grid {
    display: flex !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory !important;
    scrollbar-width: none !important;
    gap: 16px !important;
    padding-bottom: 8px !important;
    grid-template-columns: unset !important;
  }
  .rooms-4col-grid::-webkit-scrollbar { display: none; }
  .rooms-4col-grid .room-card {
    flex: 0 0 82vw !important;
    scroll-snap-align: start !important;
    min-width: 260px !important;
  }

  /* Facilities grid */
  .facilities-grid {
    display: flex !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory !important;
    scrollbar-width: none !important;
    gap: 16px !important;
  }
  .facilities-grid::-webkit-scrollbar { display: none; }
  .facilities-grid .facility-card {
    flex: 0 0 82vw !important;
    scroll-snap-align: start !important;
    min-width: 260px !important;
  }

  /* Why-stay grid */
  .why-stay-grid {
    display: flex !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory !important;
    scrollbar-width: none !important;
    gap: 16px !important;
  }
  .why-stay-grid::-webkit-scrollbar { display: none; }
  .why-stay-grid .why-card {
    flex: 0 0 82vw !important;
    scroll-snap-align: start !important;
    min-width: 240px !important;
  }

  /* Included grid — see further down for the proper symmetrical grid rule */

  /* Rooms page 4-col grid */
  .rooms-page-4col-grid {
    display: flex !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory !important;
    scrollbar-width: none !important;
    gap: 16px !important;
  }
  .rooms-page-4col-grid::-webkit-scrollbar { display: none; }
  .rooms-page-4col-grid .room-modern-card {
    flex: 0 0 88vw !important;
    scroll-snap-align: start !important;
    min-width: 280px !important;
  }
}

/* ===== MOBILE CAROUSEL WRAPPERS ===== */
/* Generic mobile snap carousel */
.mobile-snap-carousel {
  display: none; /* hidden on desktop, shown via media query */
}
.mobile-snap-track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  gap: 0;
  padding-bottom: 4px;
}
.mobile-snap-track::-webkit-scrollbar { display: none; }
.mobile-snap-track .snap-item {
  flex: 0 0 100%;
  min-width: 0;
  scroll-snap-align: start;
  padding: 0 4px;
  box-sizing: border-box;
}
.mobile-snap-track .snap-item-half {
  flex: 0 0 50%;
  min-width: 0;
  scroll-snap-align: start;
  padding: 0 6px;
  box-sizing: border-box;
}
.mobile-carousel-dots {
  display: flex; justify-content: center; align-items: center;
  gap: 8px; margin-top: 14px;
}
.mobile-carousel-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--beige-dark); border: none; padding: 0;
  cursor: pointer; transition: background 0.3s ease, width 0.3s ease, transform 0.3s ease;
}
.mobile-carousel-dot.active {
  background: var(--green-mid);
  width: 22px; border-radius: 4px; transform: scale(1.05);
}

/* ===== ROOM MODAL ===== */
.room-modal-overlay {
  display: none;
  position: fixed; inset: 0; z-index: 3000;
  background: rgba(0,0,0,0.72);
  align-items: center; justify-content: center;
  padding: 20px;
  overflow-y: auto;
  animation: fadeOverlay 0.25s ease;
}
@keyframes fadeOverlay {
  from { opacity: 0; }
  to { opacity: 1; }
}
.room-modal-overlay.open { display: flex; }
.room-modal {
  background: var(--white);
  border-radius: 20px;
  max-width: 700px; width: 100%;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,0.38);
  animation: slideModal 0.32s cubic-bezier(0.34,1.2,0.64,1);
  position: relative;
  margin: auto;
}
@keyframes slideModal {
  from { opacity: 0; transform: translateY(40px) scale(0.96); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.room-modal-img {
  height: 280px; overflow: hidden; position: relative;
}
.room-modal-img img { width: 100%; height: 100%; object-fit: cover; }
.room-modal-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(10,30,15,0.55) 100%);
}
.room-modal-close {
  position: absolute; top: 16px; right: 16px;
  background: rgba(255,255,255,0.9); backdrop-filter: blur(6px);
  border: none; width: 38px; height: 38px; border-radius: 50%;
  font-size: 1.3rem; color: var(--green-dark);
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  z-index: 10; transition: all 0.22s ease; line-height: 1;
}
.room-modal-close:hover { background: var(--white); transform: scale(1.1); }
.room-modal-body { padding: 28px 30px 30px; }
.room-modal-body h3 { font-size: 1.7rem; color: var(--green-dark); margin-bottom: 6px; }
.room-modal-desc { font-size: 0.93rem; line-height: 1.75; color: var(--text-muted); margin-bottom: 20px; }
.room-modal-amenities-title { font-size: 0.8rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--green-dark); margin-bottom: 10px; }
.room-modal-amenities-list {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 22px;
}
.room-modal-amenity {
  display: flex; align-items: center; gap: 8px;
  background: var(--beige); border-radius: 8px;
  padding: 9px 10px; font-size: 0.82rem; color: var(--green-dark);
  font-weight: 500;
}
.room-modal-amenity i { color: var(--green-mid); width: 14px; flex-shrink: 0; }
.room-modal-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 18px; border-top: 1px solid var(--beige-dark);
  gap: 12px; flex-wrap: wrap;
}
.room-modal-price-block { display: flex; flex-direction: column; }
.room-modal-price-block .price-label { font-size: 0.76rem; color: var(--text-muted); }
.room-modal-price-block .price-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.9rem; font-weight: 700; color: var(--green-dark); line-height: 1;
}
.room-modal-price-block .price-per { font-size: 0.76rem; color: var(--text-muted); }
.room-modal-capacity {
  font-size: 0.85rem; color: var(--text-muted);
  display: flex; align-items: center; gap: 6px; margin-top: 4px;
}
.room-modal-capacity i { color: var(--green-mid); }
.room-modal-btns { display: flex; gap: 10px; flex-wrap: wrap; }

/* ===== ROOMS PAGE — 4-in-a-row desktop layout ===== */
/* C1: Desktop 4-col compact cards */
.rooms-page-4col-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 36px;
}
.rooms-page-4col-grid .room-modern-card {
  max-width: 100%;
  border-top: 4px solid var(--gold);
}
.rooms-page-4col-grid .room-modern-img { height: 190px; }
.rooms-page-4col-grid .room-modern-body { padding: 18px; }
.rooms-page-4col-grid .room-modern-body h2 { font-size: 1.1rem; margin-bottom: 4px; }
.rooms-page-4col-grid .room-modern-tagline { font-size: 0.78rem; margin-bottom: 10px; }
.rooms-page-4col-grid .room-modern-beds { padding: 8px 12px; margin-bottom: 12px; }
.rooms-page-4col-grid .room-modern-beds span { font-size: 0.82rem; }
.rooms-page-4col-grid .room-modern-body > p { font-size: 0.82rem; line-height: 1.6; margin-bottom: 14px; }
.rooms-page-4col-grid .room-modern-amenities { grid-template-columns: 1fr 1fr; gap: 6px; margin-bottom: 16px; }
.rooms-page-4col-grid .room-modern-amenity { font-size: 0.75rem; }
.rooms-page-4col-grid .room-modern-footer { padding-top: 14px; flex-wrap: wrap; gap: 8px; }
.rooms-page-4col-grid .room-modern-price .price-num { font-size: 1.35rem; }
.rooms-page-4col-grid .btn-primary { padding: 10px 16px; font-size: 0.82rem; }
.rooms-page-4col-grid .more-details-btn { padding: 9px 14px; font-size: 0.8rem; }

/* C3: Gradient backgrounds per room card */
.room-card-gradient-1 { background: linear-gradient(155deg, #1a3626 0%, #2d5a3d 60%, #3a7a52 100%); }
.room-card-gradient-2 { background: linear-gradient(155deg, #3d2b1a 0%, #6b4c2a 60%, #8b6535 100%); }
.room-card-gradient-3 { background: linear-gradient(155deg, #1a2840 0%, #2a4060 60%, #3a5a7a 100%); }
.room-card-gradient-4 { background: linear-gradient(155deg, #2a2010 0%, #5a4020 60%, #7a5c30 100%); }

.room-card-gradient-1 .room-modern-body h2,
.room-card-gradient-2 .room-modern-body h2,
.room-card-gradient-3 .room-modern-body h2,
.room-card-gradient-4 .room-modern-body h2 { color: var(--white); }

.room-card-gradient-1 .room-modern-tagline,
.room-card-gradient-2 .room-modern-tagline,
.room-card-gradient-3 .room-modern-tagline,
.room-card-gradient-4 .room-modern-tagline { color: rgba(255,255,255,0.72); }

.room-card-gradient-1 .room-modern-body > p,
.room-card-gradient-2 .room-modern-body > p,
.room-card-gradient-3 .room-modern-body > p,
.room-card-gradient-4 .room-modern-body > p { color: rgba(255,255,255,0.68); }

.room-card-gradient-1 .room-modern-beds,
.room-card-gradient-2 .room-modern-beds,
.room-card-gradient-3 .room-modern-beds,
.room-card-gradient-4 .room-modern-beds { background: rgba(255,255,255,0.1); }

.room-card-gradient-1 .room-modern-beds span,
.room-card-gradient-2 .room-modern-beds span,
.room-card-gradient-3 .room-modern-beds span,
.room-card-gradient-4 .room-modern-beds span { color: var(--white); }

.room-card-gradient-1 .room-modern-amenity,
.room-card-gradient-2 .room-modern-amenity,
.room-card-gradient-3 .room-modern-amenity,
.room-card-gradient-4 .room-modern-amenity { color: rgba(255,255,255,0.85); }

.room-card-gradient-1 .room-modern-amenity i,
.room-card-gradient-2 .room-modern-amenity i,
.room-card-gradient-3 .room-modern-amenity i,
.room-card-gradient-4 .room-modern-amenity i { color: var(--gold-light); }

.room-card-gradient-1 .room-modern-footer,
.room-card-gradient-2 .room-modern-footer,
.room-card-gradient-3 .room-modern-footer,
.room-card-gradient-4 .room-modern-footer { border-top-color: rgba(255,255,255,0.15); }

.room-card-gradient-1 .room-modern-price .price-label,
.room-card-gradient-2 .room-modern-price .price-label,
.room-card-gradient-3 .room-modern-price .price-label,
.room-card-gradient-4 .room-modern-price .price-label,
.room-card-gradient-1 .room-modern-price .price-per,
.room-card-gradient-2 .room-modern-price .price-per,
.room-card-gradient-3 .room-modern-price .price-per,
.room-card-gradient-4 .room-modern-price .price-per { color: rgba(255,255,255,0.6); }

.room-card-gradient-1 .room-modern-price .price-num,
.room-card-gradient-2 .room-modern-price .price-num,
.room-card-gradient-3 .room-modern-price .price-num,
.room-card-gradient-4 .room-modern-price .price-num { color: var(--gold-light); }

.room-card-gradient-1 .room-modern-flag,
.room-card-gradient-2 .room-modern-flag,
.room-card-gradient-3 .room-modern-flag,
.room-card-gradient-4 .room-modern-flag { background: rgba(0,0,0,0.5); }

/* Responsive: 4-col → 2-col → 1-col */
@media (max-width: 1024px) {
  .rooms-page-4col-grid { grid-template-columns: repeat(2, 1fr); }
  .rooms-page-4col-grid .room-modern-img { height: 220px; }
  .rooms-page-4col-grid .room-modern-body h2 { font-size: 1.25rem; }
}
@media (max-width: 600px) {
  .rooms-page-4col-grid { grid-template-columns: 1fr; gap: 20px; }
  .rooms-page-4col-grid .room-modern-img { height: 220px; }
  .rooms-page-4col-grid .room-modern-amenities { grid-template-columns: 1fr 1fr; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .included-grid { grid-template-columns: repeat(4, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .masonry-grid { columns: 3; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .features-grid { grid-template-columns: repeat(3, 1fr); }
  .rooms-carousel-track .room-card { min-width: calc(50% - 12px); }
  .reviews-carousel-track .review-card { min-width: calc(50% - 12px); }
  .rooms-modern-grid { gap: 24px; }
  .facilities-grid { grid-template-columns: 1fr 1fr; }
  /* 4-col rooms collapse to 2-col on tablet */
  .rooms-4col-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  /* Activities: keep 3-2 layout but tighten gap */
  .activities-row { gap: 18px; }
  .activities-row-2 .activity-card { flex: 0 0 calc(50% - 9px); }
  /* Reviews: 2 per view on tablet */
  .reviews-carousel-track .review-card {
    min-width: calc(50% - 12px);
    flex: 0 0 calc(50% - 12px);
  }
  .map-container-tall { min-height: 420px; }
}
@media (max-width: 768px) {
  .section { padding: 36px 0; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .welcome-grid, .location-grid, .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .welcome-img { height: 280px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .masonry-grid { columns: 2; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item:nth-child(1) { grid-column: span 2; }
  .gallery-item:nth-child(1) img { min-height: 240px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 28px; }
  .hero-scroll { display: none; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .welcome-stats { gap: 18px; }
  .booking-cta { padding: clamp(36px, 7vh, 56px) 0; }
  .reviews-carousel-track .review-card { min-width: calc(100% - 0px); margin-right: 24px; }
  .carousel-btn-prev { left: -8px; }
  .carousel-btn-next { right: -8px; }
  .rooms-modern-grid { grid-template-columns: 1fr; gap: 28px; }
  .facilities-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .room-modern-img { height: 220px; }
  .rooms-2col-grid { grid-template-columns: 1fr; gap: 20px; }
  /* Reviews: 1 per view on mobile */
  .reviews-carousel-track .review-card {
    min-width: calc(100% - 0px);
    flex: 0 0 100%;
    margin-right: 24px;
  }
  .map-container-tall { min-height: 300px; height: 300px; }

  /* ---- Mobile: old snap carousels now hidden (unified scroll rows handle mobile) ---- */
  .mobile-snap-carousel { display: none !important; }

  /* Gallery slide shorter on mobile */
  .gallery-slide img { height: 280px; }
  .gallery-slider-btn { width: 40px; height: 40px; font-size: 1rem; }
}
@media (max-width: 640px) {
  .rooms-modern-grid { grid-template-columns: 1fr; gap: 20px; }
  .room-modern-img { height: 220px; }
}
@media (max-width: 480px) {
  .masonry-grid { columns: 1; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item:nth-child(1) { grid-column: span 1; }
  .hero-btns { flex-direction: column; align-items: center; }
  .final-cta-btns { flex-direction: column; align-items: center; }
  .whatsapp-btn { bottom: 20px; right: 20px; width: 52px; height: 52px; font-size: 1.5rem; }
  .navbar-inner { padding: 10px 16px; }
  .rooms-carousel-track .room-card { min-width: calc(100% - 0px); margin-right: 0; }
  .reviews-carousel-track .review-card { min-width: 100%; margin-right: 24px; }
  .carousel-btn { display: none; }
  .facilities-grid { grid-template-columns: 1fr; }
  .rooms-modern-grid { gap: 20px; }
  .room-modern-amenities { grid-template-columns: 1fr; }
  .included-grid { grid-template-columns: repeat(4, 1fr); }
  .room-modal-body { padding: 20px; }
  .room-modal-img { height: 220px; }
  .room-modal-amenities-list { grid-template-columns: 1fr 1fr; }
  .gallery-slide img { height: 240px; }
  /* Book carousel shrinks on very small screens */
  .book-carousel { height: clamp(260px, 45vw, 340px) !important; }
  .book-slide.active { width: 80% !important; height: clamp(180px, 36vw, 260px) !important; }
}

/* ===== RESPONSIVE SECTION HEIGHTS (short screens) ===== */
@media (max-height: 700px) {
  .section { padding: clamp(28px, 5vh, 44px) 0; }
  .page-hero { min-height: 45vh; }
}

/* ===== BOOK-PAGE 3D CAROUSEL ===== */
.book-carousel {
  position: relative;
  height: clamp(320px, 50vh, 520px);
  perspective: 1200px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 48px;
  overflow: visible;
}
.book-carousel-inner {
  position: relative;
  width: 100%;
  height: 100%;
}
.book-slide {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.6s ease;
  cursor: pointer;
  box-shadow: 0 8px 32px rgba(0,0,0,0.22);
}
.book-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 12px;
  pointer-events: none;
}
.book-slide .book-slide-overlay {
  position: absolute; inset: 0;
  background: rgba(10,30,15,0.2);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.3s ease;
  font-size: 2rem; color: var(--white);
}
.book-slide.active:hover .book-slide-overlay { opacity: 1; }

/* Active — center, large, prominent */
.book-slide.active {
  transform: translate(-50%, -50%) translateX(0) scale(1) rotateY(0deg);
  z-index: 5;
  width: 55%;
  height: clamp(260px, 44vh, 420px);
}
/* Prev — left, slightly behind */
.book-slide.prev {
  transform: translate(-50%, -50%) translateX(-60%) scale(0.8) rotateY(15deg);
  z-index: 3;
  width: 50%;
  height: clamp(240px, 40vh, 380px);
  opacity: 0.7;
}
/* Next — right, slightly behind */
.book-slide.next {
  transform: translate(-50%, -50%) translateX(60%) scale(0.8) rotateY(-15deg);
  z-index: 3;
  width: 50%;
  height: clamp(240px, 40vh, 380px);
  opacity: 0.7;
}
/* Prev-prev — further left, further behind */
.book-slide.prev-prev {
  transform: translate(-50%, -50%) translateX(-90%) scale(0.6) rotateY(25deg);
  z-index: 1;
  width: 50%;
  height: clamp(200px, 34vh, 320px);
  opacity: 0.35;
}
/* Next-next — further right, further behind */
.book-slide.next-next {
  transform: translate(-50%, -50%) translateX(90%) scale(0.6) rotateY(-25deg);
  z-index: 1;
  width: 50%;
  height: clamp(200px, 34vh, 320px);
  opacity: 0.35;
}
/* All others hidden */
.book-slide.hidden {
  transform: translate(-50%, -50%) translateX(0) scale(0.4);
  opacity: 0;
  z-index: 0;
  pointer-events: none;
}

/* Nav buttons */
.book-prev, .book-next {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(6px);
  border: none; width: 52px; height: 52px; border-radius: 50%;
  font-size: 2rem; color: var(--green-dark);
  cursor: pointer; z-index: 10;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  transition: all 0.25s ease;
  line-height: 1;
}
.book-prev:hover, .book-next:hover {
  background: var(--white);
  transform: translateY(-50%) scale(1.08);
  box-shadow: 0 6px 28px rgba(0,0,0,0.28);
}
.book-prev { left: 8px; }
.book-next { right: 8px; }

/* Responsive adjustments */
@media (max-width: 768px) {
  /* B1 — Gallery carousel: main image fills full section height */
  .book-carousel { height: clamp(56vw, 60vw, 420px); }
  .book-slide.active {
    width: 72%;
    height: 100%;
  }
  .book-slide.prev, .book-slide.next {
    width: 22%;
    height: 88%;
  }
  .book-slide.prev-prev, .book-slide.next-next { opacity: 0.15; width: 14%; }
  .book-prev { left: 4px; }
  .book-next { right: 4px; }
}

/* ===== HERO SLIDE CAPTIONS ===== */
.slide-caption {
  position: absolute;
  bottom: 90px;
  left: clamp(20px, 5vw, 80px);
  background: rgba(10,25,10,0.68);
  backdrop-filter: blur(10px);
  border-left: 3px solid var(--gold);
  padding: 14px 22px 14px 20px;
  border-radius: 0 10px 10px 0;
  max-width: 380px;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.6s ease 0.4s, transform 0.6s ease 0.4s;
  pointer-events: none;
  z-index: 5;
}
.hero-slide.active .slide-caption {
  opacity: 1;
  transform: translateY(0);
}
.slide-caption h4 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1rem, 2.2vw, 1.3rem);
  color: #fff;
  margin-bottom: 4px;
  text-shadow: 0 1px 6px rgba(0,0,0,0.4);
  line-height: 1.2;
}
.slide-caption p {
  font-size: clamp(0.75rem, 1.4vw, 0.88rem);
  color: rgba(255,255,255,0.82);
  letter-spacing: 0.5px;
  margin: 0;
}
@media (max-width: 600px) {
  .slide-caption {
    bottom: 110px;
    left: 16px;
    right: 16px;
    max-width: none;
    border-radius: 10px;
    border-left-width: 3px;
  }
}

/* ===== MODERNIZED BOOKING CTA ===== */
.booking-cta-modern {
  background: linear-gradient(135deg, #0a1f0a 0%, #1a3a26 40%, #0d2318 100%) !important;
  text-align: left !important;
  padding: clamp(48px, 9vh, 88px) 0 !important;
}
.booking-cta-pattern {
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    45deg,
    rgba(190,192,80,0.04) 0px,
    rgba(190,192,80,0.04) 1px,
    transparent 1px,
    transparent 28px
  );
  pointer-events: none;
}
.booking-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.booking-cta-left {
  flex: 1 1 400px;
}
.booking-cta-left h2 {
  font-size: clamp(1.7rem, 3.5vw, 2.6rem);
  margin-bottom: 12px;
  line-height: 1.15;
}
.booking-cta-left p {
  color: rgba(255,255,255,0.72);
  max-width: 500px;
  margin: 0 0 20px;
  font-size: 1rem;
}
.booking-trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}
.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(190,192,80,0.28);
  color: rgba(255,255,255,0.85);
  font-size: 0.8rem;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 50px;
}
.trust-icon {
  color: var(--gold);
  font-size: 0.9rem;
}
.booking-cta-right {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.btn-book-big {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #0071c2;
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  padding: 18px 36px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  letter-spacing: 0.3px;
  box-shadow: 0 8px 32px rgba(0,113,194,0.45), 0 0 0 0 rgba(0,113,194,0.3);
  transition: all 0.3s ease;
  text-decoration: none;
  white-space: nowrap;
  position: relative;
}
.btn-book-big:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 14px 40px rgba(0,113,194,0.6), 0 0 0 6px rgba(0,113,194,0.15);
  background: #005ea6;
}
.btn-book-big:hover .btn-book-arrow {
  transform: translateX(5px);
}
.btn-book-arrow {
  font-size: 0.9rem;
  transition: transform 0.3s ease;
}
.booking-cta-urgency {
  color: rgba(255,255,255,0.55) !important;
  font-size: 0.76rem !important;
  letter-spacing: 0.3px;
  margin: 0 !important;
  text-align: center;
}
@media (max-width: 768px) {
  .booking-cta-inner {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
  .booking-cta-left { text-align: center; }
  .booking-cta-left p { margin: 0 auto 20px; }
  .booking-trust-badges { justify-content: center; }
  .btn-book-big { font-size: 1rem; padding: 16px 28px; }
}

/* ===== GLOBAL MOBILE SCROLL DOTS ===== */
/* Wrapper injected by JS around scroll rows on mobile */
.scroll-dots-wrapper {
  position: relative;
}
.scroll-dots-bar {
  display: none; /* shown only on mobile via JS */
}
@media (max-width: 991px) {
  .scroll-dots-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 7px;
    margin-top: 12px;
    padding: 2px 0 4px;
  }
}
.scroll-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--beige-dark);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 0.28s ease, width 0.28s ease, border-radius 0.28s ease, transform 0.2s ease;
  flex-shrink: 0;
}
.scroll-dot.active {
  background: var(--green-mid);
  width: 20px;
  border-radius: 4px;
  transform: scale(1.08);
}
/* Dark-bg variant (for sections with dark backgrounds) */
.scroll-dots-bar.dots-light .scroll-dot { background: rgba(255,255,255,0.3); }
.scroll-dots-bar.dots-light .scroll-dot.active { background: var(--gold); }

/* ===== ROOMS PAGE: mobile included-grid symmetrical grid ===== */
@media (max-width: 768px) {
  .included-grid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 10px !important;
    flex-wrap: unset !important;
  }
  .included-item {
    padding: 14px 8px;
  }
  .included-item i { font-size: 1.1rem; }
  .included-item span { font-size: 0.75rem; }
}
@media (max-width: 480px) {
  .included-grid {
    grid-template-columns: repeat(4, 1fr) !important;
  }
}

/* ===== SHUKLAPHANTA: BIRDING PARADISE — full mobile fix ===== */
@media (max-width: 768px) {
  .birds-section-grid {
    display: block !important;
    grid-template-columns: unset !important;
    gap: 0 !important;
  }
  .birds-section-grid > div:first-child {
    margin-bottom: 20px;
  }
  .birds-section-grid > div:first-child img {
    height: 220px !important;
    width: 100% !important;
    border-radius: 14px !important;
    object-fit: cover !important;
    box-shadow: var(--shadow-lg) !important;
  }
  .birds-section-grid > div:last-child > p:first-child {
    font-size: 0.95rem !important;
    line-height: 1.7 !important;
    margin-bottom: 18px !important;
  }
  .birds-section-grid > div:last-child > p:last-child {
    font-size: 0.85rem !important;
  }
  .birds-grid {
    display: flex !important;
    overflow-x: auto !important;
    flex-wrap: nowrap !important;
    gap: 8px !important;
    padding-bottom: 10px !important;
    scroll-snap-type: x mandatory !important;
    scrollbar-width: none !important;
    -ms-overflow-style: none !important;
  }
  .birds-grid::-webkit-scrollbar { display: none !important; }
  .bird-tag {
    flex: 0 0 auto !important;
    white-space: nowrap !important;
    font-size: 0.82rem !important;
    padding: 8px 14px !important;
    border-radius: 20px !important;
    scroll-snap-align: start !important;
  }
}

/* ===== CUSTOM ADDITIONS — All Changes ===== */

/* --- 1. Mobile: Hide last feature card in "Shuklaphanta Difference" --- */
@media (max-width: 768px) {
  .feature-card-mobile-hide {
    display: none !important;
  }
}

/* --- 4. Mobile: Book Your Stay Now — reduce button spacing --- */
@media (max-width: 768px) {
  .booking-cta-modern {
    padding: clamp(28px, 6vh, 48px) 0 !important;
  }
  .booking-cta-inner {
    flex-direction: column !important;
    gap: 20px !important;
    text-align: center !important;
  }
  .booking-cta-left {
    order: 1;
  }
  .booking-cta-right {
    order: 2;
    margin-top: 0 !important;
    padding-top: 0 !important;
  }
  .btn-book-big {
    margin-top: 8px !important;
  }
  .booking-trust-badges {
    justify-content: center !important;
    flex-wrap: wrap !important;
    gap: 8px !important;
    margin-top: 10px !important;
  }
  .booking-cta-urgency {
    margin-top: 8px !important;
    font-size: 0.78rem !important;
  }
}

/* --- 6. Mobile: Logo navbar background (removed — no overlay on mobile) --- */

/* --- 7. Global scroll-reveal animations --- */
.reveal-fade {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal-fade.in-view {
  opacity: 1;
  transform: translateY(0);
}

.reveal-slide-left {
  opacity: 0;
  transform: translateX(-32px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal-slide-left.in-view {
  opacity: 1;
  transform: translateX(0);
}

.reveal-slide-right {
  opacity: 0;
  transform: translateX(32px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal-slide-right.in-view {
  opacity: 1;
  transform: translateX(0);
}

.reveal-zoom {
  opacity: 0;
  transform: scale(0.94);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal-zoom.in-view {
  opacity: 1;
  transform: scale(1);
}

/* Staggered delay helpers */
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* --- Enhanced hover effects on cards --- */
.room-card,
.act-card,
.feature-card,
.review-card,
.facility-card,
.room-modern-card {
  transition: transform 0.32s cubic-bezier(0.25,0.46,0.45,0.94),
              box-shadow 0.32s ease !important;
}

/* --- Enhanced button hover transitions --- */
.btn,
.btn-book-big,
.nav-book,
.whatsapp-btn {
  transition: all 0.28s cubic-bezier(0.25,0.46,0.45,0.94) !important;
}

/* --- Hero section: subtle Ken Burns on active slide --- */
.hero-slide.active img {
  animation: heroKenBurns 8s ease-in-out infinite alternate;
}

@keyframes heroKenBurns {
  0%   { transform: scale(1) translate(0, 0); }
  100% { transform: scale(1.06) translate(-1%, -1%); }
}

/* --- Section headers: subtle slide-up --- */
.section-header h2 {
  transition: color 0.3s ease;
}

/* --- Smooth navbar transition --- */
.navbar {
  transition: background 0.35s ease, box-shadow 0.35s ease, padding 0.3s ease !important;
}

/* --- Activity card pulse on hover (mobile tap visible) --- */
@media (max-width: 768px) {
  .activity-card:active {
    transform: scale(0.97);
  }
}

/* --- Feature cards: icon bounce on hover --- */
.feature-card:hover .feature-icon {
  animation: iconBounce 0.45s ease;
}

@keyframes iconBounce {
  0%   { transform: translateY(0); }
  40%  { transform: translateY(-8px); }
  70%  { transform: translateY(-3px); }
  100% { transform: translateY(0); }
}

/* --- Room cards: image subtle scale on hover --- */
.room-card:hover .room-card-img img,
.act-card:hover .act-card-img img {
  transform: scale(1.06) !important;
}

/* --- Smooth divider animation --- */
.divider {
  transition: width 0.4s ease;
}

/* --- Booking CTA modern layout --- */
.booking-cta-modern .booking-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.booking-cta-modern .booking-cta-left {
  flex: 1;
  min-width: 280px;
}
.booking-cta-modern .booking-cta-right {
  flex-shrink: 0;
  text-align: center;
}
.booking-trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}
.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.22);
  color: rgba(255,255,255,0.88);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 50px;
}
.trust-icon {
  color: var(--gold-light);
}
.btn-book-big {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #0071c2;
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  padding: 16px 36px;
  border-radius: 50px;
  text-decoration: none;
  letter-spacing: 0.3px;
  box-shadow: 0 4px 20px rgba(0,113,194,0.35);
  transition: all 0.28s ease;
  position: relative;
  overflow: hidden;
}
.btn-book-big::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(255,255,255,0.12);
  opacity: 0;
  transition: opacity 0.25s ease;
  border-radius: inherit;
}
.btn-book-big:hover::after { opacity: 1; }
.btn-book-big:hover {
  background: #005ea6;
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(0,113,194,0.5);
}
.btn-book-arrow { margin-left: 4px; }
.booking-cta-urgency {
  color: rgba(255,255,255,0.62);
  font-size: 0.8rem;
  margin-top: 10px;
}

/* --- Page hero subtle parallax feel on mobile --- */
@media (max-width: 768px) {
  .page-hero {
    min-height: 45vh;
    max-height: 55vh;
  }
}

/* --- Activity modal mobile: full-screen feel --- */
@media (max-width: 520px) {
  .act-modal-overlay,
  .activity-modal-overlay {
    padding: 12px;
    align-items: flex-end;
  }
  .act-modal,
  .activity-modal {
    border-radius: 20px 20px 12px 12px;
    max-height: 88vh;
    overflow-y: auto;
  }
  .act-modal-img,
  .activity-modal-img {
    height: 200px;
  }
}

/* --- Smooth image transitions everywhere --- */
img {
  transition: transform 0.45s cubic-bezier(0.25,0.46,0.45,0.94);
}

/* ============================================================
   COMPREHENSIVE UPDATES — All Requested Changes
   ============================================================ */

/* ---- 3. Rooms mobile carousel — auto-scrolls via JS (2s) ---- */
/* The rooms-4col-grid is already a scroll container on mobile; the JS
   added in index.html handles timed auto-advance. CSS here just adds
   a visible progress strip so users know it's advancing. */
@media (max-width: 768px) {
  .rooms-carousel-section .rooms-4col-grid {
    position: relative;
  }
  /* Progress bar on top of the carousel row */
  .rooms-autoscroll-bar {
    height: 2px;
    background: rgba(190,192,80,0.25);
    border-radius: 2px;
    margin-top: 8px;
    overflow: hidden;
    display: none; /* shown by JS when it inits */
  }
  .rooms-autoscroll-bar-fill {
    height: 100%;
    background: var(--gold);
    border-radius: 2px;
    width: 0%;
    transition: width 2s linear;
  }
}

/* ---- 4 & 5. Logo overlay removed — no special mobile backdrop ---- */

/* ---- 6. Scroll-triggered entrance animations — premium feel ---- */

/* Base states (off-screen / invisible) */
.anim-fade-up {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.7s cubic-bezier(0.22,0.61,0.36,1),
              transform 0.7s cubic-bezier(0.22,0.61,0.36,1);
}
.anim-fade-left {
  opacity: 0;
  transform: translateX(-36px);
  transition: opacity 0.7s cubic-bezier(0.22,0.61,0.36,1),
              transform 0.7s cubic-bezier(0.22,0.61,0.36,1);
}
.anim-fade-right {
  opacity: 0;
  transform: translateX(36px);
  transition: opacity 0.7s cubic-bezier(0.22,0.61,0.36,1),
              transform 0.7s cubic-bezier(0.22,0.61,0.36,1);
}
.anim-scale-in {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.65s cubic-bezier(0.22,0.61,0.36,1),
              transform 0.65s cubic-bezier(0.22,0.61,0.36,1);
}
.anim-slide-up-soft {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s ease,
              transform 0.55s ease;
}

/* Visible states */
.anim-fade-up.in-view,
.anim-fade-left.in-view,
.anim-fade-right.in-view {
  opacity: 1;
  transform: translate(0, 0);
}
.anim-scale-in.in-view {
  opacity: 1;
  transform: scale(1);
}
.anim-slide-up-soft.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger helpers */
.anim-delay-1 { transition-delay: 0.08s !important; }
.anim-delay-2 { transition-delay: 0.16s !important; }
.anim-delay-3 { transition-delay: 0.24s !important; }
.anim-delay-4 { transition-delay: 0.32s !important; }
.anim-delay-5 { transition-delay: 0.40s !important; }
.anim-delay-6 { transition-delay: 0.48s !important; }

/* ---- 7. Modern card enhancements — premium shadows & transitions ---- */

/* Section headers — refined spacing */
.section-header {
  position: relative;
}
.section-header .badge {
  letter-spacing: 2.5px;
}
.section-header h2 {
  letter-spacing: -0.01em;
}

/* Feature cards — glass-morphism tint on dark sections */
.rooms-section-gradient .feature-card,
.activities-section-gradient .feature-card {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(4px);
}

/* Room cards — refined depth */
.room-card {
  box-shadow: 0 2px 14px rgba(0,0,0,0.09), 0 1px 4px rgba(0,0,0,0.05);
}
.room-card:hover {
  box-shadow: 0 14px 42px rgba(0,0,0,0.18), 0 4px 12px rgba(0,0,0,0.08);
}

/* Activity cards — richer overlay on hover */
.activity-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,30,15,0.0) 0%, rgba(10,30,15,0.0) 100%);
  transition: background 0.38s ease;
  border-radius: inherit;
  pointer-events: none;
  z-index: 1;
}
.activity-card:hover::after {
  background: linear-gradient(to top, rgba(10,30,15,0.25) 0%, rgba(10,30,15,0.0) 60%);
}
.activity-overlay,
.activity-icon {
  z-index: 2;
  position: relative;
}

/* Feature card — subtle border glow on hover */
.feature-card {
  border: 1px solid rgba(0,0,0,0.05);
  transition: transform 0.32s cubic-bezier(0.25,0.46,0.45,0.94),
              box-shadow 0.32s ease,
              border-color 0.32s ease !important;
}
.feature-card:hover {
  border-color: rgba(190,192,80,0.35);
  box-shadow: 0 10px 30px rgba(0,0,0,0.12), 0 0 0 1px rgba(190,192,80,0.15) !important;
}

/* Review cards — refined */
.review-card {
  border-top: 3px solid var(--gold);
  transition: transform 0.32s cubic-bezier(0.25,0.46,0.45,0.94),
              box-shadow 0.32s ease !important;
}
.review-card:hover {
  box-shadow: 0 12px 36px rgba(0,0,0,0.14) !important;
}

/* Contact form inputs — smoother focus ring */
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--green-mid);
  box-shadow: 0 0 0 3px rgba(59,90,16,0.12);
  background: var(--white);
  outline: none;
}

/* Buttons — micro-interaction ripple feel */
.btn-green:active,
.btn-primary:active,
.btn-book-big:active {
  transform: translateY(0) scale(0.98) !important;
}

/* Social icons — refined hover */
.social-icon {
  transition: background 0.28s ease, color 0.28s ease, transform 0.28s cubic-bezier(0.34,1.56,0.64,1) !important;
}

/* Navbar links — underline slide effect */
.nav-links a {
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 12px;
  right: 12px;
  height: 2px;
  background: var(--gold-light);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.28s ease;
  border-radius: 2px;
}
.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

/* Page hero — refined typography */
.page-hero-content h1 {
  letter-spacing: -0.02em;
  line-height: 1.15;
}

/* Badge — subtle shimmer on hover */
.badge {
  transition: background 0.28s ease, border-color 0.28s ease;
}

/* Footer columns — link hover indent animation */
.footer-col ul li a {
  transition: color 0.22s ease, padding-left 0.22s ease;
}

/* Divider — animated width on section view */
.section-header.in-view .divider,
.section-header.visible .divider {
  width: 80px;
}
.divider {
  width: 60px;
  transition: width 0.6s cubic-bezier(0.22,0.61,0.36,1) 0.3s;
}

/* WhatsApp button — improved pulse */
.whatsapp-btn {
  transition: transform 0.28s cubic-bezier(0.34,1.56,0.64,1),
              box-shadow 0.28s ease !important;
}
.whatsapp-btn:hover {
  transform: scale(1.12) !important;
}

/* ---- 8. Activities page (activities.html) — mobile card tap visual ---- */
@media (max-width: 768px) {
  .act-card {
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    transition: transform 0.18s ease, box-shadow 0.18s ease !important;
  }
  .act-card:active {
    transform: scale(0.97) !important;
    box-shadow: 0 2px 12px rgba(0,0,0,0.12) !important;
  }
  /* Visual hint: tap indicator on mobile */
  .act-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(21,48,16,0.0);
    transition: background 0.18s ease;
    border-radius: inherit;
    pointer-events: none;
    z-index: 0;
  }
  .act-card:active::before {
    background: rgba(21,48,16,0.05);
  }
  /* "Tap for details" hint label on act-card images */
  .act-card-img::after {
    content: 'Tap for details';
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(21,48,16,0.78);
    color: rgba(255,255,255,0.92);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 4px 10px;
    border-radius: 20px;
    pointer-events: none;
    opacity: 0.9;
    backdrop-filter: blur(4px);
  }
}

/* ---- 9. Modern typography refinements ---- */
h1, h2, h3 {
  letter-spacing: -0.01em;
}
.section-header h2 {
  line-height: 1.18;
}
p {
  line-height: 1.72;
}
.room-card-body p,
.feature-card p,
.act-card-body p {
  line-height: 1.68;
}

/* ---- 10. Smooth section transitions — no jarring jumps ---- */
.section,
.gallery-featured-section,
.booking-cta {
  will-change: auto;
}

/* ---- 11. Contact form — improved mobile layout ---- */
@media (max-width: 768px) {
  .contact-grid {
    gap: 24px;
  }
  .contact-form {
    padding: 24px 20px;
    border-radius: 16px;
  }
  .contact-item {
    margin-bottom: 20px;
  }
}

/* ---- 12. Activities page modal — improved mobile scroll ---- */
@media (max-width: 768px) {
  .act-modal-overlay {
    align-items: flex-end;
    padding: 0;
  }
  .act-modal {
    border-radius: 24px 24px 0 0;
    max-height: 90vh;
    overflow-y: auto;
    margin: 0;
    width: 100%;
  }
  .act-modal-img { height: 220px; }
  .act-modal-body { padding: 22px 20px 28px; }
}

/* ---- 13. Rooms autoscroll: smooth indicator ---- */
@media (max-width: 768px) {
  .mobile-snap-carousel {
    display: none !important; /* unified scroll row handles mobile */
  }
}

/* ---- 14. Section background textures — premium feel ---- */
.section:not(.activities-section-gradient):not(.rooms-carousel-section):not(.gallery-featured-section) {
  position: relative;
}

/* Alternate sections: subtle beige tint for rhythm */
.section:nth-of-type(odd):not(.activities-section-gradient):not(.rooms-carousel-section) {
  /* Keep existing backgrounds, just ensure no override */
}

/* ---- 15. Hover effects on gallery thumbnails ---- */
.gf-thumb {
  transition: opacity 0.25s ease, transform 0.25s ease, border-color 0.25s ease !important;
}
.gf-thumb:hover {
  opacity: 0.92 !important;
  transform: scale(1.03) !important;
}
.gf-thumb.active {
  border-color: var(--gold) !important;
  box-shadow: 0 0 0 2px var(--gold) !important;
}

/* ---- 16. Navbar logo bg removed — no overlay on any page ---- */
