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

a:focus-visible, button:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}

:root {
  --green-deep:   #1A3A2A;
  --green-mid:    #6ecdf6;
  --teal:         #5cb6ee;
  --gold:         #C8A45A;
  --gold-light:   #E2C47A;
  --cream:        #F0EDE8;
  --white:        #FAFAF8;
  --charcoal:     #2C2C2C;
  --mist:         rgba(240,237,232,0.07);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--white);
  color: var(--charcoal);
  overflow-x: hidden;
}

nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 999;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5%;
  height: 68px;
  background: rgba(26,58,42,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(200,164,90,0.25);
  transition: background 0.3s;
}
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-logo-icon {
  width: 36px; height: 36px; background: var(--gold); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Space Mono', monospace; font-size: 13px; font-weight: 700;
  color: var(--green-deep); letter-spacing: -1px;
}
.nav-logo-text { font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 600; color: var(--cream); letter-spacing: 0.5px; }
.nav-links { display: flex; align-items: center; gap: 6px; list-style: none; }
.nav-links a {
  text-decoration: none; color: rgba(240,237,232,0.8); font-size: 14px; font-weight: 400;
  padding: 7px 14px; border-radius: 4px; transition: color 0.2s, background 0.2s; letter-spacing: 0.3px;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); background: rgba(200,164,90,0.1); }
.nav-cta { background: var(--gold) !important; color: var(--green-deep) !important; font-weight: 600 !important; padding: 8px 18px !important; }
.nav-cta:hover { background: var(--gold-light) !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--cream); border-radius: 2px; transition: 0.3s; }
.mobile-menu {
  display: none; position: fixed; top: 68px; left: 0; right: 0;
  background: var(--green-deep); border-bottom: 1px solid rgba(200,164,90,0.2);
  padding: 16px 5% 20px; z-index: 998; flex-direction: column; gap: 4px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { text-decoration: none; color: var(--cream); font-size: 15px; padding: 10px 0; border-bottom: 1px solid rgba(200,164,90,0.1); }
.mobile-menu a:last-child { border-bottom: none; color: var(--gold); font-weight: 600; }

#beranda {
  min-height: 100vh;
  background: linear-gradient(160deg, var(--green-deep) 0%, #0F2019 60%, #0A1810 100%);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden; padding-top: 68px;
}
.hero-bg-rings { position: absolute; inset: 0; pointer-events: none; }
.ring { position: absolute; border-radius: 50%; border: 1px solid rgba(59,125,110,0.18); }
.ring-1 { width: 600px; height: 600px; top: -100px; right: -150px; }
.ring-2 { width: 900px; height: 900px; top: -250px; right: -300px; }
.ring-3 { width: 1200px; height: 1200px; top: -400px; right: -450px; }
.drone-hud { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.hud-corner { position: absolute; width: 40px; height: 40px; border-color: rgba(200,164,90,0.4); border-style: solid; }
.hud-corner.tl { top: 80px; left: 30px; border-width: 2px 0 0 2px; }
.hud-corner.tr { top: 80px; right: 30px; border-width: 2px 2px 0 0; }
.hud-corner.bl { bottom: 40px; left: 30px; border-width: 0 0 2px 2px; }
.hud-corner.br { bottom: 40px; right: 30px; border-width: 0 2px 2px 0; }
.hud-data { position: absolute; font-family: 'Space Mono', monospace; font-size: 10px; color: rgba(200,164,90,0.55); letter-spacing: 1px; line-height: 1.7; }
.hud-data.tl { top: 84px; left: 78px; }
.hud-data.tr { top: 84px; right: 78px; text-align: right; }
.hud-data.bl { bottom: 44px; left: 78px; }
.hud-data.br { bottom: 44px; right: 78px; text-align: right; }
.crosshair { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); width: 60px; height: 60px; pointer-events: none; }
.crosshair::before, .crosshair::after { content: ''; position: absolute; background: rgba(200,164,90,0.3); }
.crosshair::before { width: 100%; height: 1px; top: 50%; left: 0; }
.crosshair::after  { height: 100%; width: 1px; left: 50%; top: 0; }
.crosshair-dot { position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%); width: 6px; height: 6px; border: 1px solid rgba(200,164,90,0.6); border-radius: 50%; }
.crosshair-circle { position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%); width: 30px; height: 30px; border: 1px solid rgba(200,164,90,0.25); border-radius: 50%; }
.hero-content { position: relative; z-index: 2; text-align: center; padding: 0 20px; max-width: 820px; }
.hero-eyebrow { font-family: 'Space Mono', monospace; font-size: 11px; letter-spacing: 3px; color: var(--gold); text-transform: uppercase; margin-bottom: 24px; opacity: 0.9; }
.hero-title { font-family: 'Playfair Display', serif; font-size: clamp(3rem, 8vw, 6rem); font-weight: 800; color: var(--cream); line-height: 1.0; letter-spacing: -1px; margin-bottom: 12px; }
.hero-title span { color: var(--gold); font-style: italic; }
.hero-sub { font-family: 'Playfair Display', serif; font-size: clamp(1rem, 2.5vw, 1.4rem); color: rgba(240,237,232,0.55); font-style: italic; margin-bottom: 28px; letter-spacing: 0.5px; }
.hero-desc { font-size: 15px; color: rgba(240,237,232,0.65); line-height: 1.7; max-width: 560px; margin: 0 auto 40px; }
.hero-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn-primary { background: var(--gold); color: var(--green-deep); padding: 13px 30px; border-radius: 4px; font-weight: 600; font-size: 14px; text-decoration: none; letter-spacing: 0.3px; transition: background 0.2s, transform 0.2s; display: inline-block; }
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); }
.btn-outline { background: transparent; border: 1px solid rgba(200,164,90,0.5); color: var(--cream); padding: 13px 30px; border-radius: 4px; font-size: 14px; text-decoration: none; transition: border-color 0.2s, color 0.2s; display: inline-block; }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.hero-scroll { position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 8px; font-family: 'Space Mono', monospace; font-size: 9px; color: rgba(200,164,90,0.5); letter-spacing: 2px; text-transform: uppercase; }
.scroll-line { width: 1px; height: 36px; background: linear-gradient(to bottom, rgba(200,164,90,0.4), transparent); animation: scrollPulse 2s ease-in-out infinite; }

@keyframes scrollPulse { 0%, 100% { opacity: 1; transform: scaleY(1); } 50% { opacity: 0.4; transform: scaleY(0.6); } }

section { padding: 96px 5%; }
.section-label { font-family: 'Space Mono', monospace; font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: var(--teal); margin-bottom: 14px; }
.section-title { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; color: var(--green-deep); line-height: 1.15; margin-bottom: 20px; }
.section-title em { color: var(--teal); font-style: italic; }
.section-divider { width: 48px; height: 2px; background: var(--gold); margin-bottom: 28px; }

#paket { background: var(--green-deep); }
#paket .section-label { color: var(--gold-light); }
#paket .section-title { color: var(--cream); }
#paket .section-title em { color: var(--gold); }
#paket .section-divider { background: var(--gold); }
.packages-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 48px; max-width: 1200px; margin-left: auto; margin-right: auto; }
.package-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(200,164,90,0.15); border-radius: 10px; padding: 32px 24px 28px; display: flex; flex-direction: column; transition: transform 0.25s, border-color 0.25s, background 0.25s, box-shadow 0.25s; position: relative; overflow: hidden; }
.package-card:hover { transform: translateY(-6px); border-color: rgba(200,164,90,0.5); background: rgba(255,255,255,0.07); box-shadow: 0 16px 36px rgba(0,0,0,0.28); }
.package-card.featured { border-color: var(--gold); background: rgba(200,164,90,0.08); }
.package-featured-tag { position: absolute; top: 16px; right: -28px; background: var(--gold); color: var(--green-deep); font-size: 10px; font-weight: 700; letter-spacing: 1px; padding: 5px 36px; transform: rotate(45deg); transform-origin: center; }
.package-duration { font-family: 'Space Mono', monospace; font-size: 11px; color: var(--gold); letter-spacing: 2px; margin-bottom: 12px; }
.package-name { font-family: 'Playfair Display', serif; font-size: 1.6rem; font-weight: 700; color: var(--cream); margin-bottom: 8px; }
.package-tagline { font-size: 12px; color: rgba(240,237,232,0.45); margin-bottom: 24px; line-height: 1.5; }
.package-tagline { min-height: 40px; }
.package-list-label { font-family: 'Space Mono', monospace; font-size: 10.5px; letter-spacing: 1.5px; color: var(--gold-light); margin: 4px 0 10px; opacity: 0.85; }
.package-list-label.exclude { color: rgba(240,237,232,0.4); margin-top: 16px; }
.package-include, .package-exclude { list-style: none; }
.package-include { margin-bottom: 4px; }
.package-exclude { margin-bottom: 20px; }
.package-include li, .package-exclude li { font-size: 13px; color: rgba(240,237,232,0.78); padding: 6px 0; display: flex; align-items: flex-start; gap: 10px; line-height: 1.4; }
.package-include li::before { content: '✓'; color: #6FBF9B; font-size: 12px; font-weight: 700; margin-top: 1px; flex-shrink: 0; }
.package-exclude li { color: rgba(240,237,232,0.45); }
.package-exclude li::before { content: '✕'; color: rgba(240,237,232,0.35); font-size: 11px; margin-top: 1px; flex-shrink: 0; }
.package-cta { margin-top: auto; display: block; text-align: center; background: transparent; border: 1px solid rgba(200,164,90,0.4); color: var(--gold); padding: 13px; border-radius: 6px; font-size: 13px; font-weight: 500; text-decoration: none; transition: background 0.2s, color 0.2s, transform 0.2s; letter-spacing: 0.3px; }
.package-cta:active { transform: scale(0.98); }
.package-itinerary-btn {
  margin-top: 10px; display: block; width: 100%; text-align: center; background: none; border: none;
  color: rgba(240,237,232,0.55); font-size: 12.5px; font-family: 'Inter', sans-serif;
  text-decoration: underline; text-underline-offset: 3px; cursor: pointer;
  padding: 6px; transition: color 0.2s;
}
.package-itinerary-btn:hover { color: var(--gold-light); }

.itinerary-day { margin-bottom: 18px; }
.itinerary-day:last-child { margin-bottom: 0; }
.itinerary-day-label {
  font-family: 'Space Mono', monospace; font-size: 11px; letter-spacing: 1.5px;
  color: var(--white); background: var(--green-deep); display: inline-block;
  padding: 4px 10px; border-radius: 4px; margin-bottom: 10px;
}
.itinerary-stops { list-style: none; }
.itinerary-stops li {
  position: relative; font-size: 13.5px; color: #3a3a3a; line-height: 1.5;
  padding: 6px 0 6px 22px; border-left: 2px solid rgba(200,164,90,0.35); margin-left: 5px;
}
.itinerary-stops li::before {
  content: ''; position: absolute; left: -5px; top: 13px; width: 8px; height: 8px;
  border-radius: 50%; background: var(--gold);
}
.itinerary-stops li:last-child { border-left-color: transparent; }

/* Halaman itinerary tersendiri */
#itinerary-page { min-height: 100vh; padding-top: 68px; background: var(--white); display: flex; }
.itinerary-page-wrap { max-width: 640px; margin: 0 auto; padding: 56px 5% 80px; width: 100%; }
.itinerary-back { display: inline-block; font-size: 13px; color: #888; text-decoration: none; margin-bottom: 24px; transition: color 0.2s; }
.itinerary-back:hover { color: var(--green-deep); }
#itinerary-page .package-list-label { color: var(--teal); margin-bottom: 8px; }
#itin-title { font-family: 'Playfair Display', serif; font-size: clamp(1.6rem, 4vw, 2.2rem); font-weight: 700; color: var(--green-deep); line-height: 1.25; margin-bottom: 14px; }
.itinerary-page-sub { font-size: 14.5px; color: #666; line-height: 1.7; margin-bottom: 32px; max-width: 520px; }
#itin-body .itinerary-day { margin-bottom: 26px; }
.itinerary-page-cta {
  display: block; text-align: center; background: #25D366; color: #fff;
  padding: 15px; border-radius: 8px; font-size: 15px; font-weight: 600;
  text-decoration: none; transition: background 0.2s, transform 0.2s; margin-top: 8px;
}
.itinerary-page-cta:hover { background: #1fb955; }
.itinerary-page-cta:active { transform: scale(0.98); }
.package-cta:hover { background: var(--gold); color: var(--green-deep); }
.package-card.featured .package-cta { background: var(--gold); color: var(--green-deep); font-weight: 600; }
.package-card.featured .package-cta:hover { background: var(--gold-light); }
.custom-card { margin: 24px auto 0; max-width: 1200px; background: rgba(59,125,110,0.12); border: 1px dashed rgba(59,125,110,0.4); border-radius: 4px; padding: 32px 40px; display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.custom-card-info .package-duration { margin-bottom: 6px; }
.custom-card-info h3 { font-family: 'Playfair Display', serif; font-size: 1.5rem; color: var(--cream); margin-bottom: 8px; }
.custom-card-info p { font-size: 13px; color: rgba(240,237,232,0.55); line-height: 1.6; max-width: 500px; }
.custom-cta { background: var(--teal); color: var(--white); padding: 13px 28px; border-radius: 4px; font-weight: 600; font-size: 14px; text-decoration: none; white-space: nowrap; transition: background 0.2s; }
.custom-cta:hover { background: #2d6659; }

#dokumentasi { background: var(--white); }

.selfie-slider-section { margin: 48px auto 56px; max-width: 1200px; }
.selfie-slider-head { margin-bottom: 20px; }
.selfie-slider-head .package-list-label { margin-bottom: 6px; }
.selfie-slider-title { font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 600; color: var(--green-deep); }
.selfie-slider {
  display: flex; gap: 16px; overflow-x: auto; scroll-snap-type: x mandatory;
  padding-bottom: 8px; scrollbar-width: thin;
}
.selfie-slider::-webkit-scrollbar { height: 6px; }
.selfie-slider::-webkit-scrollbar-thumb { background: rgba(0,0,0,0.15); border-radius: 3px; }
.selfie-slide { flex: 0 0 auto; width: 220px; scroll-snap-align: start; }
.selfie-slide-media {
  position: relative; width: 100%; aspect-ratio: 4/5; border-radius: 10px; overflow: hidden;
  background: linear-gradient(135deg, var(--green-deep), #0F2019);
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}
.selfie-slide-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.selfie-placeholder {
  display: none; position: absolute; inset: 0; flex-direction: column; align-items: center; justify-content: center;
  gap: 8px; color: rgba(240,237,232,0.55); text-align: center; padding: 12px;
}
.selfie-placeholder span { font-size: 30px; }
.selfie-placeholder p { font-size: 11.5px; line-height: 1.4; }
.selfie-slide-media.img-missing img { display: none; }
.selfie-slide-media.img-missing .selfie-placeholder { display: flex; }
.selfie-caption { margin-top: 10px; font-size: 12.5px; color: #666; text-align: center; }
.selfie-slider-controls { display: flex; align-items: center; justify-content: center; gap: 16px; margin-top: 16px; }
.selfie-nav {
  width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(0,0,0,0.12);
  background: var(--white); font-size: 18px; color: var(--green-deep); cursor: pointer;
  display: flex; align-items: center; justify-content: center; transition: background 0.2s, border-color 0.2s;
}
.selfie-nav:hover { background: rgba(200,164,90,0.12); border-color: var(--gold); }
.selfie-dots { display: flex; gap: 6px; }
.selfie-dot { width: 7px; height: 7px; border-radius: 50%; background: rgba(0,0,0,0.15); border: none; padding: 0; cursor: pointer; transition: background 0.2s, transform 0.2s; }
.selfie-dot.active { background: var(--gold); transform: scale(1.3); }

footer { background: #0D1F14; color: rgba(240,237,232,0.7); padding: 64px 5% 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(200,164,90,0.1); max-width: 1200px; margin: 0 auto; }
.footer-brand .nav-logo { margin-bottom: 16px; display: flex; }
.footer-brand p { font-size: 13px; line-height: 1.7; max-width: 280px; color: rgba(240,237,232,0.5); }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.social-btn { width: 34px; height: 34px; border-radius: 50%; border: 1px solid rgba(200,164,90,0.2); display: flex; align-items: center; justify-content: center; font-size: 14px; text-decoration: none; color: rgba(240,237,232,0.5); transition: border-color 0.2s, color 0.2s; }
.social-btn:hover { border-color: var(--gold); color: var(--gold); }
.footer-col h4 { font-family: 'Playfair Display', serif; font-size: 14px; font-weight: 600; color: var(--cream); margin-bottom: 18px; padding-bottom: 10px; border-bottom: 1px solid rgba(200,164,90,0.15); }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-links a { text-decoration: none; font-size: 13px; color: rgba(240,237,232,0.5); transition: color 0.2s; }
.footer-links a:hover { color: var(--gold); }
.contact-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 14px; }
.contact-icon { width: 28px; height: 28px; flex-shrink: 0; background: rgba(200,164,90,0.1); border-radius: 4px; display: flex; align-items: center; justify-content: center; font-size: 13px; }
.contact-text { font-size: 12.5px; line-height: 1.6; }
.contact-text strong { color: var(--cream); display: block; font-size: 11px; letter-spacing: 0.5px; margin-bottom: 2px; }
.footer-bottom { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; padding: 20px 0; font-size: 12px; color: rgba(240,237,232,0.3); flex-wrap: wrap; gap: 8px; }
.footer-bottom span { color: var(--gold); opacity: 0.7; }

.section-intro { display: flex; gap: 80px; align-items: flex-start; max-width: 1100px; margin-bottom: 0; flex-wrap: wrap; }
.section-intro-left { flex: 1; min-width: 280px; }
.section-intro-right { flex: 1; min-width: 260px; padding-top: 56px; }
.section-intro-right p { font-size: 15px; line-height: 1.8; color: #666; }

.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 900;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 22px rgba(0,0,0,0.3);
  transition: transform 0.2s, box-shadow 0.2s;
}
.wa-float:hover { transform: translateY(-3px) scale(1.05); box-shadow: 0 12px 28px rgba(0,0,0,0.35); }

@media (max-width: 900px) {
  .packages-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 680px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .packages-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .custom-card { flex-direction: column; }
  .hud-data.tr, .hud-data.br { display: none; }
  section { padding: 72px 5%; }
  .wa-float { width: 50px; height: 50px; right: 16px; bottom: 16px; }
  .selfie-slide { width: 165px; }
}