

/* ══ RESET & BASE ══ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --primary: #0B3C45;
  --primary-dark: #07292F;

  --accent: #FF7A1A;
  --accent-dark: #CC5200;
  --accent-soft: #FFE8D6;

  --surface: #F4FBFB;
  --bg: #F6FAFB;
  --white: #FFFFFF;

  --text: #0B3C45;
  --text-muted: #6B8A90;
  --text-sec:   #5A7A80; /* alias untuk kompatibilitas */
  --ink:        #08424D; /* alias untuk kompatibilitas */
  --border: #E6F0F2;

  --shadow: 0 6px 30px rgba(11,60,69,0.08);
  --shadow-lg: 0 20px 60px rgba(11,60,69,0.18);


  --fire:   #FF6600; /* sama dengan accent — untuk marquee bar */
  --muted:  #F4FBFB; /* background hover yang lembut */
  --off:    #F8F9FA; /* alias bg */
  --glow: 0 0 40px rgba(255,102,0,0.35);


  --radius: 20px;
  --radius-sm: 10px;
  --transition: 0.3s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Plus Jakarta Sans', 'Jakarta Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, .trip-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  letter-spacing: 0.2px;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 3px; }

/* ══ SEO HIDDEN ══ */
.seo-static-trips {
  position: absolute; width: 1px; height: 1px;
  overflow: hidden; clip: rect(0,0,0,0);
}
.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); border: 0;
}

/* ══ SECTION HELPERS ══ */
.section-container { max-width: 1320px; margin: 0 auto; padding: 0 2rem; }
.section-head { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 2.5rem; flex-wrap: wrap; gap: 1rem; }
.section-head.centered { flex-direction: column; align-items: center; text-align: center; }
.sec-label { font-size: 0.7rem; font-weight: 800; text-transform: uppercase; letter-spacing: 3px; color: var(--accent); margin-bottom: 0.4rem; font-family: 'Plus Jakarta Sans', sans-serif; }
.sec-title { font-family: 'Playfair Display', serif; font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 800; color: var(--primary); line-height: 1.15; margin-bottom: 0.5rem; }
.sec-sub { font-size: 0.95rem; color: var(--text-muted); line-height: 1.7; max-width: 500px; }
.section-head.centered .sec-sub { margin: 0 auto; }
.accent { color: var(--accent); }

body::after {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url('noise.png');
  opacity: 0.03;
  pointer-events: none;
}

/* ══ BUTTONS ══ */
.btn-lihat-semua {
  display: inline-block; padding: 0.75rem 2rem;
  background: var(--primary); color: white; border-radius: var(--radius-sm);
  font-weight: 700; font-size: 0.88rem; letter-spacing: 0.3px;
  transition: all var(--transition);
}
.btn-lihat-semua:hover { background: var(--accent); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(255,102,0,0.3); color: white; }

.btn-lihat-semua-outline {
  display: inline-block; padding: 0.6rem 1.4rem;
  border: 1.5px solid var(--primary); color: var(--primary); border-radius: var(--radius-sm);
  font-weight: 700; font-size: 0.85rem; transition: all var(--transition);
}
.btn-lihat-semua-outline:hover { background: var(--primary); color: white; }

/* ══ HEADER ══ */
#mainHeader {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(244, 251, 251, 0.92);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(8,66,77,0.08);
  transition: all var(--transition);
}
#mainHeader.scrolled {
  background: rgba(255,255,255,0.97);
  box-shadow: 0 2px 20px rgba(8,66,77,0.1);
}
.header-inner {
  max-width: 1320px; margin: 0 auto; padding: 0 2rem;
  height: 70px; display: flex; align-items: center; justify-content: space-between;
  gap: 1rem;
}
.logo { display: flex; align-items: center; gap: 0.7rem; flex-shrink: 0; }
.logo img { border-radius: 8px; }
.logo-text-wrap { display: flex; flex-direction: column; }
.logo-name { font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 800; color: var(--primary); line-height: 1; }
.logo-name em { font-style: italic; color: var(--accent); }
.logo-tagline { font-family: 'Kalam', cursive; font-size: 0.65rem; color: var(--text-muted); margin-top: 1px; }

nav ul { display: flex; list-style: none; gap: 0.2rem; }
nav a {
  display: block; padding: 0.45rem 0.85rem;
  font-size: 0.83rem; font-weight: 600; color: var(--text-muted);
  border-radius: 8px; transition: all 0.2s;
}
nav a:hover, nav a.active { color: var(--accent); background: rgba(255,102,0,0.08); }

.header-actions { display: flex; align-items: center; gap: 0.8rem; }
.btn-bikin {
  padding: 0.55rem 1.3rem; background: var(--primary); color: white;
  border-radius: var(--radius-sm); font-size: 0.83rem; font-weight: 700;
  transition: all var(--transition); white-space: nowrap;
}
.btn-bikin:hover { background: var(--accent); transform: translateY(-1px); box-shadow: var(--glow); }

/* Hamburger */
.menu-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.menu-toggle span { display: block; width: 24px; height: 2px; background: var(--primary); border-radius: 2px; transition: all 0.3s; }

/* ══ SIDEBAR ══ */
.sidebar-glass {
  position: fixed; top: 0; right: -320px; width: 300px; height: 100%;
  padding: 2rem 1.7rem; z-index: 2000;
  background: rgba(8,66,77,0.93); backdrop-filter: blur(16px);
  border-radius: 24px 0 0 24px;
  border-left: 1px solid rgba(255,255,255,0.12);
  transition: right 0.35s cubic-bezier(0.4,0,0.2,1);
}
.sidebar-glass.open { right: 0; }
.sidebar-glass ul { list-style: none; margin-top: 60px; }
.sidebar-glass ul li { margin-bottom: 0.3rem; }
.sidebar-glass ul li a {
  display: block; padding: 0.8rem 1rem; color: rgba(255,255,255,0.85);
  font-size: 1rem; font-weight: 600; border-radius: 10px; transition: all 0.2s;
}
.sidebar-glass ul li a:hover { color: white; background: rgba(255,255,255,0.1); }
.sidebar-glass .sidebar-cta a {
  margin-top: 1rem; background: var(--accent); color: white;
  text-align: center; border-radius: 10px; padding: 0.85rem;
}
.close-btn { font-size: 1.6rem; cursor: pointer; text-align: right; color: rgba(255,255,255,0.8); background: none; border: none; }

.overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.4);
  backdrop-filter: blur(2px); z-index: 1500; display: none;
}

/* ══ HERO SLIDER ══ */
.hero-slider {
  position: relative; width: 100%;
  padding-top: 70px; /* header height */
  background: var(--primary-dark);
}
.slider-inner {
  position: relative; width: calc(100% - 6rem);
  margin: 1.5rem auto 0; height: 75vh; min-height: 480px;
  border-radius: 24px; overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.slider-container {
  display: flex; height: 100%;
  transition: transform 0.7s cubic-bezier(0.4,0,0.2,1);
}
.slide { flex: 1 0 100%; position: relative; overflow: hidden; }
.slide video { width: 100%; height: 100%; object-fit: cover; }
.slide-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(8,66,77,0.6) 0%, rgba(8,66,77,0.2) 60%, transparent 100%);
}
.slide-content {
  position: absolute; top: 50%; left: 8%; transform: translateY(-50%);
  color: white; max-width: 520px; z-index: 2;
}
.slide-tag {
  display: inline-block; background: rgba(255,102,0,0.9);
  color: white; font-size: 0.72rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 2px;
  padding: 0.35rem 1rem; border-radius: 20px; margin-bottom: 1rem;
}
.slide-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4.5vw, 3.2rem); font-weight: 800;
  line-height: 1.1; margin-bottom: 0.9rem;
  text-shadow: 0 2px 12px rgba(0,0,0,0.3);
}
.slide-content p { font-size: 1rem; line-height: 1.7; margin-bottom: 1.5rem; color: rgba(255,255,255,0.88); max-width: 440px; }
.slide-actions { display: flex; gap: 0.8rem; flex-wrap: wrap; }
.btn-slide-primary {
  display: inline-block; padding: 0.75rem 1.6rem;
  background: var(--accent); color: white; border-radius: var(--radius-sm);
  font-weight: 700; font-size: 0.88rem; transition: all var(--transition);
}
.btn-slide-primary:hover { background: var(--accent-dark); transform: translateY(-2px); }
.btn-slide-wa {
  display: inline-block; padding: 0.75rem 1.4rem;
  background: rgba(255,255,255,0.15); border: 1.5px solid rgba(255,255,255,0.4);
  color: white; border-radius: var(--radius-sm); font-weight: 600; font-size: 0.88rem;
  backdrop-filter: blur(4px); transition: all var(--transition);
}
.btn-slide-wa:hover { background: rgba(255,255,255,0.25); color: white; }

/* Slide controls */
.slide-prev, .slide-next {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.15); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.25); color: white;
  font-size: 1.4rem; width: 48px; height: 48px; border-radius: 50%;
  cursor: pointer; z-index: 5; transition: all 0.2s;
  display: flex; align-items: center; justify-content: center;
}
.slide-prev:hover, .slide-next:hover { background: var(--accent); border-color: var(--accent); }
.slide-prev { left: 1.2rem; }
.slide-next { right: 1.2rem; }

/* Dots */
.slide-dots {
  position: absolute; bottom: 1.2rem; left: 50%; transform: translateX(-50%);
  display: flex; gap: 0.5rem; z-index: 5;
}
.dot {
  width: 8px; height: 8px; border-radius: 50%; border: none;
  background: rgba(255,255,255,0.4); cursor: pointer; transition: all 0.3s;
}
.dot.active { background: white; width: 24px; border-radius: 4px; }


/* ══ TRIP TABS SECTION ══ */
.trip-tabs-section { padding: 3rem 0 3rem; background: white; }

.trip-card-wrapper {
  display: flex; justify-content: center; gap: 1rem;
  margin-bottom: 2rem; flex-wrap: wrap;
}
.tab-btn {
  padding: 0.65rem 1.5rem; border-radius: 30px;
  font-size: 0.85rem; font-weight: 700;
  border: 2px solid var(--border); background: white; color: var(--text-muted);
  cursor: pointer; transition: all 0.2s; font-family: 'Plus Jakarta Sans', sans-serif;
}
.tab-btn:hover { border-color: var(--primary); color: var(--primary); }
.tab-btn.active { background: var(--primary); color: white; border-color: var(--primary); }

.trip-card-container {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 1.2rem; padding: 0 2rem;
}

/* Mobile tabs */
.mobile-trip-tabs { display: none; padding: 0 1rem; }
.mobile-tab-btn {
  width: 100%; padding: 0.9rem 1rem; font-size: 0.9rem; font-weight: 700;
  border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  background: var(--surface); color: var(--primary);
  text-align: left; cursor: pointer; margin-bottom: 0.5rem; transition: all 0.2s;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.mobile-tab-btn.active { background: var(--primary); color: white; border-color: var(--primary); }
.mobile-tab-content { display: none; padding: 0.8rem 0; }
.mobile-tab-content.active { display: block; }


 /* ===================== MARQUEE ===================== */
    .marquee-bar {
      background: var(--accent);
      padding: 9px 0;
      overflow: hidden;
      border-top: none;
      border-bottom: none;
    }

    .marquee-track {
      display: flex;
      animation: marquee 22s linear infinite;
      white-space: nowrap;
    }

    .marquee-item {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 0.95rem;
      letter-spacing: 4px;
      color: rgba(255,255,255,0.9);
      padding: 0 2.5rem;
      flex-shrink: 0;
    }

    .marquee-dot {
      color: rgba(255,255,255,0.4);
      font-size: 0.5rem;
      vertical-align: middle;
    }

    @keyframes marquee {
      from { transform: translateX(0); }
      to   { transform: translateX(-50%); }
    }

/* ══ TRIP CARDS ══ */
.trip-card {
  backdrop-filter: blur(10px);

  background: white; border-radius: var(--radius); overflow: hidden;
  display: flex; flex-direction: column;
  box-shadow: var(--shadow); border: 1.5px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  position: relative; height: 100%;
}



.trip-card:hover { transform: translateY(-10px) scale(1.02); box-shadow: var(--shadow-lg); border-color: var(--accent); }

.trip-card img, .trip-img { width: 100%; height: 200px; object-fit: cover; display: block; transition: transform 0.5s ease; }
.trip-card:hover img { transform: scale(1.05); }

.trip-link { display: flex; flex-direction: column; height: 100%; text-decoration: none; color: inherit; }
.trip-info { flex: 1; display: flex; flex-direction: column; padding: 1rem 1.1rem 1.2rem; }

.badge-box { display: flex; flex-wrap: wrap; gap: 4px; margin-bottom: 0.5rem; margin-top: 6px;}

.badge {
  display: inline-block; padding: 0.2rem 0.6rem;
  background: rgba(8,66,77,0.08); color: var(--primary);
  border-radius: 6px; font-size: 0.63rem; font-weight: 700; letter-spacing: 0.3px;
}

.trip-title { font-family: 'Playfair Display', serif; font-size: 0.98rem; font-weight: 700; margin: 0.3rem 0; color: var(--primary); line-height: 1.3; }
.trip-desc, .trip-description { font-size: 0.8rem; color: var(--text-muted); line-height: 1.5; flex-grow: 1; margin-bottom: 0.8rem; }
.trip-location { font-size: 0.75rem; color: var(--text-muted); margin-bottom: 0.8rem; display: flex; gap: 4px; align-items: center; }

.trip-price-box {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: auto; padding-top: 0.8rem;
  border-top: 1px solid var(--border); gap: 0.5rem;
}
.price-promo, .price-text { color: var(--accent); font-weight: 800; font-size: 1rem; }
.price-coret { text-decoration: line-through; color: #9AABAE; font-size: 0.8rem; }

.trip-price {
  position: absolute; top: 10px; right: 10px;
  background: rgba(255,255,255,0.95); padding: 0.3rem 0.8rem;
  border-radius: 8px; font-weight: 700; font-size: 0.82rem;
  color: var(--primary); z-index: 2; box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.btn-view {
  display: inline-block; background: var(--primary); padding: 0.5rem 1rem;
  border-radius: 8px; color: white; font-weight: 700; font-size: 0.78rem;
  transition: all 0.2s; white-space: nowrap;
}
.btn-view:hover { background: var(--accent); }

/* ══ POPULAR SECTION ══ */
.popular-section { padding: 4.5rem 0; background: var(--surface); }
.popular-wrapper {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 1.2rem; padding: 0;
}

/* ══ DESTINATION SECTION ══ */
.destination-section { padding: 4.5rem 0; background: white; }
.destination-container {
  display: flex; gap: 14px; padding: 4px;
  width: 100%; overflow: hidden;
}
.destination {
  flex: 1; position: relative; height: 480px;
  border-radius: 18px; overflow: hidden; cursor: pointer;
  transition: all 0.5s cubic-bezier(0.4,0,0.2,1);
  box-shadow: var(--shadow);
}
.destination.active { flex: 3; }
.destination img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.destination:hover img { transform: scale(1.04); }
.dest-overlay-grad {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(8,66,77,0.85) 0%, rgba(8,66,77,0.3) 50%, transparent 100%);
}
.destination .info {
  position: absolute; bottom: 3.5rem; left: 1.2rem;
  color: white; font-size: 1.1rem; font-weight: 700;
  text-shadow: 0 2px 8px rgba(0,0,0,0.4); z-index: 2;
}
.destination.active .info { font-size: 1.5rem; }
.dest-region-badge {
  display: inline-block; font-size: 0.6rem; font-weight: 800;
  background: var(--accent); color: white; padding: 0.2rem 0.6rem;
  border-radius: 4px; letter-spacing: 1px; text-transform: uppercase;
  margin-bottom: 0.3rem; margin-right: auto;
}
.destination .subtext { font-size: 0.75rem; font-weight: 400; opacity: 0.8; margin-top: 0.2rem; }
.destination .btn-destination {
  position: absolute; bottom: 1.2rem; left: 1.2rem; z-index: 3;
  background: var(--accent); color: white; padding: 0.6rem 1.2rem;
  border-radius: var(--radius-sm); font-size: 0.8rem; font-weight: 700;
  opacity: 0; transform: translateY(8px);
  transition: all var(--transition);
}
.destination:hover .btn-destination, .destination.active .btn-destination { opacity: 1; transform: translateY(0); }

/* ===================== AKTIVITAS (dari website asli) ===================== */
    .section-light { background: var(--off); }

    .aktivitas-grid {
      display: grid;
      grid-template-columns: repeat(6, 1fr);
      gap: 1rem;
    }

    .aktivitas-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 4px;
      padding: 1.5rem 1rem;
      text-align: center;
      cursor: pointer;
      transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
    }

    .aktivitas-card:hover {
      border-color: var(--fire);
      box-shadow: 0 4px 16px rgba(212,80,10,0.08);
      transform: translateY(-2px);
    }

    .aktivitas-card img {
       width: 100%;
       height: 120px;
    object-fit: cover;
    display: block;
    border-radius: 12px;
      object-fit: contain;
      margin-bottom: 0.75rem;
      display: block;
      margin-left: auto;
      margin-right: auto;
    }

    .aktivitas-name {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 0.78rem;
      font-weight: 700;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: var(--ink);
    }

  /* ===================== RESPONSIVE ===================== */
    @media (max-width: 900px) {
      .aktivitas-grid { grid-template-columns: repeat(2, 1fr); }
      }

    @media (max-width: 600px) {
      .aktivitas-grid { grid-template-columns: repeat(2, 1fr); }
      }


/* ══ KATEGORI ══ */
.tour-kategori { padding: 4.5rem 0; background: var(--bg); }
.badge-lokasi { color: white; background: var(--primary); padding: 0.2rem 0.6rem; font-size: 0.65rem; border-radius: 6px; display: inline-block; }

/* ══ AI SECTION ══ */
.ai-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--primary-dark) 0%, #0a3a45 60%, #052e36 100%);
  position: relative; overflow: hidden;
}
.ai-section::before {
  content: ''; position: absolute; top: -150px; right: -150px;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,102,0,0.08), transparent 70%);
}
.ai-inner {
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 4rem; align-items: center;
}
.ai-quick-links { display: flex; gap: 0.6rem; flex-wrap: wrap; }
.ai-quick {
  padding: 0.5rem 1rem; border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.2); color: rgba(255,255,255,0.8);
  font-size: 0.78rem; font-weight: 600; transition: all 0.2s;
}
.ai-quick:hover { background: rgba(255,255,255,0.1); color: white; border-color: rgba(255,255,255,0.4); }

.ai-window {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1); border-radius: 20px; overflow: hidden;
}
.ai-topbar {
  background: rgba(255,255,255,0.05); border-bottom: 1px solid rgba(255,255,255,0.07);
  padding: 0.75rem 1.2rem; display: flex; align-items: center; gap: 0.5rem;
}
.ai-dots { display: flex; gap: 5px; }
.ai-dots span { width: 10px; height: 10px; border-radius: 50%; }
.ai-dots .r { background: #ef4444; }
.ai-dots .y { background: #f59e0b; }
.ai-dots .g { background: #22c55e; }
.ai-topbar-title { font-size: 0.75rem; color: rgba(255,255,255,0.4); margin-left: 0.5rem; font-weight: 600; }

.ai-messages {
  padding: 1.2rem; max-height: 260px; overflow-y: auto;
  display: flex; flex-direction: column; gap: 0.9rem;
}
.ai-messages::-webkit-scrollbar { width: 3px; }
.ai-messages::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.15); border-radius: 2px; }

.ai-msg { display: flex; gap: 0.6rem; align-items: flex-start; }
.ai-msg.user { flex-direction: row-reverse; }
.ai-ava {
  width: 32px; height: 32px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.72rem; font-weight: 800;
}
.ai-msg.ai .ai-ava { background: linear-gradient(135deg, var(--primary), var(--accent)); color: white; }
.ai-msg.user .ai-ava { background: #fbbf24; color: white; font-size: 1rem; }
.ai-bub {
  padding: 0.75rem 1rem; border-radius: 12px;
  font-size: 0.85rem; line-height: 1.6; max-width: 80%;
}
.ai-msg.ai .ai-bub { background: rgba(255,255,255,0.07); color: #e2e8f0; border-radius: 4px 12px 12px 12px; }
.ai-msg.user .ai-bub { background: var(--accent); color: white; border-radius: 12px 4px 12px 12px; }
.ai-bub strong { color: #fbbf24; }
.ai-bub a { color: #fbbf24; text-decoration: underline; }

.ai-input-area {
  display: flex; gap: 0.6rem; padding: 0.8rem 1.2rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.ai-inp {
  flex: 1; background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12); border-radius: 10px;
  padding: 0.7rem 1rem; color: white;
  font-family: 'Plus Jakarta Sans', sans-serif; font-size: 0.85rem; outline: none;
  transition: border-color 0.2s;
}
.ai-inp::placeholder { color: rgba(255,255,255,0.3); }
.ai-inp:focus { border-color: var(--accent); }
.btn-ai-send {
  background: var(--accent); color: white; border: none; border-radius: 10px;
  padding: 0.7rem 1.2rem; font-size: 0.85rem; font-weight: 700;
  cursor: pointer; font-family: 'Plus Jakarta Sans', sans-serif; transition: all 0.2s;
}
.btn-ai-send:hover { background: var(--accent-dark); }
.btn-ai-send:disabled { opacity: 0.5; cursor: not-allowed; }

.ai-suggestions {
  display: flex; gap: 0.5rem; flex-wrap: wrap;
  padding: 0.8rem 1.2rem 1rem; border-top: 1px solid rgba(255,255,255,0.05);
}
.ai-suggestions button {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.7); font-size: 0.74rem; font-weight: 600;
  padding: 0.35rem 0.9rem; border-radius: 20px; cursor: pointer;
  transition: all 0.2s; font-family: 'Plus Jakarta Sans', sans-serif;
}
.ai-suggestions button:hover { background: rgba(255,102,0,0.2); border-color: var(--accent); color: #fca5a5; }

/* ===================== KENAPA (dari website asli) ===================== */
    .kenapa-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0;
      border: 1px solid var(--border);
      border-radius: 4px;
      overflow: hidden;
      margin-top: 3rem;
    }


    .kenapa-item {
      padding: 2rem 1.75rem;
      border-right: 1px solid var(--border);
      transition: background 0.2s;
      position: relative;
    }

    .kenapa-item:last-child { border-right: none; }
    .kenapa-item:hover { background: white; }

    .kenapa-item img {
      width: 40px; height: 40px;
      object-fit: contain;
      margin-bottom: 1rem;
      opacity: 0.85;
    }

    .kenapa-title {
      font-family: 'Playfair Display', serif;
      font-size: 1.15rem;
      letter-spacing: 0.5px;
      color: var(--primary);
      margin-bottom: 0.5rem;
    }

    .kenapa-desc {
      font-size: 0.85rem;
      line-height: 1.65;
      color: var(--text-muted);
    }

/* ══ KENAPA PILIH ══ */
.kenapa-harus-pilih { padding: 4.5rem 0; background: var(--surface); }
.alasan-container {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; margin-top: 2rem;
}
.alasan-card {
  background: white; border-radius: var(--radius); padding: 1.8rem 1.5rem;
  box-shadow: var(--shadow); border: 1.5px solid var(--border);
  text-align: center; transition: all var(--transition);
}
.alasan-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--accent); }
.alasan-icon { margin-bottom: 1.2rem; }
.alasan-icon img { width: 72px; height: 72px; object-fit: contain; margin: 0 auto; border-radius: 12px; }
.alasan-card h3 { font-family: 'Playfair Display', serif; font-size: 1rem; color: var(--primary); margin-bottom: 0.6rem; }
.alasan-card p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; }

/* ══ REVIEW SECTION ══ */
.review-section { padding: 4.5rem 0; background: white; }
.rating-summary {
  display: grid; grid-template-columns: auto 1fr; gap: 2.5rem;
  background: var(--surface); border: 1.5px solid var(--border);
  border-radius: var(--radius); padding: 2rem; margin-bottom: 2.5rem;
  align-items: center; box-shadow: var(--shadow);
}

.review-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px,1fr)); gap: 1.2rem;
}
.review-card {
  background: var(--surface); border: 1.5px solid var(--border);
  border-radius: var(--radius); padding: 1.5rem;
  transition: all var(--transition); box-shadow: var(--shadow);
}
.review-card:hover { border-color: var(--accent); transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.rv-stars { font-size: 0.9rem; color: #f59e0b; letter-spacing: 2px; margin-bottom: 0.8rem; }
.review-card p { font-size: 0.88rem; color: #57534e; line-height: 1.7; font-style: italic; margin-bottom: 1.2rem; }
.rv-author { display: flex; align-items: center; gap: 0.8rem; }
.rv-ava {
  width: 42px; height: 42px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; font-weight: 800; color: white;
}
.rv-author strong { font-size: 0.85rem; color: var(--primary); font-family: 'Playfair Display', serif; }
.rv-trip { font-size: 0.72rem; color: var(--accent); font-weight: 700; margin-top: 0.15rem; }

/* ══ VIDEO REVIEW ══ */
.video-review-section { padding: 4.5rem 0; background: var(--bg); }
.video-carousel-container {
  position: relative;  width: 100%; max-width: 1400px; margin: 0 auto;
  overflow: hidden; padding: 0 2rem;
}
.video-carousel { display: flex; gap: 1.2rem; transition: transform 0.4s ease; }
.video-slide {
  min-width: calc(33.33% - 0.8rem); border-radius: 18px; overflow: hidden;
  position: relative; box-shadow: var(--shadow);
}
.video-slide video { width: 100%; height: 100%; object-fit: cover; border-radius: 18px; cursor: pointer; }
.video-label {
  position: absolute; bottom: 0.8rem; left: 0.8rem;
  background: rgba(255,255,255,0.92); border-radius: 8px;
  padding: 0.3rem 0.8rem; font-size: 0.73rem; font-weight: 700; color: var(--primary);
}
.btn-prev, .btn-next {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: var(--primary); color: white; border: none;
  padding: 0; width: 44px; height: 44px; border-radius: 50%;
  cursor: pointer; font-size: 1rem; z-index: 10; transition: background 0.2s;
  display: flex; align-items: center; justify-content: center;
}
.btn-prev:hover, .btn-next:hover { background: var(--accent); }
.btn-prev { left: 4px; }
.btn-next { right: 4px; }

/* ══ CTA BAND ══ */
.cta-band {
  position: relative; padding: 5rem 2rem; text-align: center; overflow: hidden;
}
.cta-band-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--primary), #0a5a6a);
}
.cta-band-bg::after {
  content: ''; position: absolute; inset: 0;
  background: url('https://images.unsplash.com/photo-1530866495561-507c9faab2ed?w=1600&q=60') center/cover;
  opacity: 0.12;
}
.cta-band-content { position: relative; z-index: 1; max-width: 560px; margin: 0 auto; }
.cta-band h2 { font-family: 'Playfair Display', serif; font-size: clamp(2rem,5vw,3rem); color: white; margin-bottom: 1rem; }
.cta-band p { color: rgba(255,255,255,0.8); font-size: 1rem; margin-bottom: 2rem; line-height: 1.7; }
.cta-band-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.btn-cta-white {
  display: inline-block; padding: 0.9rem 2rem; background: white;
  color: var(--primary); border-radius: var(--radius-sm);
  font-weight: 800; font-size: 0.9rem; transition: all var(--transition);
}
.btn-cta-white:hover { background: var(--accent); color: white; transform: translateY(-2px); }
.btn-cta-wa {
  display: inline-block; padding: 0.9rem 2rem;
  background: #25D366; color: white; border-radius: var(--radius-sm);
  font-weight: 800; font-size: 0.9rem; transition: all var(--transition);
}
.btn-cta-wa:hover { background: #1eb356; transform: translateY(-2px); }

/* ══ FOOTER ══ */
footer { background: var(--primary-dark); color: rgba(255,255,255,0.85); }
.footer-top {
  display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr 1fr; gap: 3rem;
  max-width: 1320px; margin: 0 auto; padding: 4rem 2rem 3rem;
}
.footer-brand p { font-size: 0.83rem; color: rgba(255,255,255,0.55); line-height: 1.7; max-width: 240px; margin-top: 1rem; }
.footer-logo { display: flex; align-items: center; gap: 0.7rem; margin-bottom: 0.5rem; }
.footer-logo img { border-radius: 8px; }
.footer-logo-name { font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 800; color: white; }
.footer-logo-name em { font-style: italic; color: #fca5a5; }
.footer-logo-tag { font-family: 'Kalam', cursive; font-size: 0.65rem; color: rgba(255,255,255,0.4); }
.footer-social { display: flex; gap: 0.8rem; margin-top: 1.2rem; }
.footer-social a {
  font-size: 0.78rem; font-weight: 700; color: rgba(255,255,255,0.55);
  padding: 0.4rem 0.9rem; border: 1px solid rgba(255,255,255,0.15);
  border-radius: 20px; transition: all 0.2s;
}
.footer-social a:hover { color: white; border-color: rgba(255,255,255,0.4); background: rgba(255,255,255,0.06); }

.footer-col h4 { font-family: 'Playfair Display', serif; font-size: 0.92rem; font-weight: 700; color: white; margin-bottom: 1.1rem; }
.footer-col a { display: block; font-size: 0.8rem; color: rgba(255,255,255,0.55); margin-bottom: 0.55rem; transition: color 0.2s; }
.footer-col a:hover { color: #fca5a5; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 1.5rem 2rem; max-width: 1320px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem;
}
.footer-links { display: flex; gap: 1.2rem; flex-wrap: wrap; }
.footer-links a { font-size: 0.78rem; color: rgba(255,255,255,0.45); transition: color 0.2s; }
.footer-links a:hover { color: #fca5a5; }
footer p { font-size: 0.78rem; color: rgba(255,255,255,0.3); }

/* ══ WA FLOAT ══ */
.chat-whatsapp {
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 9999;
  background: #25D366; color: white !important;
  padding: 0.75rem 1.3rem; border-radius: 50px;
  font-weight: 700; font-size: 0.85rem;
  display: flex; align-items: center; gap: 8px;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: all 0.2s; text-decoration: none;
  animation: waPulse 2.5s ease-in-out infinite;
}
.chat-whatsapp:hover { background: #1eb356; transform: scale(1.05); color: white !important; }
@keyframes waPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 4px 40px rgba(37,211,102,0.6); }
}

/* ══ SCROLL REVEAL ══ */
.reveal-up, .alasan-card, .review-card, .kategori-card {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal-up.revealed, .alasan-card.revealed, .review-card.revealed, .kategori-card.revealed {
  opacity: 1; transform: translateY(0);
}

/* ══ RESPONSIVE ══ */



@media (max-width: 1200px) {
  .popular-wrapper { grid-template-columns: repeat(1,1fr); }
  .kategori-grid { grid-template-columns: repeat(3,1fr); }
  .footer-top { grid-template-columns: 1fr 1fr 1fr; gap: 2rem; }
}

@media (max-width: 992px) {
  nav { display: none; }
  .menu-toggle { display: flex; }
  .popular-wrapper { grid-template-columns: repeat(1,1fr); }
  .alasan-container { grid-template-columns: repeat(1,1fr); }
  .kenapa-grid { grid-template-columns: repeat(1,1fr); }
  .ai-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .ai-left { text-align: center; }
  .ai-quick-links { justify-content: center; }
  .destination-container { flex-wrap: wrap; }
  .destination { min-width: 48%; height: 260px; }
  .destination.active { flex: 1 1 100%; }
}

@media (max-width: 768px) {
  .slider-inner { width: calc(100% - 2rem); height: 70vh; border-radius: 16px; }
  .slide-content { left: 1.4rem; max-width: 90%; }
  .slide-content h2 { font-size: 1.6rem; }
  .slide-content p { font-size: 0.88rem; display: none; }
  .hero-stats-bar { gap: 0; }
  .hstat { padding: 0 1rem; }
  .hstat-divider { display: none; }
  .trip-card-wrapper { display: none; }
  #trip-card-container { display: none !important; }
  .mobile-trip-tabs { display: block; }
  .popular-wrapper { grid-template-columns: 1fr; padding: 0 1rem; }
  .destination-container { flex-direction: column; align-items: center; gap: 1rem; padding: 0; }
  .destination { width: 100%; height: 220px; }
  .destination.active { flex: none; width: 100%; height: 260px; }
  .kategori-grid { grid-template-columns: repeat(2,1fr); }
  .alasan-container { grid-template-columns: 1fr; }
  .kenapa-grid { grid-template-columns: repeat(1,1fr); }
  .rating-summary { grid-template-columns: 1fr; }
  .rating-big { border-right: none; border-bottom: 1px solid var(--border); padding-right: 0; padding-bottom: 1.5rem; margin-bottom: 1.5rem; }
  .video-slide { min-width: 100%; height: auto; }
  .video-slide video { height: 100%; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; padding: 3rem 1.5rem 2rem; }
  .footer-brand { grid-column: span 2; }
  .footer-bottom { flex-direction: column; text-align: center; padding: 1.5rem; }
  .footer-links { justify-content: center; }
  .header-inner { padding: 0 1.2rem; }
  .section-container { padding: 0 1.2rem; }
  .ai-section { padding: 3.5rem 0; }
  .kenapa-harus-pilih { padding: 3.5rem 0; }
}

@media (max-width: 480px) {
  .trip-card-container { grid-template-columns: repeat(2,1fr); padding: 0 1rem; }
  .popular-wrapper { grid-template-columns: repeat(1,1fr); }
  .hstat-num { font-size: 1.1rem; }
  .hstat-lbl { font-size: 0.6rem; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }
}


@media (max-width: 768px) {
  .slide-prev, .slide-next {
    top: auto;
    bottom: 80px; /* atur sesuai kebutuhan */
    transform: none;
  }
}