/* =============================================
   THE BANJARA BARRACKS — style.css
   nextgoal365.com
   Theme: Organic Mountain Luxury
   Palette: Pine Green · Warm Sand · Cream · Charcoal
   
   cloud name- dksmtkm2f
   api key - 933551872434498
   
   ============================================= */

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

:root {
  --pine:    #1a2e1f;
  --pine-lt: #2c4a34;
  --gold:    #c9a87c;
  --gold-lt: #e8d4b0;
  --cream:   #f8f3ec;
  --paper:   #fdf9f4;
  --earth:   #f0e8dc;
  --stone:   #6b6158;
  --charcoal:#2c2c2c;
  --white:   #ffffff;
  --mist:    rgba(26,46,31,0.06);

  --font-display: 'Cormorant Garant', Georgia, serif;
  --font-body:    'DM Sans', sans-serif;

  --rad: 12px;
  --rad-lg: 20px;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.14);

  --transition: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--paper);
  color: var(--charcoal);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
}

img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.2; }
h1 { font-size: clamp(2.8rem, 7vw, 5.5rem); font-weight: 300; }
h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 400; }
h3 { font-size: 1.35rem; font-weight: 500; }

em { font-style: italic; color: var(--gold); }

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 6px 14px;
  border: 1px solid var(--gold-lt);
  border-radius: 100px;
  margin-bottom: 1.2rem;
}

.section-title { margin-bottom: 1rem; }
.section-desc { color: var(--stone); max-width: 560px; margin: 0 auto; }

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

/* ---- LAYOUT ---- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-pad { padding: 96px 0; }
.bg-earth { background: var(--earth); }

/* ---- BUTTONS ---- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--pine);
  color: var(--white);
  padding: 14px 32px;
  border: none;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: var(--transition);
}
.btn-primary:hover { background: var(--pine-lt); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(26,46,31,0.25); }
.btn-primary.full { width: 100%; justify-content: center; border-radius: var(--rad); padding: 16px; font-size: 1rem; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.5);
  padding: 14px 32px;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 400;
  cursor: pointer;
  transition: var(--transition);
}
.btn-ghost:hover { background: rgba(255,255,255,0.15); border-color: rgba(255,255,255,0.8); }

/* ---- PRELOADER ---- */
#preloader {
  position: fixed; inset: 0;
  background: var(--pine);
  display: flex; align-items: center; justify-content: center;
  z-index: 9999;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
#preloader.hidden { opacity: 0; visibility: hidden; }

.preloader-inner { text-align: center; }
.mountain-icon { width: 80px; height: 56px; margin-bottom: 16px; animation: mountainPulse 1.8s ease-in-out infinite; }
.preloader-text {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 300;
  letter-spacing: 0.15em;
  color: var(--gold);
  opacity: 0;
  animation: fadeInUp 0.8s 0.4s ease forwards;
}

@keyframes mountainPulse {
  0%, 100% { stroke-dashoffset: 0; opacity: 1; }
  50% { opacity: 0.5; }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ---- FLOATING BUTTONS ---- */
.float-btn {
  position: fixed;
  right: 24px;
  width: 52px; height: 52px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-lg);
  z-index: 900;
  transition: var(--transition);
}
.float-btn svg { width: 24px; height: 24px; }
.float-btn:hover { transform: scale(1.1); }

.whatsapp-btn { bottom: 100px; background: #25D366; color: var(--white); }
.call-btn     { bottom: 40px;  background: var(--pine); color: var(--white); }

/* ---- NAVIGATION ---- */
#navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 800;
  padding: 20px 0;
  transition: background 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease;
}
#navbar.scrolled {
  background: rgba(253,249,244,0.96);
  backdrop-filter: blur(12px);
  padding: 12px 0;
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}

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

.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--white);
  transition: color 0.3s;
}
#navbar.scrolled .nav-logo { color: var(--pine); }

.logo-mountain { width: 36px; height: 24px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  font-size: 0.88rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.85);
  transition: color 0.3s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s ease;
}
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
/*#navbar.scrolled .nav-links a { color: var(--stone); }
#navbar.scrolled .nav-links a:hover { color: var(--pine); }*/

#navbar.scrolled .nav-links a { color: var(--pine); font-weight: 500; }
#navbar.scrolled .nav-links a:hover { color: var(--gold); }
#navbar.scrolled .nav-logo { color: var(--pine); font-weight: 600; }

.nav-cta {
  background: var(--gold) !important;
  color: var(--pine) !important;
  padding: 9px 22px;
  border-radius: 100px;
  font-weight: 500 !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--gold-lt) !important; }

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

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

.hero-slides { position: absolute; inset: 0; }
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.hero-slide.active { opacity: 1; }

.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(26,46,31,0.35) 0%,
    rgba(26,46,31,0.5) 50%,
    rgba(26,46,31,0.75) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
  max-width: 820px;
}

.hero-eyebrow {
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-lt);
  margin-bottom: 1rem;
}

.hero-title {
  color: var(--white);
  margin-bottom: 1.2rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.hero-title em { color: var(--gold-lt); font-style: italic; }

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.82);
  margin-bottom: 2.5rem;
  font-weight: 300;
  line-height: 1.8;
}

.hero-actions { display: flex; align-items: center; justify-content: center; gap: 1rem; flex-wrap: wrap; }

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.6);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px; height: 40px;
  background: rgba(255,255,255,0.3);
  position: relative; overflow: hidden;
}
.scroll-line::after {
  content: '';
  position: absolute;
  top: -100%; left: 0;
  width: 100%; height: 100%;
  background: var(--gold);
  animation: scrollDown 1.8s ease infinite;
}
@keyframes scrollDown { to { top: 200%; } }

.hero-dots {
  position: absolute;
  bottom: 40px;
  right: 40px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  border: none; cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}
.dot.active { background: var(--gold); transform: scale(1.3); }

/* ---- REVEAL ANIMATIONS ---- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---- ABOUT ---- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.about-text p {
  color: var(--stone);
  margin-bottom: 1rem;
  font-size: 1.05rem;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--mist);
}
.stat { text-align: center; }
.stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--pine);
  margin-bottom: 4px;
}
.stat span {
  font-size: 0.78rem;
  color: var(--stone);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.about-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 12px;
  height: 480px;
}
.about-img-main {
  grid-column: 1;
  grid-row: 1 / 3;
  border-radius: var(--rad);
  overflow: hidden;
}
.about-img-side {
  grid-column: 2;
  grid-row: 1;
  border-radius: var(--rad);
  overflow: hidden;
}

/* ---- ROOMS ---- */
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}

.room-card {
  background: var(--paper);
  border-radius: var(--rad-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.room-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.room-img {
  height: 220px;
  position: relative;
  overflow: hidden;
}
.room-img img { transition: transform 0.6s ease; }
.room-card:hover .room-img img { transform: scale(1.05); }

.room-badge {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--pine);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  padding: 5px 12px;
  border-radius: 100px;
}

.room-body { padding: 24px; }
.room-body h3 { margin-bottom: 10px; }
.room-body p { color: var(--stone); font-size: 0.95rem; margin-bottom: 16px; }

.room-meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.room-meta li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--stone);
}
.room-meta li svg {
  width: 16px; height: 16px;
  flex-shrink: 0;
  fill: var(--gold);
}

/* ---- AMENITIES ---- */
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.amenity-item {
  background: var(--paper);
  border: 1px solid var(--mist);
  border-radius: var(--rad);
  padding: 28px 24px;
  transition: var(--transition);
}
.amenity-item:hover { border-color: var(--gold-lt); transform: translateY(-3px); box-shadow: var(--shadow); }

.amenity-icon {
  width: 48px; height: 48px;
  background: var(--earth);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.amenity-icon svg {
  width: 24px; height: 24px;
  stroke: var(--gold);
}

.amenity-item h4 {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--pine);
}
.amenity-item p { font-size: 0.88rem; color: var(--stone); }

/* ---- ACTIVITIES ---- */
.activities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}

.activity-card {
  background: var(--paper);
  border-radius: var(--rad-lg);
  padding: 32px 28px;
  position: relative;
  border: 1px solid transparent;
  transition: var(--transition);
}
.activity-card:hover { border-color: var(--gold); transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.activity-num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--gold-lt);
  line-height: 1;
  margin-bottom: 8px;
}

.activity-card h3 { font-size: 1.25rem; color: var(--pine); margin-bottom: 10px; }
.activity-card p { color: var(--stone); font-size: 0.95rem; margin-bottom: 16px; }

.activity-tag {
  display: inline-block;
  background: var(--earth);
  color: var(--stone);
  font-size: 0.78rem;
  font-weight: 500;
  padding: 5px 12px;
  border-radius: 100px;
  letter-spacing: 0.04em;
}

/* ---- GALLERY ---- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 12px;
}

.gallery-item {
  border-radius: var(--rad);
  overflow: hidden;
  cursor: pointer;
  position: relative;
}
.gallery-item.large { grid-column: span 2; }

.gallery-overlay {
  position: absolute; inset: 0;
  background: rgba(26,46,31,0);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.3s ease;
}
.gallery-overlay span {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.gallery-item:hover .gallery-overlay { background: rgba(26,46,31,0.45); }
.gallery-item:hover .gallery-overlay span { opacity: 1; }
.gallery-item img { transition: transform 0.5s ease; }
.gallery-item:hover img { transform: scale(1.05); }

/* ---- LIGHTBOX ---- */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 9000;
  display: none;
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 90vw;
  max-height: 88vh;
  width: auto;
  height: auto;
  border-radius: var(--rad);
  box-shadow: var(--shadow-lg);
}
.lb-close {
  position: absolute; top: 20px; right: 24px;
  background: none; border: none;
  color: var(--white);
  font-size: 1.6rem;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.2s;
}
.lb-close:hover { opacity: 1; }
.lb-nav {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  width: 48px; height: 48px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  transition: background 0.2s;
}
.lb-nav:hover { background: rgba(255,255,255,0.2); }
.lb-prev { left: 20px; }
.lb-next { right: 20px; }

/* ---- REVIEWS ---- */
.rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--paper);
  border: 1px solid var(--gold-lt);
  border-radius: 100px;
  padding: 10px 20px;
  margin-top: 12px;
}
.rating-badge strong { font-family: var(--font-display); font-size: 1.2rem; color: var(--pine); }
.rating-badge span { font-size: 0.8rem; color: var(--stone); }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

.review-card {
  background: var(--paper);
  border-radius: var(--rad-lg);
  padding: 32px 28px;
  border: 1px solid var(--mist);
  transition: var(--transition);
}
.review-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }

.review-stars { color: var(--gold); font-size: 1rem; margin-bottom: 16px; letter-spacing: 2px; }
.review-card p {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 300;
  font-style: italic;
  color: var(--charcoal);
  line-height: 1.75;
  margin-bottom: 24px;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.author-initial {
  width: 40px; height: 40px;
  background: var(--pine);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
}
.review-author strong { font-size: 0.92rem; font-family: var(--font-body); display: block; }
.review-author small { font-size: 0.78rem; color: var(--stone); }

/* ---- PLATFORMS ---- */
.platforms-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.platform-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  background: var(--paper);
  border: 1px solid var(--mist);
  border-radius: var(--rad-lg);
  padding: 28px 36px;
  min-width: 200px;
  transition: var(--transition);
  text-align: center;
}
.platform-card:hover { border-color: var(--gold); transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.platform-card svg { width: 40px; height: 40px; }
.platform-card > span { font-weight: 500; color: var(--pine); font-size: 0.95rem; }
.platform-card small { font-size: 0.8rem; color: var(--stone); }

.platform-direct {
  background: var(--pine);
  border-color: var(--pine);
}
.platform-direct > span, .platform-direct small { color: var(--white); }

/* ---- REACH ---- */
.reach-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.reach-steps {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.reach-step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.step-num {
  width: 40px; height: 40px;
  flex-shrink: 0;
  background: var(--gold);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
}
.reach-step strong { display: block; color: var(--pine); margin-bottom: 6px; }
.reach-step p { font-size: 0.9rem; color: var(--stone); }

/* ---- CONTACT ---- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}

.contact-info .section-title { margin-bottom: 1rem; }
.contact-info > p { color: var(--stone); margin-bottom: 2rem; }

.contact-details { display: flex; flex-direction: column; gap: 14px; }
.contact-link {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--stone);
  transition: color 0.2s;
}
.contact-link:hover { color: var(--pine); }
.contact-link svg { width: 20px; height: 20px; fill: var(--gold); flex-shrink: 0; }

/* FORM */
.booking-form {
  background: var(--paper);
  border: 1px solid var(--mist);
  border-radius: var(--rad-lg);
  padding: 40px;
  box-shadow: var(--shadow);
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group.full { margin-bottom: 16px; }
.form-group label { font-size: 0.82rem; font-weight: 500; letter-spacing: 0.05em; color: var(--stone); text-transform: uppercase; }

input, select, textarea {
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 12px 16px;
  border: 1px solid var(--mist);
  border-radius: var(--rad);
  background: var(--white);
  color: var(--charcoal);
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}
input:focus, select:focus, textarea:focus { border-color: var(--pine); }
textarea { resize: vertical; min-height: 80px; }

/* ---- POPUP ---- */
.popup-overlay {
  position: fixed; inset: 0;
  background: rgba(26,46,31,0.6);
  backdrop-filter: blur(6px);
  z-index: 8500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  animation: fadeIn 0.4s ease;
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.popup-box {
  background: var(--paper);
  border-radius: var(--rad-lg);
  padding: 48px 40px;
  max-width: 440px;
  width: 100%;
  position: relative;
  box-shadow: var(--shadow-lg);
  animation: slideUp 0.4s ease;
}
@keyframes slideUp { from { transform: translateY(30px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }

.popup-close {
  position: absolute; top: 16px; right: 20px;
  background: none; border: none;
  font-size: 1.2rem; color: var(--stone);
  cursor: pointer;
}
.popup-mountain { width: 60px; margin-bottom: 16px; }
.popup-inner h3 { font-size: 1.6rem; color: var(--pine); margin-bottom: 10px; }
.popup-inner p { font-size: 0.9rem; color: var(--stone); margin-bottom: 24px; }

#popupForm { display: flex; flex-direction: column; gap: 12px; }

/* ---- FOOTER ---- */
.footer {
  background: var(--pine);
  color: rgba(255,255,255,0.75);
  padding: 72px 0 0;
}

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

.footer-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 16px;
}
.footer-brand p { font-size: 0.88rem; line-height: 1.7; margin-bottom: 8px; }
.footer-tag { color: var(--gold); font-size: 0.85rem; }

.footer-links h4, .footer-contact h4 {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.footer-links ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 0.88rem; color: rgba(255,255,255,0.65); transition: color 0.2s; }
.footer-links a:hover { color: var(--white); }

.footer-contact p, .footer-contact a { font-size: 0.88rem; color: rgba(255,255,255,0.65); margin-bottom: 8px; display: block; transition: color 0.2s; }
.footer-contact a:hover { color: var(--white); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}
.footer-bottom a { color: var(--gold); }
.footer-bottom a:hover { text-decoration: underline; }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-images { height: 360px; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 200px; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .reach-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .section-pad { padding: 64px 0; }

 .nav-links {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #008200;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  z-index: 799;
}

.nav-links.open {
  display: flex !important;
}

.nav-links a {
  color: #ffffff !important;
  font-size: 1.4rem !important;
}
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1.3rem; color: var(--white) !important; }
  .nav-cta { background: var(--gold) !important; padding: 12px 28px; }
  .nav-toggle { display: flex; z-index: 801; }
  #navbar.scrolled .nav-toggle span { background: var(--pine); }

  .about-stats { grid-template-columns: repeat(2, 1fr); }
  .about-images { grid-template-columns: 1fr; grid-template-rows: 260px 200px; height: auto; }
  .about-img-main { grid-column: 1; grid-row: 1; }
  .about-img-side { grid-column: 1; grid-row: 2; }

  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .gallery-item.large { grid-column: span 2; }

  .booking-form { padding: 28px 20px; }
  .form-row { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

  .hero-dots { bottom: 24px; right: 16px; }

  .platforms-row { flex-direction: column; align-items: stretch; }
  .platform-card { flex-direction: row; justify-content: flex-start; gap: 16px; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item.large { grid-column: span 1; }
  .about-stats { grid-template-columns: repeat(2, 1fr); }
  .activities-grid { grid-template-columns: 1fr; }
}


/* NAV VISIBILITY FIX */
#navbar.scrolled {
  background: rgba(255, 255, 255, 0.97) !important;
  box-shadow: 0 2px 16px rgba(0,0,0,0.08);
}

#navbar.scrolled .nav-links a {
  color: #1a2e1f !important;
  font-weight: 500;
}

#navbar.scrolled .nav-logo {
  color: #1a2e1f !important;
}

#navbar.scrolled .nav-toggle span {
  background: #1a2e1f !important;
}

/* MOBILE NAV ALWAYS SOLID */
@media (max-width: 768px) {
  #navbar {
    background: rgba(253, 249, 244, 0.97) !important;
    box-shadow: 0 2px 16px rgba(0,0,0,0.08);
  }

  .nav-logo {
    color: var(--pine) !important;
  }

  .nav-toggle span {
    background: var(--pine) !important;
  }
   .nav-menu {
    max-height: 500px !important;
    overflow-y: auto !important;
  }

  .nav-menu.active {
    max-height: 100vh !important;
  }
  
    .nav-toggle span {
    background: var(--pine) !important;
  }

  #navbar.scrolled .nav-toggle span {
    background: var(--pine) !important;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex !important;
    z-index: 801;
  }

  .nav-toggle span {
    background: var(--pine) !important;
  }

  #navbar {
    background: rgba(253, 249, 244, 0.97) !important;
  }
}

/* LOGO & CLOSE ICON VISIBLE WHEN MOBILE MENU OPEN */
@media (max-width: 768px) {
  .nav-links.open ~ .nav-container .nav-logo,
  #navbar:has(.nav-links.open) .nav-logo {
    color: var(--white) !important;
  }
}


/* GALLERY SKELETON LOADER */
.gallery-skeleton {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 12px;
}
.skeleton-item {
  border-radius: var(--rad);
  background: linear-gradient(90deg, #e8e0d5 25%, #f0e8dc 50%, #e8e0d5 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}
.skeleton-item.wide { grid-column: span 2; }

@keyframes shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* GALLERY FADE IN */
.gallery-item {
  opacity: 0;
  animation: galleryFadeIn 0.5s ease forwards;
}
@keyframes galleryFadeIn {
  to { opacity: 1; }
}

/* MOBILE SKELETON */
@media (max-width: 768px) {
  .gallery-skeleton {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 180px;
  }
  .skeleton-item.wide { grid-column: span 2; }
}


/* FOOTER SOCIAL ICONS */
.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}
.footer-social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.7);
  transition: var(--transition);
}
.footer-social a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--pine);
  transform: translateY(-2px);
}
.footer-social svg { width: 18px; height: 18px; }