:root {
  --bg: #070707;
  --panel: rgba(17, 17, 17, 0.88);
  --line: rgba(212, 175, 55, 0.22);
  --gold: #d4af37;
  --gold-soft: #f1df9b;
  --text: #f5f0de;
  --muted: #b7ab84;
  --white-soft: rgba(255,255,255,0.82);
  --shadow: 0 18px 50px rgba(0,0,0,0.45);
  --radius: 22px;
}
* { box-sizing: border-box; }
html, body {
  margin: 0;
  padding: 0;
  background:
    radial-gradient(circle at top left, rgba(212,175,55,0.10), transparent 28%),
    radial-gradient(circle at bottom right, rgba(212,175,55,0.08), transparent 24%),
    linear-gradient(180deg, #050505 0%, #0b0b0b 100%);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  min-height: 100%;
}
body { position: relative; overflow-x: hidden; }
a { color: #f5df8f; text-decoration: none; }
a:hover { text-decoration: underline; }
.bg-orb { position: fixed; border-radius: 999px; filter: blur(90px); opacity: 0.12; pointer-events: none; }
.orb-1 { width: 260px; height: 260px; background: var(--gold); top: -60px; left: -80px; }
.orb-2 { width: 320px; height: 320px; background: #8b6e1d; right: -120px; bottom: 10%; }
.hero {
  padding: 72px 20px 40px;
  text-align: center;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0)), rgba(0,0,0,0.25);
  backdrop-filter: blur(8px);
}
.hero-inner { max-width: 980px; margin: 0 auto; }
.hero-topbar { display: flex; align-items: center; justify-content: space-between; gap: 18px; margin-bottom: 18px; flex-wrap: wrap; }
.back-home { color: var(--gold-soft); }
.lang-switch { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.03); border: 1px solid var(--line); padding: 6px; border-radius: 999px; }
.lang-btn { border: none; background: transparent; color: var(--white-soft); padding: 10px 14px; border-radius: 999px; cursor: pointer; font-weight: 600; text-decoration: none; }
.lang-btn.active { color: #181307; background: linear-gradient(135deg, #d4af37, #f5df8f); }
.lux-logo { display: inline-flex; align-items: center; gap: 14px; margin-bottom: 22px; }
.lux-logo-mark { width: 54px; height: 54px; border-radius: 16px; background: linear-gradient(135deg, #d4af37, #f5df8f); color: #111; display: flex; align-items: center; justify-content: center; font-family: 'Cormorant Garamond', serif; font-size: 34px; font-weight: 700; box-shadow: 0 10px 25px rgba(212,175,55,0.18); }
.lux-logo-text strong, .lux-logo-text span { display: block; line-height: 1; text-align: left; }
.lux-logo-text strong { color: #fff2c6; letter-spacing: 0.18em; font-size: 18px; }
.lux-logo-text span { color: var(--muted); letter-spacing: 0.28em; font-size: 11px; margin-top: 6px; }
.lux-logo.compact .lux-logo-mark { width: 42px; height: 42px; font-size: 28px; border-radius: 12px; }
.hero h1 { font-family: 'Cormorant Garamond', serif; font-size: clamp(46px, 7vw, 82px); line-height: 0.95; font-weight: 700; margin: 0 0 16px; color: #fff4cc; }
.hero-copy { max-width: 740px; margin: 0 auto; font-size: 18px; line-height: 1.7; color: var(--white-soft); }
.hero-badges { margin-top: 26px; display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
.hero-badges span { padding: 10px 14px; border-radius: 999px; border: 1px solid var(--line); background: rgba(255,255,255,0.03); color: var(--gold-soft); font-size: 13px; }
.container { width: min(1180px, calc(100% - 32px)); margin: 28px auto 80px; }
.container.narrow { width: min(1080px, calc(100% - 32px)); }
.panel { background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.015)); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); padding: 28px; margin-bottom: 22px; backdrop-filter: blur(10px); }
.intro-panel { text-align: center; }
.section-top { margin-bottom: 18px; }
.eyebrow { display: inline-block; font-size: 12px; color: var(--gold-soft); letter-spacing: 0.25em; text-transform: uppercase; margin-bottom: 8px; }
.section-top h2 { margin: 0; font-size: 30px; font-family: 'Cormorant Garamond', serif; color: #fff7dd; }
.muted { color: var(--muted); line-height: 1.7; }
.grid-2, .grid-3, .pickup-mode-grid, .vehicle-grid, .interest-grid, .places-grid, .summary-grid {
  display: grid;
  gap: 18px;
}
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.pickup-mode-grid, .vehicle-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.interest-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); margin-top: 16px; }
.places-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.summary-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.field { display: flex; flex-direction: column; gap: 8px; }
.field label { font-size: 14px; color: var(--gold-soft); font-weight: 600; }
.field input, .field select, .field textarea {
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(212,175,55,0.18);
  background: rgba(255,255,255,0.04);
  color: #fff8e5;
  padding: 14px 16px;
  font-size: 15px;
  outline: none;
  transition: 0.2s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: rgba(212,175,55,0.55);
  box-shadow: 0 0 0 3px rgba(212,175,55,0.08);
}
.choice-card, .vehicle-card, .place-card {
  position: relative;
  display: block;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255,255,255,0.03);
  overflow: hidden;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
  cursor: pointer;
}
.choice-card:hover, .vehicle-card:hover, .place-card:hover {
  transform: translateY(-2px);
  border-color: rgba(212,175,55,0.45);
}
.choice-card input, .vehicle-card input, .place-card input[type="checkbox"] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}
.choice-card span, .vehicle-content { display: block; padding: 18px; }
.place-card-inner { display: block; padding: 18px; height: 100%; }
.choice-title { font-size: 18px; font-weight: 700; color: #fff4cb; margin-bottom: 8px; }
.choice-copy { color: var(--muted); line-height: 1.6; }
.vehicle-header, .place-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.vehicle-header h3, .place-head h3 { margin: 0; font-size: 22px; font-family: 'Cormorant Garamond', serif; color: #fff4cb; }
.place-meta { margin-top: 8px; margin-bottom: 10px; color: var(--muted); font-size: 13px; text-transform: uppercase; letter-spacing: 0.14em; }
.vehicle-content ul { margin: 16px 0 0; padding-left: 18px; color: var(--white-soft); line-height: 1.8; }
.pill { font-size: 12px; padding: 8px 12px; border-radius: 999px; border: 1px solid var(--line); color: var(--gold-soft); background: rgba(255,255,255,0.04); white-space: nowrap; }
.choice-card:has(input:checked), .vehicle-card:has(input:checked), .place-card:has(input:checked) {
  border-color: rgba(212,175,55,0.68);
  box-shadow: 0 0 0 1px rgba(212,175,55,0.26), 0 12px 30px rgba(0,0,0,0.30);
}
.place-card.static { cursor: default; }
.geo-box { margin-top: 18px; padding: 18px; border-radius: 18px; border: 1px solid var(--line); background: rgba(255,255,255,0.03); }
.status-text { margin-top: 12px; color: var(--muted); }
.hidden { display: none !important; }
.manual-fields { margin-top: 18px; }
.interest-grid label { display: flex; align-items: center; gap: 10px; padding: 14px; border: 1px solid rgba(212,175,55,0.12); border-radius: 14px; background: rgba(255,255,255,0.03); color: var(--white-soft); font-size: 14px; }
.interest-grid input[type="checkbox"] { accent-color: var(--gold); }
.top-gap { margin-top: 18px; }
.live-summary, .ai-response {
  min-height: 120px;
  padding: 18px;
  border-radius: 18px;
  border: 1px dashed rgba(212,175,55,0.28);
  background: rgba(255,255,255,0.03);
  color: var(--white-soft);
  line-height: 1.8;
}
.result-card { border: 1px solid rgba(212,175,55,0.16); border-radius: 18px; padding: 18px; background: rgba(255,255,255,0.02); margin-bottom: 14px; }
.result-card h3 { margin: 0 0 10px; font-family: 'Cormorant Garamond', serif; font-size: 26px; color: #fff2c3; }
.result-card p, .result-card li { color: var(--white-soft); }
.error-card { border-color: rgba(255,120,120,0.25); }
.submit-row { display: flex; justify-content: center; margin-top: 8px; }
.dual-buttons { gap: 14px; flex-wrap: wrap; }
.btn, .link-btn {
  appearance: none;
  border: none;
  border-radius: 999px;
  padding: 14px 22px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 700;
  transition: transform 0.2s ease, filter 0.2s ease, opacity 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.btn:hover, .link-btn:hover { transform: translateY(-1px); filter: brightness(1.04); text-decoration: none; }
.btn-gold, .btn-luxury { color: #171203; background: linear-gradient(135deg, #d4af37, #f5df8f); box-shadow: 0 12px 26px rgba(212,175,55,0.16); }
.btn-secondary, .link-btn { color: #f2e7bd; background: rgba(255,255,255,0.06); border: 1px solid rgba(212,175,55,0.20); }
.btn-luxury { min-width: 280px; padding: 16px 28px; }
.full-btn { width: 100%; }
.boarding-pass {
  display: grid;
  grid-template-columns: 2fr 1fr;
  overflow: hidden;
  border: 1px solid rgba(212,175,55,0.26);
  border-radius: 28px;
  background:
    radial-gradient(circle at top left, rgba(212,175,55,0.08), transparent 26%),
    linear-gradient(135deg, rgba(255,255,255,0.03), rgba(255,255,255,0.015));
  box-shadow: var(--shadow);
}
.boarding-left, .boarding-right { padding: 28px; }
.boarding-right {
  border-left: 1px dashed rgba(212,175,55,0.24);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.pass-brand { display: flex; align-items: center; justify-content: space-between; gap: 18px; margin-bottom: 28px; }
.boarding-tag { color: var(--gold-soft); letter-spacing: 0.22em; font-size: 12px; }
.boarding-route { display: flex; align-items: center; gap: 18px; margin-bottom: 28px; }
.route-code {
  width: 84px;
  height: 84px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(212,175,55,0.24);
  font-size: 28px;
  font-family: 'Cormorant Garamond', serif;
  color: #fff2c6;
  background: rgba(255,255,255,0.03);
  text-transform: uppercase;
}
.route-line { flex: 1; height: 2px; background: linear-gradient(90deg, rgba(212,175,55,0.22), rgba(245,223,143,0.7), rgba(212,175,55,0.22)); }
.boarding-main { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.boarding-block { padding: 18px; border-radius: 18px; border: 1px solid rgba(212,175,55,0.14); background: rgba(255,255,255,0.03); }
.boarding-block span { display: block; color: var(--muted); font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 8px; }
.boarding-block strong { color: #fff3c9; font-size: 18px; line-height: 1.5; }
.boarding-block.full { grid-column: 1 / -1; }
.qr-wrap { padding: 14px; border-radius: 22px; background: #fff; margin-bottom: 12px; }
.qr-wrap img { display: block; width: 220px; max-width: 100%; height: auto; }
.qr-note { color: var(--muted); margin-bottom: 16px; text-align: center; }
body[data-lang="id"] .lang-en { display: none !important; }
body[data-lang="en"] .lang-id { display: none !important; }
@media (max-width: 980px) { .grid-3, .interest-grid, .places-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 760px) {
  .grid-2, .grid-3, .pickup-mode-grid, .vehicle-grid, .interest-grid, .places-grid, .summary-grid, .boarding-main, .boarding-pass {
    grid-template-columns: 1fr;
  }
  .panel { padding: 20px; }
  .hero { padding-top: 56px; }
  .hero-copy { font-size: 16px; }
  .section-top h2 { font-size: 26px; }
  .boarding-right { border-left: none; border-top: 1px dashed rgba(212,175,55,0.24); }
  .pass-brand { flex-direction: column; align-items: flex-start; }
  .boarding-route { flex-direction: column; }
  .route-line { width: 2px; height: 48px; }
}
