:root {
  --forest: #1e3a2f;
  --moss: #4a7c59;
  --bark: #7a5c3a;
  --clay: #c9874f;
  --cream: #f5f0e8;
  --gold: #d4a843;
  --mist: #e8ede6;
  --charcoal: #2c2c2c;
}

* { box-sizing: border-box; }

body {
  font-family: 'DM Sans', sans-serif;
  background-color: #fff;
  color: var(--charcoal);
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
}

/* ── NAVBAR ── */
.navbar {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0,0,0,0.07);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}
.navbar-brand {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  color: var(--forest) !important;
  font-size: 1.5rem;
  letter-spacing: -0.5px;
}
.navbar-brand span { color: var(--clay); }
.nav-link {
  color: var(--charcoal) !important;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: color 0.2s;
}
.nav-link:hover { color: var(--moss) !important; }
.btn-nav {
  background: var(--forest);
  color: #fff !important;
  border-radius: 50px;
  padding: 0.45rem 1.4rem;
  font-size: 0.85rem;
  font-weight: 500;
  transition: background 0.2s, transform 0.15s;
}
.btn-nav:hover { background: var(--moss); transform: translateY(-1px); }

/* ── HERO SLIDER ── */
.hero-slider {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}

/* Slides */
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  transition: opacity 1.2s ease, transform 6s ease;
}
.hero-slide.active {
  opacity: 1;
  transform: scale(1);
}
.hero-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,25,16,0.45) 0%,
    rgba(10,25,16,0.35) 40%,
    rgba(10,25,16,0.7)  100%
  );
}

/* Slide backgrounds */
.slide-1 { background-image: url('https://images.unsplash.com/photo-1448375240586-882707db888b?w=1600&q=80'); }
.slide-2 { background-image: url('https://images.unsplash.com/photo-1441974231531-c6227db76b6e?w=1600&q=80'); }
.slide-3 { background-image: url('https://images.unsplash.com/photo-1501854140801-50d01698950b?w=1600&q=80'); }
.slide-4 { background-image: url('https://images.unsplash.com/photo-1487730116645-74489c95b41b?w=1600&q=80'); }

/* Slide content */
.hero-content {
  position: absolute;
  inset: 0;
  z-index: 10;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 5rem;
}
.hero-tag {
  display: inline-block;
  background: var(--gold);
  color: var(--forest);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
}
.slide-text {
  position: absolute;
  inset: 0;
  z-index: 11;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 7rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease 0.4s, transform 0.6s ease 0.4s;
  pointer-events: none;
}
.hero-slide.active .slide-text {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.hero h1 {
  font-size: clamp(2.8rem, 6.5vw, 5.5rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.05;
  margin-bottom: 1.1rem;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold);
}
.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.85);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 2rem;
}
.btn-primary-custom {
  background: var(--clay);
  color: #fff;
  border: none;
  padding: 0.85rem 2.2rem;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}
.btn-primary-custom:hover {
  background: var(--bark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(122,92,58,0.35);
  color: #fff;
}
.btn-outline-custom {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.6);
  padding: 0.85rem 2.2rem;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.2s;
}
.btn-outline-custom:hover {
  background: rgba(255,255,255,0.15);
  color: #fff;
}

/* Stats bar di dalam hero */
.hero-stats-bar {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 12;
  background: rgba(10,25,16,0.65);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: stretch;
}
.hero-stat-item {
  flex: 1;
  padding: 1.1rem 1.5rem;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.hero-stat-item:last-of-type { border-right: none; }
.hero-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.7rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 0.2rem;
}

/* Nav arrows */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 15;
  width: 46px; height: 46px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  border: 1.5px solid rgba(255,255,255,0.25);
  border-radius: 50%;
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, transform 0.2s;
}
.slider-arrow:hover {
  background: rgba(255,255,255,0.25);
  transform: translateY(-50%) scale(1.08);
}
.slider-prev { left: 1.5rem; }
.slider-next { right: 1.5rem; }

/* Dot indicators */
.slider-dots {
  position: absolute;
  bottom: 5.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 15;
  display: flex;
  gap: 0.5rem;
}
.slider-dot {
  width: 28px; height: 3px;
  border-radius: 3px;
  background: rgba(255,255,255,0.35);
  cursor: pointer;
  transition: background 0.3s, width 0.3s;
  border: none;
  padding: 0;
}
.slider-dot.active {
  background: var(--gold);
  width: 44px;
}

/* Progress bar */
.slider-progress {
  position: absolute;
  bottom: 0; left: 0;
  height: 3px;
  background: var(--gold);
  z-index: 16;
  width: 0%;
  transition: width linear;
}

/* Slide caption tag */
.slide-caption-tag {
  display: inline-block;
  background: var(--gold);
  color: var(--forest);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.3rem 0.9rem;
  border-radius: 50px;
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .slider-arrow { display: none; }
  .hero-stat-item { padding: 0.8rem 0.5rem; }
  .hero-stat-num { font-size: 1.3rem; }
  .hero-stat-label { font-size: 0.6rem; }
  .hero h1 { font-size: 2.5rem; }
}

/* ── MARQUEE STRIP ── */
.marquee-strip {
  background: var(--forest);
  padding: 0.85rem 0;
  overflow: hidden;
}
.marquee-track {
  display: flex;
  gap: 3rem;
  animation: marquee 20s linear infinite;
  white-space: nowrap;
}
.marquee-item {
  color: rgba(255,255,255,0.7);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.marquee-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gold);
  display: inline-block;
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── ABOUT ── */
.about-section { padding: 7rem 0; background: #fff; }
.section-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--moss);
  margin-bottom: 0.75rem;
}
.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--forest);
  line-height: 1.15;
  margin-bottom: 1.5rem;
}
.about-text {
  color: #555;
  line-height: 1.8;
  font-size: 0.97rem;
}
.about-img-wrap {
  position: relative;
}
.about-img-main {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 16px;
}
.about-img-badge {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  background: var(--gold);
  color: var(--forest);
  border-radius: 12px;
  padding: 1rem 1.5rem;
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  box-shadow: 0 8px 30px rgba(212,168,67,0.3);
}
.about-img-badge span {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  opacity: 0.8;
}
.pill-feature {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--mist);
  color: var(--forest);
  font-size: 0.82rem;
  font-weight: 500;
  padding: 0.45rem 1rem;
  border-radius: 50px;
  margin: 0.3rem 0.3rem 0 0;
}
.pill-feature i { color: var(--moss); }

/* ── TOURS ── */
.tours-section { padding: 7rem 0; background: var(--cream); }
.tour-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
  transition: transform 0.25s, box-shadow 0.25s;
  height: 100%;
}
.tour-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.13);
}
.tour-card-img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}
.tour-card-body { padding: 1.5rem; }
.tour-badge {
  display: inline-block;
  background: var(--mist);
  color: var(--moss);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  margin-bottom: 0.75rem;
}
.tour-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--forest);
  margin-bottom: 0.6rem;
}
.tour-card-desc {
  font-size: 0.875rem;
  color: #666;
  line-height: 1.65;
  margin-bottom: 1.25rem;
}
.tour-meta {
  display: flex;
  gap: 1.2rem;
  font-size: 0.8rem;
  color: #888;
  margin-bottom: 1.25rem;
}
.tour-meta i { color: var(--clay); margin-right: 0.25rem; }
.btn-tour {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--forest);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 0.55rem 1.4rem;
  font-size: 0.83rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s;
}
.btn-tour:hover { background: var(--moss); color: #fff; }

/* ── EXPERIENCE ── */
.experience-section { padding: 7rem 0; background: var(--forest); }
.experience-section .section-label { color: var(--gold); }
.experience-section .section-title { color: #fff; }
.exp-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}
.exp-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  padding: 1.75rem;
  transition: background 0.2s;
}
.exp-card:hover { background: rgba(255,255,255,0.12); }
.exp-icon {
  width: 48px; height: 48px;
  background: var(--gold);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  color: var(--forest);
  margin-bottom: 1rem;
}
.exp-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 0.5rem;
}
.exp-desc { font-size: 0.83rem; color: rgba(255,255,255,0.65); line-height: 1.65; }

/* ── GALLERY ── */
.gallery-section { padding: 7rem 0; background: #fff; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 1rem;
}
.gallery-item {
  overflow: hidden;
  border-radius: 14px;
  position: relative;
}
.gallery-item:nth-child(1) { grid-row: span 2; }
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item:nth-child(1) img { height: 480px; }
.gallery-item:not(:nth-child(1)) img { height: 230px; }
.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(20,40,28,0.6) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s;
  display: flex; align-items: flex-end; padding: 1.2rem;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-caption {
  color: #fff; font-size: 0.85rem; font-weight: 600; letter-spacing: 0.03em;
}

/* ── TESTIMONIAL ── */
.testimonial-section { padding: 7rem 0; background: var(--cream); }
.testi-card {
  background: #fff;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  height: 100%;
}
.testi-stars { color: var(--gold); font-size: 0.9rem; margin-bottom: 1rem; }
.testi-text { font-size: 0.93rem; color: #555; line-height: 1.75; margin-bottom: 1.5rem; font-style: italic; }
.testi-author { font-weight: 700; font-size: 0.875rem; color: var(--forest); }
.testi-role { font-size: 0.78rem; color: #999; }
.testi-quote {
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  color: var(--mist);
  line-height: 1;
  margin-bottom: -0.5rem;
  display: block;
}

/* ── CTA ── */
.cta-section {
  padding: 7rem 0;
  background:
    linear-gradient(135deg, rgba(20,40,28,0.92) 0%, rgba(74,124,89,0.85) 100%),
    url('https://images.unsplash.com/photo-1441974231531-c6227db76b6e?w=1200&q=80') center/cover no-repeat;
  text-align: center;
}
.cta-section h2 { color: #fff; font-size: clamp(2rem, 5vw, 3.5rem); }
.cta-section p { color: rgba(255,255,255,0.8); font-size: 1.05rem; margin-bottom: 2rem; }

/* ── FOOTER ── */
footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.6);
  padding: 4rem 0 2rem;
}
.footer-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 900;
  color: #fff;
}
.footer-brand span { color: var(--gold); }
.footer-desc { font-size: 0.85rem; line-height: 1.7; margin-top: 0.75rem; max-width: 260px; }
.footer-heading {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  margin-bottom: 1rem;
}
.footer-link {
  display: block;
  color: rgba(255,255,255,0.55);
  font-size: 0.875rem;
  text-decoration: none;
  margin-bottom: 0.5rem;
  transition: color 0.2s;
}
.footer-link:hover { color: var(--gold); }
.social-icon {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.08);
  border-radius: 8px;
  display: inline-flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 0.95rem;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
  margin-right: 0.4rem;
}
.social-icon:hover { background: var(--gold); color: var(--forest); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 3rem;
  padding-top: 1.5rem;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
}

/* ── WHATSAPP FAB ── */
.wa-fab {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 56px; height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(37,211,102,0.4);
  z-index: 999;
  transition: transform 0.2s, box-shadow 0.2s;
}
.wa-fab:hover {
  transform: scale(1.08);
  box-shadow: 0 10px 28px rgba(37,211,102,0.5);
  color: #fff;
}

@media (max-width: 768px) {
  .exp-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item:nth-child(1) { grid-row: span 1; }
  .gallery-item:nth-child(1) img, .gallery-item:not(:nth-child(1)) img { height: 180px; }
  .hero-stats { gap: 1.5rem; flex-wrap: wrap; }
}

/* ── PROMO POPUP MODAL ── */
.promo-overlay {
  position: fixed; inset: 0;
  background: rgba(10, 20, 14, 0.82);
  backdrop-filter: blur(6px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  animation: fadeInOverlay 0.4s ease;
}
@keyframes fadeInOverlay {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.promo-box {
  position: relative;
  max-width: 420px;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
  animation: popIn 0.45s cubic-bezier(0.34,1.56,0.64,1);
}
@keyframes popIn {
  from { transform: scale(0.75) translateY(40px); opacity: 0; }
  to   { transform: scale(1) translateY(0);       opacity: 1; }
}
.promo-poster {
  width: 100%;
  display: block;
}
.promo-bottom {
  background: var(--forest);
  padding: 1.5rem 1.75rem;
  text-align: center;
}
.promo-bottom h4 {
  color: #fff;
  font-size: 1.15rem;
  margin-bottom: 0.35rem;
}
.promo-bottom p {
  color: rgba(255,255,255,0.65);
  font-size: 0.82rem;
  margin-bottom: 1.2rem;
}
.promo-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: var(--gold);
  color: var(--forest);
  font-weight: 700;
  font-size: 0.88rem;
  padding: 0.65rem 1.6rem;
  border-radius: 50px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}
.promo-cta:hover { background: #e6b940; transform: scale(1.03); color: var(--forest); }
.promo-close {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  width: 34px; height: 34px;
  background: rgba(0,0,0,0.55);
  border: none;
  border-radius: 50%;
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
  z-index: 2;
}
.promo-close:hover { background: rgba(0,0,0,0.8); }
.promo-skip {
  display: block;
  margin-top: 0.85rem;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.45);
  cursor: pointer;
  text-decoration: underline;
  background: none;
  border: none;
  text-align: center;
  width: 100%;
}
.promo-skip:hover { color: rgba(255,255,255,0.7); }
.promo-overlay.hide {
  animation: fadeOutOverlay 0.3s ease forwards;
}
@keyframes fadeOutOverlay {
  to { opacity: 0; pointer-events: none; }
}