@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

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

:root {
  --primary:    #0064D2;
  --primary-dk: #0050A8;
  --primary-lt: #E8F0FD;
  --accent:     #FF6B00;
  --accent-lt:  #FFF0E6;
  --green:      #00A86B;
  --green-lt:   #E6F7F1;
  --bg:         #F5F7FA;
  --bg2:        #FFFFFF;
  --dark:       #1A1F36;
  --text:       #3D4461;
  --muted:      #8F95B2;
  --border:     #E4E8F0;
  --white:      #FFFFFF;
  --shadow:     0 2px 12px rgba(0,0,0,0.08);
  --shadow-md:  0 8px 32px rgba(0,0,0,0.12);
  --shadow-lg:  0 20px 60px rgba(0,0,0,0.15);
  --radius:     16px;
  --radius-sm:  10px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
}

/* ===================== NAVBAR ===================== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 5%;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 8px rgba(0,0,0,0.06);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-logo-icon {
  width: 36px; height: 36px;
  background: var(--primary);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: white;
  font-size: 16px;
}

.nav-logo-text {
  font-size: 18px;
  font-weight: 800;
  color: var(--dark);
}

.nav-logo-text span { color: var(--primary); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}

.nav-links a {
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 8px;
  transition: all 0.2s;
}

.nav-links a:hover { background: var(--bg); color: var(--primary); }
.nav-links a.active { color: var(--primary); background: var(--primary-lt); font-weight: 600; }

.nav-actions { display: flex; align-items: center; gap: 10px; }

.btn-nav-login {
  padding: 9px 18px;
  border: 1.5px solid var(--primary);
  border-radius: 100px;
  background: transparent;
  color: var(--primary);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
}
.btn-nav-login:hover { background: var(--primary-lt); }

.btn-nav-cta {
  padding: 9px 18px;
  border-radius: 100px;
  background: var(--primary);
  color: white;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s;
}
.btn-nav-cta:hover { background: var(--primary-dk); }

/* ===================== HERO ===================== */
.hero {
  background: linear-gradient(135deg, #0064D2 0%, #0050A8 50%, #003D80 100%);
  padding: 120px 5% 60px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -40%; right: -10%;
  width: 700px; height: 700px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%; left: -5%;
  width: 500px; height: 500px;
  background: rgba(255,255,255,0.04);
  border-radius: 50%;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}

.hero-title {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  color: white;
  line-height: 1.2;
  margin-bottom: 14px;
}

.hero-title span { color: #FFD600; }

.hero-subtitle {
  font-size: 16px;
  font-weight: 400;
  color: rgba(255,255,255,0.8);
  margin-bottom: 36px;
  line-height: 1.6;
}

/* SEARCH BOX */
.search-box {
  background: white;
  border-radius: 20px;
  padding: 8px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 0;
  max-width: 680px;
  margin: 0 auto;
}

.search-tab-group {
  display: flex;
  gap: 4px;
  padding: 0 8px 8px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 8px;
}

.search-tab {
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  border: none;
  background: none;
  color: var(--muted);
  font-family: 'Plus Jakarta Sans', sans-serif;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 6px;
}
.search-tab.active { background: var(--primary-lt); color: var(--primary); font-weight: 600; }
.search-tab:hover:not(.active) { background: var(--bg); }

.search-inner {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 8px;
}

.search-field {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: var(--bg);
  border-radius: 12px;
  border: 1.5px solid transparent;
  transition: border-color 0.2s;
}

.search-field:focus-within { border-color: var(--primary); background: white; }
.search-field i { color: var(--muted); font-size: 14px; flex-shrink: 0; }
.search-field input {
  border: none; background: none; outline: none;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px; color: var(--dark); width: 100%;
}
.search-field input::placeholder { color: var(--muted); }

.search-btn {
  padding: 13px 28px;
  background: var(--primary);
  color: white;
  border: none;
  border-radius: 12px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
  flex-shrink: 0;
}
.search-btn:hover { background: var(--primary-dk); }

/* HERO STATS */
.hero-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 40px;
  flex-wrap: wrap;
}
.hero-stat { text-align: center; }
.hero-stat-num { font-size: 28px; font-weight: 800; color: white; }
.hero-stat-label { font-size: 12px; color: rgba(255,255,255,0.7); margin-top: 2px; }

/* ===================== KATEGORI CHIPS ===================== */
.kategori-strip {
  background: white;
  padding: 20px 5%;
  border-bottom: 1px solid var(--border);
  display: flex;
  gap: 10px;
  overflow-x: auto;
  scrollbar-width: none;
}
.kategori-strip::-webkit-scrollbar { display: none; }

.kat-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 100px;
  border: 1.5px solid var(--border);
  background: white;
  color: var(--text);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
  transition: all 0.2s;
  flex-shrink: 0;
}
.kat-chip:hover { border-color: var(--primary); color: var(--primary); background: var(--primary-lt); }
.kat-chip.active { border-color: var(--primary); color: var(--primary); background: var(--primary-lt); font-weight: 600; }
.kat-chip i { font-size: 14px; }

/* ===================== SECTIONS ===================== */
.section { padding: 56px 5%; }
.section-sm { padding: 32px 5%; }

.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
  flex-wrap: wrap;
  gap: 12px;
}

.section-title {
  font-size: 22px;
  font-weight: 800;
  color: var(--dark);
}

.section-subtitle {
  font-size: 14px;
  color: var(--muted);
  margin-top: 4px;
}

.see-all {
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
}
.see-all:hover { text-decoration: underline; }

/* ===================== DESTINATION CARD ===================== */
.card-grid { display: grid; gap: 16px; }
.card-grid-3 { grid-template-columns: repeat(auto-fill, minmax(290px, 1fr)); }
.card-grid-4 { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); }

.dest-card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.25s, box-shadow 0.25s;
  text-decoration: none;
  display: block;
  border: 1px solid var(--border);
}
.dest-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.dest-card-img {
  height: 190px;
  background: linear-gradient(135deg, #cce4ff, #e8f0fd);
  position: relative;
  overflow: hidden;
}
.dest-card-img img { width:100%; height:100%; object-fit:cover; transition:transform 0.4s; }
.dest-card:hover .dest-card-img img { transform:scale(1.06); }

.dest-card-badge {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--primary);
  color: white;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
}

.dest-card-body { padding: 16px; }
.dest-card-name { font-size: 15px; font-weight: 700; color: var(--dark); margin-bottom: 5px; }
.dest-card-desc { font-size: 13px; color: var(--muted); line-height: 1.5; margin-bottom: 12px; }
.dest-card-meta { display: flex; align-items: center; justify-content: space-between; }
.dest-card-loc { font-size: 12px; color: var(--muted); display: flex; align-items: center; gap: 4px; }
.dest-card-arrow { color: var(--primary); font-size: 12px; }

/* ===================== EVENT CARD ===================== */
.event-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: box-shadow 0.2s, transform 0.2s;
  text-decoration: none;
}
.event-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }

.event-date-box {
  flex-shrink: 0;
  width: 52px;
  text-align: center;
  background: var(--primary-lt);
  border-radius: 12px;
  padding: 10px 4px;
}
.event-date-day { font-size: 24px; font-weight: 800; color: var(--primary); line-height: 1; }
.event-date-mon { font-size: 10px; font-weight: 600; text-transform: uppercase; color: var(--primary); margin-top: 2px; }

.event-info { flex: 1; }
.event-name { font-size: 15px; font-weight: 700; color: var(--dark); margin-bottom: 5px; }
.event-lokasi { font-size: 12px; color: var(--muted); display: flex; align-items: center; gap: 4px; margin-bottom: 6px; }
.event-desc { font-size: 12px; color: var(--muted); line-height: 1.5; }

/* ===================== KULINER CARD ===================== */
.kuliner-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.25s, box-shadow 0.25s;
  text-decoration: none;
  display: block;
}
.kuliner-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.kuliner-img {
  height: 160px;
  background: linear-gradient(135deg, #fff3e6, #ffe0c2);
  display: flex; align-items: center; justify-content: center;
  font-size: 52px;
  position: relative;
  overflow: hidden;
}
.kuliner-img img { width:100%; height:100%; object-fit:cover; }

.kuliner-body { padding: 14px; }
.kuliner-name { font-size: 14px; font-weight: 700; color: var(--dark); margin-bottom: 5px; }
.kuliner-meta { display: flex; align-items: center; justify-content: space-between; margin-bottom: 8px; }
.kuliner-jam { font-size: 11px; color: var(--muted); display: flex; align-items: center; gap: 4px; }
.kuliner-rating { font-size: 12px; font-weight: 600; color: var(--accent); display: flex; align-items: center; gap: 3px; }
.kuliner-desc { font-size: 12px; color: var(--muted); line-height: 1.5; }

/* ===================== HOTEL CARD ===================== */
.hotel-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.25s, box-shadow 0.25s;
  text-decoration: none;
  display: block;
}
.hotel-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.hotel-img {
  height: 190px;
  background: linear-gradient(135deg, #e6f7f1, #ccefe5);
  position: relative;
  overflow: hidden;
}
.hotel-img img { width:100%; height:100%; object-fit:cover; transition:transform 0.4s; }
.hotel-card:hover .hotel-img img { transform:scale(1.05); }

.hotel-price-tag {
  position: absolute;
  bottom: 12px; right: 12px;
  background: var(--primary);
  color: white;
  font-size: 12px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 8px;
}

.hotel-body { padding: 16px; }
.hotel-name { font-size: 15px; font-weight: 700; color: var(--dark); margin-bottom: 5px; }
.hotel-loc { font-size: 12px; color: var(--muted); display: flex; align-items: center; gap: 4px; margin-bottom: 10px; }

.hotel-fasilitas { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 12px; }
.fasilitas-chip {
  font-size: 11px; font-weight: 500;
  padding: 3px 10px;
  border-radius: 100px;
  background: var(--primary-lt);
  color: var(--primary);
}

.hotel-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}
.hotel-price { font-size: 18px; font-weight: 800; color: var(--primary); }
.hotel-price-sub { font-size: 11px; color: var(--muted); font-weight: 400; }

.btn-book {
  padding: 9px 18px;
  background: var(--primary);
  color: white;
  border: none;
  border-radius: 100px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
  text-decoration: none;
  display: inline-block;
}
.btn-book:hover { background: var(--primary-dk); }

/* ===================== PEMANDU CARD ===================== */
.pemandu-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform 0.25s, box-shadow 0.25s;
}
.pemandu-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.pemandu-avatar {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--primary);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  font-weight: 800;
  color: white;
  margin: 0 auto 12px;
}

/* ===================== PAGE HERO ===================== */
.page-hero {
  background: linear-gradient(135deg, #0064D2, #003D80);
  padding: 110px 5% 56px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content:'';
  position:absolute; top:-50%; right:-5%;
  width:500px; height:500px;
  background:rgba(255,255,255,0.04);
  border-radius:50%;
}
.page-hero-content { position:relative; z-index:1; }
.page-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.15);
  color: white;
  font-size: 12px;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
  letter-spacing: 0.3px;
}
.page-hero-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  color: white;
  margin-bottom: 10px;
}
.page-hero-desc { font-size: 15px; color: rgba(255,255,255,0.75); max-width: 500px; line-height: 1.6; }

/* ===================== FILTER BAR ===================== */
.filter-bar { display:flex; gap:8px; margin-bottom:28px; flex-wrap:wrap; }
.filter-chip {
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  border: 1.5px solid var(--border);
  background: white;
  color: var(--text);
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
}
.filter-chip:hover { border-color: var(--primary); color: var(--primary); }
.filter-chip.active { background: var(--primary); color: white; border-color: var(--primary); }

/* ===================== TOOLBAR ===================== */
.toolbar {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.search-input-wrap { position:relative; flex:1; max-width:320px; }
.search-input-wrap i { position:absolute; left:14px; top:50%; transform:translateY(-50%); color:var(--muted); font-size:13px; }
.search-input {
  width:100%;
  padding:11px 14px 11px 40px;
  border: 1.5px solid var(--border);
  border-radius: 100px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13px;
  background: white;
  color: var(--dark);
  outline: none;
  transition: border-color 0.2s;
}
.search-input:focus { border-color: var(--primary); }

/* ===================== MODAL ===================== */
.modal-overlay { display:none; position:fixed; inset:0; background:rgba(26,31,54,0.6); z-index:200; align-items:center; justify-content:center; backdrop-filter:blur(4px); }
.modal-overlay.show { display:flex; }
.modal {
  background: white;
  border-radius: 24px;
  padding: 32px;
  width: 100%;
  max-width: 480px;
  max-height: 90vh;
  overflow-y: auto;
  animation: fadeUp 0.3s ease;
  box-shadow: var(--shadow-lg);
}
@keyframes fadeUp { from{opacity:0;transform:translateY(20px)} to{opacity:1;transform:translateY(0)} }
.modal-title { font-size: 22px; font-weight: 800; color: var(--dark); margin-bottom: 4px; }
.modal-sub { font-size: 14px; color: var(--muted); margin-bottom: 24px; }
.form-field { margin-bottom: 16px; }
.form-label { display:block; font-size:12px; font-weight:600; color:var(--text); margin-bottom:7px; text-transform:uppercase; letter-spacing:0.3px; }
.form-input, .form-select {
  width:100%;
  padding:12px 14px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  color: var(--dark);
  outline: none;
  background: white;
  transition: border-color 0.2s;
}
.form-input:focus, .form-select:focus { border-color: var(--primary); }
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:12px; }
.btn-submit-full {
  width:100%;
  padding:14px;
  background: var(--primary);
  color: white;
  border: none;
  border-radius: 12px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  margin-top: 8px;
  transition: background 0.2s;
}
.btn-submit-full:hover { background: var(--primary-dk); }

/* ===================== BADGES ===================== */
.badge-upcoming { background:#E8F0FD; color:var(--primary); font-size:11px; padding:4px 10px; border-radius:100px; font-weight:600; white-space:nowrap; }
.badge-berlangsung { background:#E6F7F1; color:var(--green); font-size:11px; padding:4px 10px; border-radius:100px; font-weight:600; white-space:nowrap; }
.badge-selesai { background:#F0F0F5; color:var(--muted); font-size:11px; padding:4px 10px; border-radius:100px; font-weight:600; white-space:nowrap; }

/* ===================== ALERTS ===================== */
.alert { padding:14px 18px; border-radius:12px; font-size:13px; margin-bottom:20px; display:flex; align-items:center; gap:10px; }
.alert-success { background:#E6F7F1; border:1px solid #A7F3D0; color:#065F46; }
.alert-error { background:#FEE2E2; border:1px solid #FECACA; color:#991B1B; }

/* ===================== EMPTY STATE ===================== */
.empty-pub { text-align:center; padding:80px 24px; color:var(--muted); }
.empty-pub i { font-size:48px; display:block; margin-bottom:16px; color:var(--border); }
.empty-pub p { font-size:15px; }

/* ===================== CTA BANNER ===================== */
.cta-banner {
  background: linear-gradient(135deg, #FF6B00, #FF8C33);
  border-radius: 24px;
  padding: 48px;
  text-align: center;
  margin: 0 5% 56px;
}
.cta-banner h2 { font-size: 28px; font-weight: 800; color: white; margin-bottom: 10px; }
.cta-banner p { font-size: 15px; color: rgba(255,255,255,0.85); margin-bottom: 24px; }
.btn-cta-white {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px;
  background: white;
  color: var(--accent);
  border-radius: 100px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  transition: opacity 0.2s;
}
.btn-cta-white:hover { opacity: 0.9; }

/* ===================== FOOTER ===================== */
.footer { background: var(--dark); color: rgba(255,255,255,0.75); padding: 56px 5% 28px; }
.footer-grid { display:grid; grid-template-columns:2fr 1fr 1fr 1fr; gap:48px; margin-bottom:40px; }
.footer-brand-name { font-size:22px; font-weight:800; color:white; margin-bottom:12px; }
.footer-brand-name span { color:#4D9FFF; }
.footer-brand-desc { font-size:13px; line-height:1.7; max-width:240px; }
.footer-heading { font-size:12px; font-weight:700; letter-spacing:1px; text-transform:uppercase; color:white; margin-bottom:16px; }
.footer-links { list-style:none; }
.footer-links li { margin-bottom:10px; }
.footer-links a { font-size:13px; color:rgba(255,255,255,0.6); text-decoration:none; transition:color 0.2s; }
.footer-links a:hover { color:white; }
.footer-bottom { display:flex; align-items:center; justify-content:space-between; padding-top:24px; border-top:1px solid rgba(255,255,255,0.1); font-size:12px; color:rgba(255,255,255,0.4); }

/* ===================== HAMBURGER MENU ===================== */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border: none;
  background: none;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all 0.3s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile-menu {
  display: none;
  position: fixed;
  top: 68px; left: 0; right: 0;
  background: white;
  border-bottom: 1px solid var(--border);
  padding: 16px;
  z-index: 99;
  box-shadow: var(--shadow-md);
  animation: slideDown 0.2s ease;
}
@keyframes slideDown { from{opacity:0;transform:translateY(-10px)} to{opacity:1;transform:translateY(0)} }

.nav-mobile-menu.open { display: block; }
.nav-mobile-menu a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 14px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  transition: all 0.15s;
}
.nav-mobile-menu a:hover, .nav-mobile-menu a.active { background: var(--primary-lt); color: var(--primary); }
.nav-mobile-menu a i { width: 18px; text-align: center; color: var(--primary); }
.nav-mobile-divider { height: 1px; background: var(--border); margin: 10px 0; }
.nav-mobile-actions { display: flex; gap: 10px; padding: 10px 14px 4px; }
.nav-mobile-actions a { flex: 1; text-align: center; padding: 11px; border-radius: 10px; font-size: 13px; font-weight: 700; text-decoration: none; }
.nav-mobile-login { border: 1.5px solid var(--primary); color: var(--primary); background: white; }
.nav-mobile-cta { background: var(--primary); color: white; border: none; }

/* ===================== RESPONSIVE — PUBLIC ===================== */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-actions .btn-nav-login, .nav-actions .btn-nav-cta { display: none; }
  .nav-hamburger { display: flex; }

  /* Hero */
  .hero { padding: 96px 5% 48px; }
  .hero-title { font-size: 28px; }
  .hero-subtitle { font-size: 14px; }
  .hero-stats { gap: 24px; margin-top: 28px; }
  .hero-stat-num { font-size: 22px; }

  /* Search box */
  .search-box { border-radius: 16px; }
  .search-tab-group { flex-wrap: nowrap; overflow-x: auto; scrollbar-width: none; -webkit-overflow-scrolling: touch; }
  .search-tab-group::-webkit-scrollbar { display: none; }
  .search-inner { flex-wrap: wrap; gap: 10px; }
  .search-field { width: 100%; }
  .search-btn { width: 100%; }

  /* Page hero */
  .page-hero { padding: 96px 5% 40px; }
  .page-hero-title { font-size: 28px; }

  /* Grids */
  .card-grid-3 { grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); }
  .card-grid-4 { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); }

  /* Section */
  .section { padding: 40px 4%; }
  .section-sm { padding: 24px 4%; }
  .cta-banner { margin: 0 4% 40px; padding: 36px 24px; }
  .cta-banner h2 { font-size: 22px; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer { padding: 40px 4% 24px; }
}

@media (max-width: 600px) {
  /* Navbar */
  .navbar { padding: 0 4%; }

  /* Hero */
  .hero { padding: 88px 4% 40px; text-align: center; }
  .hero-title { font-size: 24px; }
  .hero-subtitle { font-size: 13px; }
  .hero-stats { flex-wrap: wrap; justify-content: center; gap: 20px; margin-top: 24px; }
  .hero-stat { min-width: 80px; }

  /* Search */
  .search-box { padding: 6px; }
  .search-tab { font-size: 12px; padding: 7px 10px; }
  .search-btn { font-size: 13px; padding: 12px; }

  /* Cards */
  .card-grid-3, .card-grid-4 { grid-template-columns: 1fr; }
  .dest-card-img { height: 170px; }

  /* Event cards */
  .event-card { flex-direction: column; gap: 12px; }
  .event-date-box { width: auto; display: flex; align-items: center; gap: 8px; padding: 8px 14px; }
  .event-date-day { font-size: 18px; }

  /* Section header */
  .section-header { flex-direction: column; align-items: flex-start; gap: 8px; }
  .section-title { font-size: 18px; }

  /* Toolbar */
  .toolbar { flex-direction: column; align-items: stretch; }
  .search-input-wrap { max-width: 100%; }
  .filter-bar { gap: 6px; }
  .filter-chip { font-size: 12px; padding: 7px 14px; }

  /* Modal */
  .modal { padding: 24px 20px; border-radius: 20px; }
  .form-row { grid-template-columns: 1fr; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

  /* CTA */
  .cta-banner { margin: 0 4% 32px; padding: 28px 20px; border-radius: 18px; }
  .cta-banner h2 { font-size: 20px; }
  .cta-banner p { font-size: 13px; }

  /* Kategori strip */
  .kategori-strip { padding: 14px 4%; }
  .kat-chip { font-size: 12px; padding: 8px 14px; }
}

/* ===================== RESPONSIVE — WISATAWAN DASHBOARD ===================== */
/* dash responsive moved to layout fix section */

/* ============================================================
   WISATAWAN DASHBOARD LAYOUT FIX
   ============================================================ */

/* Wrapper seluruh halaman dashboard */
.dash-page-wrap {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  padding-top: 68px; /* offset navbar fixed */
}

.dash-layout {
  display: grid;
  grid-template-columns: 250px 1fr;
  flex: 1;
  align-items: start;
}

.dash-sidebar {
  background: white;
  border-right: 1px solid var(--border);
  padding: 20px 14px 32px;
  position: sticky;
  top: 68px;
  height: calc(100vh - 68px);
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--border) transparent;
}
.dash-sidebar::-webkit-scrollbar { width: 4px; }
.dash-sidebar::-webkit-scrollbar-thumb { background: var(--border); border-radius: 4px; }

.dash-main {
  padding: 28px;
  min-width: 0;
  background: var(--bg);
}

/* Footer di halaman dashboard: full width, keluar dari grid */
.dash-footer-wrap {
  grid-column: 1 / -1;
}

/* ============================================================
   MOBILE BOTTOM NAV
   ============================================================ */
.mobile-bottom-nav {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: white;
  border-top: 1px solid var(--border);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.08);
  z-index: 99;
  padding: 0;
  height: 60px;
}

.mobile-nav-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  text-decoration: none;
  color: var(--muted);
  font-size: 10px;
  font-weight: 600;
  padding: 6px 0;
  transition: color 0.15s;
}
.mobile-nav-item.active,
.mobile-nav-item:hover { color: var(--primary); }
.mobile-nav-item i { font-size: 18px; }

/* ============================================================
   RESPONSIVE OVERRIDE
   ============================================================ */
@media (max-width: 900px) {
  .dash-layout {
    grid-template-columns: 1fr;
  }
  .dash-sidebar { display: none; }
  .dash-main { padding: 20px 4%; min-height: auto; }
  .dash-footer-wrap { grid-column: 1; }

  /* Tampilkan bottom nav */
  .mobile-bottom-nav {
    display: flex;
  }

  /* Beri ruang di bawah agar konten tidak tertutup bottom nav */
  .dash-main { padding-bottom: 80px; }
  body { padding-bottom: 0; }
}

@media (max-width: 600px) {
  .dash-page-wrap { padding-top: 60px; }
  .dash-sidebar { top: 60px; height: calc(100vh - 60px); }
  .dash-main { padding: 16px 4% 80px; }
  .mobile-bottom-nav { height: 58px; }
  .mobile-nav-item { font-size: 9px; }
  .mobile-nav-item i { font-size: 17px; }
}