/* Summit Adventure — Adventure Tour | travel/11 */
:root {
  --primary: #1b2a1e;
  --accent: #69b578;
  --accent-dark: #4a8a58;
  --accent-light: #8fd49e;
  --bg: #0f1a11;
  --bg2: #162019;
  --bg3: #1e2e21;
  --surface: #243328;
  --surface2: #2c3d30;
  --text: #e8f0ea;
  --text-muted: #94a89a;
  --text-dim: #6b7d6e;
  --earthy: #8b6914;
  --earthy-light: #c49a2a;
  --stone: #5a5a4a;
  --bark: #3d2b1a;
  --warning: #d4832a;
  --border: #2e4032;
}

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

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

body {
  font-family: -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  min-height: 100vh;
}

/* ── NAV ── */
.nav-wrap { background: var(--primary); border-bottom: 2px solid var(--accent); position: sticky; top: 0; z-index: 100; }

nav { max-width: 1100px; margin: 0 auto; padding: 0 16px; display: flex; align-items: center; justify-content: space-between; height: 60px; }

.nav-brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-brand-icon { width: 36px; height: 36px; }
.nav-brand-text { font-size: 1.1rem; font-weight: 800; color: var(--accent-light); letter-spacing: 0.04em; text-transform: uppercase; }
.nav-brand-sub { font-size: 0.65rem; color: var(--text-muted); letter-spacing: 0.08em; text-transform: uppercase; display: block; margin-top: -2px; }

#nav-toggle { display: none; }

.nav-hamburger {
  display: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}
.nav-hamburger span { display: block; width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: 0.3s; }

.nav-links { display: flex; align-items: center; gap: 4px; list-style: none; }
.nav-links a {
  display: block;
  padding: 8px 12px;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
  letter-spacing: 0.02em;
}
.nav-links a:hover, .nav-links a.active { color: var(--accent-light); background: rgba(105,181,120,0.12); }
.nav-cta a { background: var(--accent) !important; color: #0f1a11 !important; font-weight: 700 !important; }
.nav-cta a:hover { background: var(--accent-light) !important; }

@media(max-width:768px) {
  .nav-hamburger { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 62px;
    left: 0; right: 0;
    background: var(--primary);
    flex-direction: column;
    padding: 12px 16px 20px;
    gap: 2px;
    border-bottom: 2px solid var(--accent);
    align-items: stretch;
  }
  .nav-links a { padding: 10px 14px; font-size: 0.95rem; }
  #nav-toggle:checked ~ .nav-links { display: flex; }
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(145deg, #0a1208 0%, #1b2a1e 50%, #0f2010 100%);
}

.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  overflow: hidden;
}
.hero-mountain {
  position: absolute;
  bottom: 0; left: 0; right: 0;
}
.hero-stars {
  position: absolute; top: 0; left: 0; right: 0; height: 60%;
  background: radial-gradient(ellipse at 20% 30%, rgba(105,181,120,0.05) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 10%, rgba(196,154,42,0.04) 0%, transparent 50%);
}

.hero-content {
  position: relative; z-index: 2;
  max-width: 1100px; margin: 0 auto; padding: 60px 24px 80px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(105,181,120,0.15); border: 1px solid rgba(105,181,120,0.3);
  color: var(--accent-light); padding: 6px 14px; border-radius: 100px;
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  color: #fff;
}
.hero h1 em { font-style: normal; color: var(--accent); }

.hero-desc { font-size: 1.05rem; color: var(--text-muted); margin-bottom: 32px; max-width: 420px; }

.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 26px; border-radius: 8px; text-decoration: none;
  font-size: 0.9rem; font-weight: 700; transition: all 0.2s; letter-spacing: 0.02em;
  border: none; cursor: pointer;
}
.btn-primary { background: var(--accent); color: #0a1208; }
.btn-primary:hover { background: var(--accent-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(105,181,120,0.3); }
.btn-outline { background: transparent; color: var(--text); border: 1.5px solid var(--border); }
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }

.hero-stats { display: flex; gap: 24px; margin-top: 36px; }
.hero-stat { text-align: center; }
.hero-stat-num { font-size: 1.6rem; font-weight: 900; color: var(--accent); display: block; line-height: 1; }
.hero-stat-label { font-size: 0.72rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.06em; }

.hero-visual { display: flex; justify-content: center; align-items: center; }

@media(max-width:768px) {
  .hero-content { grid-template-columns: 1fr; gap: 32px; padding: 48px 20px 60px; }
  .hero-visual { display: none; }
  .hero-stats { gap: 16px; }
}

/* ── SECTION ── */
section { padding: 72px 24px; }
section.alt { background: var(--bg2); }
section.dark { background: var(--bg3); }

.container { max-width: 1100px; margin: 0 auto; }

.section-label {
  display: inline-block;
  color: var(--accent); font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  margin-bottom: 10px;
}
.section-title {
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  font-weight: 800; line-height: 1.2; margin-bottom: 14px; color: #fff;
}
.section-desc { color: var(--text-muted); max-width: 540px; margin-bottom: 40px; }

/* ── FEATURES ── */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media(max-width:860px) { .features-grid { grid-template-columns: 1fr; } }

.feature-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 12px; padding: 28px 24px;
  transition: border-color 0.3s, transform 0.2s;
}
.feature-card:hover { border-color: var(--accent); transform: translateY(-3px); }
.feature-icon { width: 48px; height: 48px; margin-bottom: 16px; }
.feature-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; color: #fff; }
.feature-card p { font-size: 0.875rem; color: var(--text-muted); }

/* ── PAKET CARD ── */
.paket-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 20px; }

.paket-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 14px; overflow: hidden;
  transition: border-color 0.3s, transform 0.2s;
  display: flex; flex-direction: column;
}
.paket-card:hover { border-color: var(--accent); transform: translateY(-4px); }
.paket-card.featured { border-color: var(--accent); }

.paket-header {
  padding: 22px 22px 16px;
  background: linear-gradient(135deg, var(--surface2), var(--surface));
  position: relative;
}
.paket-badge {
  position: absolute; top: 14px; right: 14px;
  background: var(--accent); color: #0a1208;
  font-size: 0.68rem; font-weight: 700; padding: 3px 9px; border-radius: 100px;
  text-transform: uppercase; letter-spacing: 0.05em;
}
.paket-icon { width: 40px; height: 40px; margin-bottom: 12px; }
.paket-card h3 { font-size: 1.05rem; font-weight: 700; color: #fff; margin-bottom: 4px; }
.paket-duration { font-size: 0.78rem; color: var(--accent); font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; }

.paket-body { padding: 16px 22px 20px; flex: 1; }
.paket-price { font-size: 1.4rem; font-weight: 900; color: var(--accent-light); margin-bottom: 4px; }
.paket-price-note { font-size: 0.72rem; color: var(--text-dim); margin-bottom: 14px; }
.paket-desc { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 14px; }

.include-list { list-style: none; margin-bottom: 10px; }
.include-list li { font-size: 0.82rem; color: var(--text-muted); padding: 3px 0; display: flex; gap: 8px; align-items: flex-start; }
.include-list li::before { content: "✓"; color: var(--accent); font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.exclude-list { list-style: none; }
.exclude-list li { font-size: 0.82rem; color: var(--text-dim); padding: 3px 0; display: flex; gap: 8px; align-items: flex-start; }
.exclude-list li::before { content: "✗"; color: var(--stone); flex-shrink: 0; margin-top: 1px; }

.paket-footer { padding: 0 22px 20px; }

/* ── DESTINASI ── */
.dest-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px; }

.dest-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 14px; overflow: hidden;
  transition: border-color 0.3s, transform 0.2s;
}
.dest-card:hover { border-color: var(--accent); transform: translateY(-3px); }

.dest-visual {
  height: 140px;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.dest-body { padding: 18px 18px 20px; }
.dest-card h3 { font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: 4px; }
.dest-loc { font-size: 0.75rem; color: var(--accent); font-weight: 600; margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.05em; }
.dest-card p { font-size: 0.83rem; color: var(--text-muted); }
.dest-tags { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 10px; }
.dest-tag { background: rgba(105,181,120,0.12); color: var(--accent-light); font-size: 0.7rem; padding: 3px 9px; border-radius: 100px; font-weight: 600; }

/* ── GALERI ── */
.galeri-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 12px; }
.galeri-item {
  border-radius: 10px; overflow: hidden;
  aspect-ratio: 4/3;
  position: relative;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}
.galeri-item:hover { transform: scale(1.02); box-shadow: 0 8px 24px rgba(0,0,0,0.4); }
.galeri-item:nth-child(4n+1) { grid-column: span 2; }
@media(max-width:600px) { .galeri-item:nth-child(4n+1) { grid-column: span 1; } }

.galeri-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 8px 12px;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  font-size: 0.78rem; font-weight: 600; color: #fff;
}

/* ── TESTIMONI ── */
.testi-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 20px; }
.testi-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 12px; padding: 24px;
}
.testi-stars { color: var(--earthy-light); font-size: 1rem; margin-bottom: 12px; letter-spacing: 2px; }
.testi-text { font-size: 0.9rem; color: var(--text-muted); font-style: italic; margin-bottom: 16px; line-height: 1.7; }
.testi-name { font-weight: 700; color: var(--text); font-size: 0.88rem; }
.testi-role { font-size: 0.75rem; color: var(--text-dim); }

/* ── FORM ── */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media(max-width:600px) { .form-grid { grid-template-columns: 1fr; } }
.form-full { grid-column: 1/-1; }

label { display: block; font-size: 0.82rem; font-weight: 600; color: var(--text-muted); margin-bottom: 6px; text-transform: uppercase; letter-spacing: 0.05em; }
input, textarea, select {
  width: 100%; padding: 12px 14px;
  background: var(--surface2); border: 1.5px solid var(--border);
  border-radius: 8px; color: var(--text); font-size: 0.9rem;
  font-family: inherit; transition: border-color 0.2s;
  outline: none;
}
input:focus, textarea:focus, select:focus { border-color: var(--accent); }
textarea { resize: vertical; min-height: 110px; }
select option { background: var(--bg); }

.form-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 16px; padding: 36px;
}
@media(max-width:600px) { .form-card { padding: 24px 18px; } }

/* ── INFO GRID ── */
.info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media(max-width:700px) { .info-grid { grid-template-columns: 1fr; } }

.info-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 12px; padding: 24px;
}
.info-card h3 { font-size: 0.95rem; font-weight: 700; color: var(--accent-light); margin-bottom: 14px; display: flex; align-items: center; gap: 8px; }
.info-card p, .info-card li { font-size: 0.87rem; color: var(--text-muted); line-height: 1.8; }
.info-card ul { list-style: none; }
.info-card li::before { content: "▸ "; color: var(--accent); }

/* ── MAP PLACEHOLDER ── */
.map-placeholder {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  height: 220px;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 10px;
  color: var(--text-dim);
}
.map-placeholder svg { opacity: 0.4; }

/* ── CTA SECTION ── */
.cta-section {
  background: linear-gradient(135deg, #1b2a1e, #243328);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center; padding: 72px 24px;
}
.cta-section h2 { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 800; margin-bottom: 12px; color: #fff; }
.cta-section p { color: var(--text-muted); margin-bottom: 28px; max-width: 480px; margin-left: auto; margin-right: auto; }
.cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ── FOOTER ── */
footer {
  background: #070f08; border-top: 1px solid var(--border);
  padding: 40px 24px 24px;
}
.footer-inner { max-width: 1100px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 32px; margin-bottom: 32px; }
@media(max-width:640px) { .footer-grid { grid-template-columns: 1fr; gap: 24px; } }
.footer-brand-text { font-weight: 800; font-size: 1rem; color: var(--accent-light); margin-bottom: 8px; }
.footer-tagline { font-size: 0.82rem; color: var(--text-dim); line-height: 1.6; }
.footer-col h4 { font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-muted); margin-bottom: 12px; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 8px; }
.footer-col a { color: var(--text-dim); text-decoration: none; font-size: 0.85rem; transition: color 0.2s; }
.footer-col a:hover { color: var(--accent); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 20px; display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap; }
.footer-bottom p { font-size: 0.78rem; color: var(--text-dim); }

/* ── PAGE HEADER ── */
.page-header {
  background: linear-gradient(145deg, #0a1208, #1b2a1e);
  padding: 56px 24px 48px;
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.page-header h1 { font-size: clamp(1.6rem, 4vw, 2.4rem); font-weight: 900; color: #fff; margin-bottom: 10px; }
.page-header p { color: var(--text-muted); max-width: 500px; margin: 0 auto; }

/* ── UTILITIES ── */
.tag { display: inline-block; background: rgba(105,181,120,0.12); color: var(--accent-light); font-size: 0.72rem; font-weight: 700; padding: 4px 10px; border-radius: 100px; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 10px; }
.divider { height: 1px; background: var(--border); margin: 8px 0 14px; }

.mt-8 { margin-top: 8px; } .mt-16 { margin-top: 16px; } .mt-24 { margin-top: 24px; } .mt-40 { margin-top: 40px; }
