/* CityHop Indonesia — City Tour & Wisata Kota */
/* Palet: #2d2d2d (primary), #f7c59f (accent), #1a1a1a (bg gelap), #fff (teks terang) */

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

:root {
  --primary: #2d2d2d;
  --accent: #f7c59f;
  --accent2: #e8a87c;
  --bg: #1a1a1a;
  --bg2: #242424;
  --bg3: #2d2d2d;
  --card: #333333;
  --text: #f0ece6;
  --muted: #a89e94;
  --border: #444;
  --radius: 6px;
  --font: -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

html { font-size: 16px; scroll-behavior: smooth; }
body { font-family: var(--font); background: var(--bg); color: var(--text); line-height: 1.6; }

a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent2); }

img { display: block; max-width: 100%; }

/* ===== TYPOGRAPHY ===== */
h1 { font-size: clamp(1.8rem, 5vw, 3rem); font-weight: 800; letter-spacing: -0.5px; }
h2 { font-size: clamp(1.4rem, 3.5vw, 2rem); font-weight: 700; }
h3 { font-size: 1.15rem; font-weight: 600; }

/* ===== NAV ===== */
.site-nav {
  background: var(--bg2);
  border-bottom: 1px solid var(--border);
  position: sticky; top: 42px; z-index: 100;
}
.nav-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 20px; height: 60px;
}
.nav-brand {
  font-size: 1.2rem; font-weight: 800; color: var(--accent); letter-spacing: 0.5px;
}
.nav-brand span { color: var(--text); font-weight: 400; }

/* checkbox hack */
#nav-toggle { display: none; }
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px;
}
.nav-hamburger span {
  display: block; width: 24px; height: 2px; background: var(--text); border-radius: 2px;
  transition: all .25s;
}
.nav-links {
  display: flex; gap: 4px; list-style: none;
}
.nav-links a {
  display: block; padding: 8px 14px; color: var(--muted); font-size: .9rem; font-weight: 500;
  border-radius: var(--radius); transition: background .2s, color .2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--accent); background: rgba(247,197,159,.1); }

@media (max-width: 680px) {
  .nav-hamburger { display: flex; }
  .nav-links {
    display: none; flex-direction: column; gap: 0;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--bg2); border-bottom: 1px solid var(--border);
    padding: 8px 12px 12px;
  }
  #nav-toggle:checked ~ .nav-links { display: flex; }
}

/* ===== HERO ===== */
.hero {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1e1e1e 100%);
  padding: 80px 20px 70px;
  position: relative; overflow: hidden;
  text-align: center;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 40% at 20% 30%, rgba(247,197,159,.12) 0%, transparent 70%),
    radial-gradient(ellipse 50% 60% at 80% 70%, rgba(247,197,159,.08) 0%, transparent 70%);
}
.hero-inner { position: relative; max-width: 800px; margin: 0 auto; }
.hero-badge {
  display: inline-block; background: rgba(247,197,159,.15); border: 1px solid var(--accent);
  color: var(--accent); font-size: .78rem; font-weight: 700; letter-spacing: 1.5px;
  padding: 5px 14px; border-radius: 20px; margin-bottom: 20px; text-transform: uppercase;
}
.hero h1 { color: var(--text); margin-bottom: 16px; }
.hero h1 em { color: var(--accent); font-style: normal; }
.hero p { color: var(--muted); font-size: 1.1rem; max-width: 560px; margin: 0 auto 32px; }
.btn {
  display: inline-block; padding: 13px 28px; border-radius: var(--radius);
  font-weight: 700; font-size: .95rem; transition: all .2s; cursor: pointer;
}
.btn-accent { background: var(--accent); color: var(--primary); }
.btn-accent:hover { background: var(--accent2); color: var(--primary); transform: translateY(-1px); }
.btn-outline {
  background: transparent; color: var(--accent); border: 2px solid var(--accent);
  margin-left: 10px;
}
.btn-outline:hover { background: rgba(247,197,159,.1); }

.hero-city-dots {
  display: flex; justify-content: center; gap: 24px; margin-top: 48px; flex-wrap: wrap;
}
.city-dot {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
}
.city-dot-icon {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--card); border: 2px solid var(--border);
  display: flex; align-items: center; justify-content: center;
}
.city-dot-label { font-size: .78rem; color: var(--muted); }

/* ===== SECTION ===== */
.section { padding: 60px 20px; }
.section-alt { background: var(--bg2); }
.container { max-width: 1100px; margin: 0 auto; }
.section-head { text-align: center; margin-bottom: 40px; }
.section-head h2 { margin-bottom: 8px; }
.section-head p { color: var(--muted); max-width: 520px; margin: 0 auto; }
.tag-line {
  font-size: .75rem; color: var(--accent); font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; margin-bottom: 6px; display: block;
}

/* ===== CARDS GRID ===== */
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 20px; }

.card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 10px; overflow: hidden; transition: transform .2s, border-color .2s;
}
.card:hover { transform: translateY(-3px); border-color: var(--accent); }

.card-visual {
  height: 160px; position: relative; overflow: hidden;
}
.card-body { padding: 20px; }
.card-body h3 { margin-bottom: 6px; }
.card-body p { color: var(--muted); font-size: .9rem; margin-bottom: 14px; }

/* Feature cards */
.feat-card {
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: 10px; padding: 28px 24px; text-align: center;
}
.feat-icon {
  width: 56px; height: 56px; background: rgba(247,197,159,.12);
  border: 1px solid rgba(247,197,159,.3); border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.feat-card h3 { margin-bottom: 8px; }
.feat-card p { color: var(--muted); font-size: .9rem; }

/* ===== PAKET ===== */
.paket-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 10px; overflow: hidden;
}
.paket-header {
  padding: 22px 22px 16px; border-bottom: 1px solid var(--border);
  position: relative;
}
.paket-kota {
  font-size: .72rem; color: var(--accent); font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; margin-bottom: 4px;
}
.paket-nama { font-size: 1.1rem; font-weight: 700; margin-bottom: 6px; }
.paket-durasi { font-size: .82rem; color: var(--muted); }
.paket-badge {
  position: absolute; top: 16px; right: 16px;
  background: var(--accent); color: var(--primary);
  font-size: .7rem; font-weight: 800; padding: 3px 10px; border-radius: 20px;
}
.paket-harga-wrap { padding: 14px 22px; border-bottom: 1px solid var(--border); }
.paket-harga { font-size: 1.4rem; font-weight: 800; color: var(--accent); }
.paket-harga small { font-size: .75rem; color: var(--muted); font-weight: 400; }
.paket-include { padding: 16px 22px; }
.paket-include h4 { font-size: .8rem; color: var(--muted); font-weight: 600; letter-spacing: .5px; text-transform: uppercase; margin-bottom: 10px; }
.paket-list { list-style: none; margin-bottom: 14px; }
.paket-list li { font-size: .85rem; padding: 3px 0; display: flex; gap: 8px; align-items: flex-start; }
.paket-list li::before { content: "✓"; color: var(--accent); font-weight: 700; flex-shrink: 0; }
.paket-list.excl li::before { content: "✕"; color: #888; }
.paket-list.excl li { color: var(--muted); }
.paket-footer { padding: 16px 22px; }
.btn-full { display: block; text-align: center; width: 100%; padding: 11px; border-radius: var(--radius); font-weight: 700; font-size: .9rem; }

/* ===== DESTINASI ===== */
.dest-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 10px; overflow: hidden; display: flex; flex-direction: column;
}
.dest-visual { height: 140px; position: relative; overflow: hidden; flex-shrink: 0; }
.dest-body { padding: 18px; flex: 1; }
.dest-body h3 { margin-bottom: 4px; }
.dest-kota { font-size: .75rem; color: var(--accent); font-weight: 600; text-transform: uppercase; letter-spacing: .5px; margin-bottom: 8px; }
.dest-body p { color: var(--muted); font-size: .85rem; margin-bottom: 10px; }
.dest-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.dest-tag {
  font-size: .72rem; background: rgba(247,197,159,.1); border: 1px solid rgba(247,197,159,.25);
  color: var(--accent); padding: 2px 9px; border-radius: 20px;
}

/* ===== GALERI ===== */
.galeri-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 12px;
}
.galeri-item {
  border-radius: 8px; overflow: hidden; aspect-ratio: 4/3;
  position: relative; cursor: pointer;
}
.galeri-item:hover .galeri-overlay { opacity: 1; }
.galeri-overlay {
  position: absolute; inset: 0; background: rgba(0,0,0,.5);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity .25s;
}
.galeri-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 10px 12px; background: linear-gradient(transparent, rgba(0,0,0,.75));
  font-size: .78rem; color: #fff; font-weight: 600;
}

/* City visual — CSS gradients */
.vis-jakarta { background: linear-gradient(135deg, #2c3e50 0%, #4a6fa5 40%, #e8a87c 100%); }
.vis-jogja   { background: linear-gradient(135deg, #3d2b1f 0%, #7b5e42 40%, #f7c59f 100%); }
.vis-surabaya{ background: linear-gradient(135deg, #1b3a4b 0%, #2d6a8f 40%, #5ba3c9 100%); }
.vis-bandung { background: linear-gradient(135deg, #2d4739 0%, #4a7c59 40%, #a8d5a2 100%); }
.vis-mix1    { background: linear-gradient(135deg, #3a2d4a 0%, #7b5e9b 40%, #f7c59f 100%); }
.vis-mix2    { background: linear-gradient(135deg, #1e3a2f 0%, #2d6a5a 40%, #f7c59f 100%); }
.vis-mix3    { background: linear-gradient(135deg, #4a2a1a 0%, #8b5e3c 40%, #f7c59f 100%); }
.vis-mix4    { background: linear-gradient(135deg, #1a2a4a 0%, #2d4a8b 40%, #a8c5f7 100%); }
.vis-night   { background: linear-gradient(135deg, #0d0d1a 0%, #1a1a3a 50%, #f7c59f 100%); }
.vis-sunset  { background: linear-gradient(135deg, #2d1b00 0%, #8b4500 40%, #f7c59f 80%, #fff5e0 100%); }
.vis-street  { background: linear-gradient(135deg, #1a1a1a 0%, #444 60%, #888 100%); }
.vis-culture { background: linear-gradient(135deg, #2d1500 0%, #7b3a00 40%, #f7a030 100%); }

/* City shapes overlay */
.city-shape {
  position: absolute; bottom: 0; left: 0; right: 0;
}

/* ===== TESTIMONI ===== */
.testi-card {
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: 10px; padding: 26px;
}
.testi-text { font-size: .95rem; color: var(--text); margin-bottom: 18px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--card); border: 2px solid var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1rem; color: var(--accent);
  flex-shrink: 0;
}
.testi-name { font-weight: 700; font-size: .9rem; }
.testi-asal { font-size: .78rem; color: var(--muted); }
.stars { color: var(--accent); font-size: .85rem; letter-spacing: 1px; margin-bottom: 10px; }

/* ===== KONTAK ===== */
.kontak-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 32px;
}
@media (max-width: 700px) { .kontak-grid { grid-template-columns: 1fr; } }

.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: .85rem; color: var(--muted); margin-bottom: 6px; font-weight: 600; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 11px 14px;
  background: var(--bg3); border: 1px solid var(--border);
  color: var(--text); border-radius: var(--radius); font-family: var(--font); font-size: .9rem;
  outline: none; transition: border-color .2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--accent); }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-group select option { background: var(--bg3); }

.info-box {
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: 10px; padding: 24px; margin-bottom: 20px;
}
.info-box h3 { margin-bottom: 14px; font-size: 1rem; }
.info-row { display: flex; gap: 12px; margin-bottom: 12px; align-items: flex-start; }
.info-icon { flex-shrink: 0; color: var(--accent); margin-top: 2px; }
.info-text { font-size: .88rem; }
.info-text strong { display: block; }
.info-text span { color: var(--muted); font-size: .82rem; }

.map-placeholder {
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: 10px; overflow: hidden; height: 200px;
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.map-inner { text-align: center; color: var(--muted); font-size: .85rem; }
.map-grid-lines {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(247,197,159,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(247,197,159,.05) 1px, transparent 1px);
  background-size: 32px 32px;
}
.map-marker {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -60%);
}

/* ===== CTA STRIP ===== */
.cta-strip {
  background: linear-gradient(135deg, #2a1f00 0%, #3d2e00 50%, #2d2200 100%);
  border: 1px solid rgba(247,197,159,.2);
  border-radius: 12px; padding: 40px 32px; text-align: center;
  margin: 40px 0;
}
.cta-strip h2 { margin-bottom: 10px; }
.cta-strip p { color: var(--muted); margin-bottom: 24px; }

/* ===== FOOTER ===== */
footer {
  background: var(--bg2); border-top: 1px solid var(--border);
  padding: 40px 20px 24px;
}
.footer-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 32px;
}
@media (max-width: 680px) {
  .footer-inner { grid-template-columns: 1fr; gap: 24px; }
}
.footer-brand { font-size: 1.1rem; font-weight: 800; color: var(--accent); margin-bottom: 10px; }
.footer-desc { color: var(--muted); font-size: .85rem; line-height: 1.7; }
footer h4 { font-size: .85rem; text-transform: uppercase; letter-spacing: .8px; color: var(--muted); margin-bottom: 12px; }
footer ul { list-style: none; }
footer ul li { margin-bottom: 8px; }
footer ul li a { color: var(--text); font-size: .88rem; }
footer ul li a:hover { color: var(--accent); }
.footer-bottom {
  max-width: 1100px; margin: 28px auto 0;
  border-top: 1px solid var(--border); padding-top: 16px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 8px;
  font-size: .78rem; color: var(--muted);
}

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  padding: 52px 20px 44px;
  position: relative; overflow: hidden;
}
.page-hero::after {
  content: "";
  position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}
.page-hero-inner { max-width: 700px; }
.page-hero h1 { font-size: clamp(1.6rem, 4vw, 2.4rem); margin-bottom: 10px; }
.page-hero p { color: var(--muted); }

/* ===== UTILS ===== */
.text-accent { color: var(--accent); }
.mb-4 { margin-bottom: 4px; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mt-16 { margin-top: 16px; }
.center { text-align: center; }
