/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --primary: #1a3c6e;
  --primary-dark: #122d54;
  --primary-light: #2451a3;
  --accent: #f59e0b;
  --accent-dark: #d97706;
  --text: #1e293b;
  --text-muted: #64748b;
  --bg: #ffffff;
  --bg-light: #f1f5f9;
  --border: #e2e8f0;
  --white: #ffffff;
  --shadow: 0 4px 24px rgba(26,60,110,.10);
  --shadow-lg: 0 8px 40px rgba(26,60,110,.16);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: .25s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: .95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--accent);
  color: var(--primary-dark);
  border-color: var(--accent);
}
.btn-primary:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245,158,11,.35);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.6);
}
.btn-outline:hover {
  background: rgba(255,255,255,.12);
  border-color: var(--white);
}

.btn-nav {
  background: var(--accent);
  color: var(--primary-dark);
  padding: 10px 22px;
  font-size: .875rem;
  border-radius: 6px;
}
.btn-nav:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
}

.btn-full { width: 100%; }
.btn-lg { padding: 16px 32px; font-size: 1rem; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition);
}
.navbar.scrolled {
  background: var(--white);
  box-shadow: 0 2px 16px rgba(0,0,0,.08);
}
.navbar.scrolled .nav-links a { color: var(--text); }
.navbar.scrolled .logo { color: var(--primary); }
.navbar.scrolled .logo span { color: var(--accent-dark); }

.nav-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 72px;
}

.logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -.5px;
}
.logo span { color: var(--accent); }

.nav-links {
  display: flex;
  gap: 8px;
  margin-left: auto;
}
.nav-links a {
  color: rgba(255,255,255,.85);
  font-weight: 500;
  font-size: .9rem;
  padding: 6px 12px;
  border-radius: 6px;
  transition: all var(--transition);
}
.nav-links a:hover {
  color: var(--white);
  background: rgba(255,255,255,.12);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}
.navbar.scrolled .hamburger span { background: var(--text); }

.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 12px 24px 16px;
}
.mobile-menu a {
  padding: 12px 0;
  color: var(--text);
  font-weight: 500;
  border-bottom: 1px solid var(--border);
  display: block;
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu.open { display: flex; }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #0f2044 0%, #1a3c6e 50%, #1e4d8c 100%);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 80%, rgba(245,158,11,.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(37,81,163,.3) 0%, transparent 50%);
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 80px;
  background: var(--bg);
  clip-path: ellipse(55% 100% at 50% 100%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 120px 24px 100px;
  max-width: 800px;
}

.badge {
  display: inline-block;
  background: rgba(245,158,11,.2);
  color: var(--accent);
  border: 1px solid rgba(245,158,11,.4);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .5px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero-content h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -.5px;
}

.hero-content p {
  font-size: 1.1rem;
  color: rgba(255,255,255,.75);
  max-width: 560px;
  margin-bottom: 36px;
}

.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 60px; }

.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius);
  padding: 20px 32px;
  width: fit-content;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 28px;
}
.stat strong { font-size: 1.6rem; font-weight: 800; color: var(--white); }
.stat span { font-size: .8rem; color: rgba(255,255,255,.6); margin-top: 2px; }
.stat-divider { width: 1px; height: 40px; background: rgba(255,255,255,.2); }

/* ===== PLATFORM INFO BANNER ===== */
.platform-info {
  background: #eff6ff;
  border-bottom: 1px solid #bfdbfe;
  padding: 20px 0;
}
.platform-banner {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.platform-icon {
  font-size: 2rem;
  flex-shrink: 0;
}
.platform-text {
  flex: 1;
  min-width: 240px;
}
.platform-text strong {
  display: block;
  color: var(--primary);
  font-size: 0.95rem;
  margin-bottom: 4px;
}
.platform-text p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.platform-text p strong {
  display: inline;
  color: var(--primary);
}
.btn-outline-sm {
  display: inline-flex;
  align-items: center;
  padding: 9px 20px;
  border-radius: 8px;
  border: 2px solid var(--primary);
  color: var(--primary);
  font-weight: 600;
  font-size: 0.85rem;
  white-space: nowrap;
  transition: var(--transition);
  flex-shrink: 0;
}
.btn-outline-sm:hover {
  background: var(--primary);
  color: var(--white);
}

/* ===== KEUNGGULAN ===== */
.keunggulan {
  padding: 60px 0;
  background: var(--bg);
}
.keunggulan-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.keunggulan-item {
  text-align: center;
  padding: 32px 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all var(--transition);
}
.keunggulan-item:hover {
  border-color: var(--primary-light);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}
.icon-box {
  font-size: 2rem;
  margin-bottom: 12px;
}
.keunggulan-item h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; color: var(--primary); }
.keunggulan-item p { font-size: .875rem; color: var(--text-muted); }

/* ===== SECTIONS ===== */
.section { padding: 80px 0; }
.bg-light { background: var(--bg-light); }

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 52px;
}
.section-tag {
  display: inline-block;
  background: rgba(26,60,110,.08);
  color: var(--primary);
  padding: 4px 14px;
  border-radius: 50px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .6px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.section-header h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 12px;
  letter-spacing: -.3px;
}
.section-header p { color: var(--text-muted); font-size: .95rem; }

/* ===== TABS ===== */
.tab-group {
  display: flex;
  gap: 8px;
  margin-bottom: 32px;
  background: var(--bg-light);
  padding: 6px;
  border-radius: 10px;
  width: fit-content;
}
.tab-btn {
  padding: 10px 24px;
  border: none;
  border-radius: 7px;
  font-weight: 600;
  font-size: .9rem;
  cursor: pointer;
  background: transparent;
  color: var(--text-muted);
  transition: all var(--transition);
}
.tab-btn.active {
  background: var(--white);
  color: var(--primary);
  box-shadow: 0 2px 8px rgba(0,0,0,.1);
}

.tab-content { display: none; }
.tab-content.active { display: block; }

/* ===== CARDS ===== */
.card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  transition: all var(--transition);
  position: relative;
}
.card:hover {
  border-color: var(--primary-light);
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}

.card-img {
  height: 200px;
  background-size: cover;
  background-position: center;
  background-color: var(--bg-light);
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 12px;
}

.card-img-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
}

.card-img-label {
  position: relative;
  z-index: 1;
  background: rgba(0,0,0,.45);
  backdrop-filter: blur(8px);
  color: var(--white);
  font-size: .72rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 50px;
  letter-spacing: .5px;
  text-transform: uppercase;
}

.empty-state {
  text-align: center;
  padding: 60px 20px;
  color: var(--text-muted);
}
.empty-icon { font-size: 3rem; margin-bottom: 12px; }
.empty-state p { margin-bottom: 20px; }

/* Gradients as placeholder images */
.car1 { background: linear-gradient(135deg, #1a3c6e, #2451a3); }
.car2 { background: linear-gradient(135deg, #0f4c75, #1b6ca8); }
.car3 { background: linear-gradient(135deg, #0f2044, #1a3c6e); }
.car4 { background: linear-gradient(135deg, #1e3a5f, #3b6cb7); }
.moto1 { background: linear-gradient(135deg, #7c3aed, #a855f7); }
.moto2 { background: linear-gradient(135deg, #0369a1, #0ea5e9); }
.moto3 { background: linear-gradient(135deg, #dc2626, #ef4444); }
.moto4 { background: linear-gradient(135deg, #78350f, #d97706); }

.card-body { padding: 20px; }

.card-badge {
  display: inline-block;
  background: var(--accent);
  color: var(--primary-dark);
  font-size: .72rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 50px;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: .5px;
}

.card-body h3 { font-size: 1rem; font-weight: 700; color: var(--primary-dark); margin-bottom: 6px; }
.card-body p { font-size: .82rem; color: var(--text-muted); margin-bottom: 12px; line-height: 1.5; }

.card-specs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.card-specs li {
  font-size: .75rem;
  background: var(--bg-light);
  padding: 3px 8px;
  border-radius: 4px;
  color: var(--text-muted);
}

.card-price { margin-bottom: 14px; }
.price { font-size: 1.15rem; font-weight: 800; color: var(--primary); }
.per { font-size: .8rem; color: var(--text-muted); }

/* ===== TOUR CARDS ===== */
.tour-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.tour-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
}
.tour-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}

.tour-img {
  height: 220px;
  background-size: cover;
  background-position: center;
  background-color: var(--bg-light);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tour-duration {
  position: absolute;
  bottom: 12px; right: 12px;
  background: rgba(0,0,0,.6);
  backdrop-filter: blur(8px);
  color: var(--white);
  font-size: .78rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 50px;
}

.tour-body { padding: 24px; }

.tour-category {
  display: inline-block;
  background: rgba(26,60,110,.1);
  color: var(--primary);
  font-size: .75rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 50px;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.tour-popular {
  background: rgba(245,158,11,.15);
  color: var(--accent-dark);
}

.tour-body h3 { font-size: 1.1rem; font-weight: 700; color: var(--primary-dark); margin-bottom: 8px; }
.tour-body p { font-size: .875rem; color: var(--text-muted); margin-bottom: 16px; line-height: 1.6; }

.tour-include {
  margin-bottom: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
}
.tour-include li { font-size: .8rem; color: var(--text-muted); }

.tour-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.tour-from { font-size: .75rem; color: var(--text-muted); display: block; margin-bottom: 2px; }
.tour-price { font-size: 1.1rem; font-weight: 800; color: var(--primary); }
.tour-price span { font-size: .8rem; font-weight: 400; color: var(--text-muted); }

/* ===== ARMADA NOTE ===== */
.armada-note, .tour-note {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(26,60,110,.06);
  border: 1px solid rgba(26,60,110,.12);
  border-radius: var(--radius);
  padding: 16px 20px;
  margin-top: 28px;
  font-size: .875rem;
  color: var(--text-muted);
}
.armada-note span, .tour-note span { font-size: 1.2rem; flex-shrink: 0; }

/* ===== KONTAK WA BLOCK ===== */
.kontak-wa {
  text-align: center;
  margin-top: 48px;
  padding: 48px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  border-radius: var(--radius-lg);
  color: var(--white);
}
.kontak-wa h3 { font-size: 1.5rem; font-weight: 800; margin-bottom: 10px; }
.kontak-wa p { color: rgba(255,255,255,.75); margin-bottom: 24px; font-size: .95rem; }

.btn-wa-big {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #25D366;
  color: var(--white);
  padding: 16px 36px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 1rem;
  transition: all var(--transition);
}
.btn-wa-big:hover {
  background: #1ebe5a;
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(37,211,102,.5);
}

.btn-wa {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: var(--white);
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: 700;
  font-size: .9rem;
  transition: all var(--transition);
  width: 100%;
  justify-content: center;
}
.btn-wa:hover {
  background: #1ebe5a;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37,211,102,.35);
}

/* ===== TESTIMONI ===== */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.testi-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all var(--transition);
}
.testi-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}
.testi-featured {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}
.testi-featured .stars { color: var(--accent); }
.testi-featured p { color: rgba(255,255,255,.85); }
.testi-featured strong { color: var(--white); }
.testi-featured span { color: rgba(255,255,255,.55); }

.stars { color: var(--accent); font-size: 1rem; margin-bottom: 14px; letter-spacing: 2px; }

.testi-card p {
  font-size: .875rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.testi-profile { display: flex; align-items: center; gap: 12px; }

.avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--white);
  font-weight: 700;
  font-size: .85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.testi-featured .avatar { background: rgba(255,255,255,.2); }

.testi-profile strong { display: block; font-size: .9rem; color: var(--text); }
.testi-profile span { font-size: .78rem; color: var(--text-muted); }

.testi-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 40px;
  width: fit-content;
  margin: 0 auto;
}
.rating-big { font-size: 3rem; font-weight: 800; color: var(--primary); line-height: 1; }
.stars-big { color: var(--accent); font-size: 1.2rem; letter-spacing: 3px; margin-bottom: 4px; }
.testi-summary p { font-size: .875rem; color: var(--text-muted); }

/* ===== KONTAK ===== */
.kontak-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.kontak-item {
  text-align: center;
  padding: 36px 24px;
  background: var(--bg-light);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.kontak-item:hover {
  background: var(--white);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
  border-color: var(--primary-light);
}
.kontak-icon { font-size: 2rem; margin-bottom: 12px; }
.kontak-item h3 { font-size: .95rem; font-weight: 700; color: var(--primary-dark); margin-bottom: 8px; }
.kontak-item p { font-size: .875rem; color: var(--text-muted); line-height: 1.6; }

/* ===== FOOTER ===== */
.footer {
  background: var(--primary-dark);
  color: var(--white);
  padding-top: 60px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.footer-brand .logo { font-size: 1.4rem; margin-bottom: 12px; display: inline-block; }
.footer-brand p { font-size: .875rem; color: rgba(255,255,255,.55); max-width: 300px; line-height: 1.7; margin-bottom: 20px; }

.social-links { display: flex; gap: 12px; }
.social-links a {
  font-size: 1.2rem;
  width: 40px; height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.08);
  border-radius: 8px;
  transition: all var(--transition);
}
.social-links a:hover { background: rgba(255,255,255,.16); transform: translateY(-2px); }

.footer-links h4 { font-size: .9rem; font-weight: 700; margin-bottom: 16px; color: var(--white); }
.footer-links ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: .875rem; color: rgba(255,255,255,.55); transition: color var(--transition); }
.footer-links a:hover { color: var(--accent); }

.footer-bottom {
  text-align: center;
  padding: 20px;
  font-size: .8rem;
  color: rgba(255,255,255,.35);
}

/* ===== FLOATING WA ===== */
.wa-float {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 999;
  width: 60px; height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.5);
  color: var(--white);
  transition: all var(--transition);
  animation: waPulse 2s ease-in-out infinite;
}
.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,.65);
}

@keyframes waPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,.5); }
  50% { box-shadow: 0 4px 32px rgba(37,211,102,.75), 0 0 0 10px rgba(37,211,102,.1); }
}

/* ===== DESTINATION GRID ===== */
.dest-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.dest-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.dest-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

/* ===== DESTINATION CAROUSEL ===== */
.dest-carousel {
  position: relative;
  height: 260px;
  overflow: hidden;
  background: var(--bg-light);
}

.dest-slides {
  display: flex;
  flex-wrap: nowrap;
  width: 100%;
  height: 260px;
  transition: transform 0.5s cubic-bezier(.4,0,.2,1);
  will-change: transform;
}

.dest-slides img {
  min-width: 100%;
  height: 260px;
  object-fit: cover;
  object-position: center;
  flex-shrink: 0;
  display: block;
}

.dest-prev,
.dest-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,.45);
  backdrop-filter: blur(6px);
  color: var(--white);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), opacity var(--transition);
  z-index: 2;
  opacity: 0;
}
.dest-carousel:hover .dest-prev,
.dest-carousel:hover .dest-next { opacity: 1; }
.dest-prev { left: 10px; }
.dest-next { right: 10px; }
.dest-prev:hover,
.dest-next:hover { background: rgba(0,0,0,.7); }

.dest-dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 2;
}
.dest-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,.5);
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}
.dest-dot.active {
  background: var(--white);
  transform: scale(1.3);
}

.dest-count {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(0,0,0,.5);
  backdrop-filter: blur(6px);
  color: var(--white);
  font-size: .72rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 50px;
  z-index: 2;
}

/* ===== DESTINATION BODY ===== */
.dest-body {
  padding: 20px 24px 24px;
}

.dest-tag {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  padding: 3px 12px;
  border-radius: 50px;
  letter-spacing: .5px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.dest-tag-budaya { background: rgba(139,92,246,.12); color: #7c3aed; }
.dest-tag-alam   { background: rgba(16,185,129,.12); color: #059669; }
.dest-tag-unik   { background: rgba(245,158,11,.15); color: #d97706; }
.dest-tag-pantai { background: rgba(14,165,233,.12); color: #0369a1; }

.dest-body h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 8px;
}
.dest-body p {
  font-size: .875rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 18px;
}

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .5s ease, transform .5s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .tour-grid { grid-template-columns: repeat(2, 1fr); }
  .dest-grid { grid-template-columns: repeat(2, 1fr); }
  .keunggulan-grid { grid-template-columns: repeat(2, 1fr); }
  .kontak-grid { grid-template-columns: repeat(2, 1fr); }
  .booking-wrap { grid-template-columns: 1fr; }
  .booking-info { position: static; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  .nav-links, .btn-nav { display: none; }
  .hamburger { display: flex; }
  .hero-content { padding: 100px 24px 80px; }
  .hero-stats { padding: 16px 20px; }
  .stat { padding: 0 16px; }
  .stat strong { font-size: 1.2rem; }
  .card-grid { grid-template-columns: 1fr; }
  .tour-grid { grid-template-columns: 1fr; }
  .dest-grid { grid-template-columns: 1fr; }
  .dest-prev, .dest-next { opacity: 1; }
  .keunggulan-grid { grid-template-columns: 1fr 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .kontak-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .booking-form { padding: 24px; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .hero-cta { gap: 12px; }
  .tour-include { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .keunggulan-grid { grid-template-columns: 1fr; }
  .kontak-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; gap: 12px; width: 100%; }
  .stat-divider { width: 40px; height: 1px; }
  .testi-summary { padding: 20px; gap: 16px; }
}
