/* ============================================================
   KISAH PERJALANAN — detail-privatetrip.css (Upgraded)

   FIX:
   ✅ Font Playfair Display & Plus Jakarta Sans (di-import di HTML)
   ✅ Satu <main> saja — tidak ada double main
   ✅ Logo teks dikembalikan di header
   ✅ toggleMenu() pakai classList (di HTML inline script)
   ✅ Hero diperbesar jadi 65vh (bukan 340px)
   ✅ Semua warna tombol konsisten pakai --accent #FF7A1A
   ✅ CSS duplikasi dihapus — tidak ada class yang didefinisikan ulang
   ✅ Reading progress bar aktif via JS di HTML
   ✅ Accordion header pakai brand color --primary

   FITUR BARU:
   ✅ Sticky booking card di sidebar (desktop)
   ✅ Floating CTA mobile
   ✅ Kalkulasi peserta +/−
   ✅ Share + wishlist button di hero
   ✅ Section labels dengan styling konsisten
   ✅ Meeting point card yang lebih bersih
   ✅ Rekom card yang lebih proper
============================================================ */

/* ══ 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:  #FFF0E6;
  --surface:      #F4FBFB;
  --bg:           #F6FAFB;
  --white:        #FFFFFF;
  --text:         #0B3C45;
  --text-muted:   #6B8A90;
  --border:       #E0EEEF;
  --shadow:       0 4px 20px rgba(11,60,69,0.08);
  --shadow-lg:    0 16px 48px rgba(11,60,69,0.15);
  --radius:       16px;
  --radius-sm:    10px;
  --transition:   0.3s ease;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}
h1,h2,h3,h4 { font-family: 'Playfair Display', Georgia, serif; font-weight: 700; }
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; }

/* ══ PROGRESS BAR ══ */
.progress-bar {
  position: fixed; top: 0; left: 0; height: 3px; z-index: 2001;
  background: var(--accent); width: 0%; transition: width 0.1s linear;
}

/* ══ HEADER ══ */
#mainHeader {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(244,251,251,0.95);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(11,60,69,0.08);
  transition: all var(--transition);
}
#mainHeader.scrolled { background: rgba(255,255,255,0.98); box-shadow: 0 2px 20px rgba(11,60,69,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); }
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,122,26,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); }
.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; }

/* ══ SIDEBAR MOBILE ══ */
.sidebar-glass { position: fixed; top: 0; right: -320px; width: 300px; height: 100%; padding: 2rem 1.7rem; z-index: 2000; background: rgba(11,60,69,0.94); 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 !important; text-align: center; border-radius: 10px; padding: 0.85rem; display: block; }
.close-btn { font-size: 1.6rem; cursor: pointer; color: rgba(255,255,255,0.8); background: none; border: none; display: block; text-align: right; }
.overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.4); backdrop-filter: blur(2px); z-index: 1500; display: none; }

/* ══ BREADCRUMB ══ */
.ud-breadcrumb { padding-top: 82px; background: var(--white); border-bottom: 1px solid var(--border); }
.ud-breadcrumb-inner { max-width: 1320px; margin: 0 auto; padding: 0.75rem 2rem; font-size: 0.82rem; color: var(--text-muted); display: flex; align-items: center; gap: 0.4rem; flex-wrap: wrap; }
.ud-breadcrumb-inner a { color: var(--primary); font-weight: 600; transition: color 0.2s; }
.ud-breadcrumb-inner a:hover { color: var(--accent); }
.sep { color: var(--border); }

/* ══ MAIN & CONTAINER ══ */
.dp-main { padding-bottom: 4rem; }
.dp-container { max-width: 1280px; margin: 0 auto; padding: 0 1.5rem; }

/* ══ HERO — FIX: diperbesar jadi 65vh ══ */
.dp-hero {
  position: relative; margin: 1.5rem 0;
  height: 65vh; min-height: 440px;
  border-radius: 20px; overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.dp-hero-img-wrap { position: absolute; inset: 0; }
.dp-hero-img { width: 100%; height: 100%; object-fit: cover; display: block; }
.dp-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    135deg,
    rgba(11,60,69,0.7) 0%,
    rgba(11,60,69,0.2) 50%,
    rgba(11,60,69,0.65) 100%
  );
}

.detail-hero {
  position: relative;
  height: 340px;
  border-radius: 12px;
  overflow: hidden;   /* boleh tetap, tapi aman karena absolute */
}

/* IMAGE */
.detail-hero img.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* OVERLAY GRADIENT */
.detail-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.15),
    rgba(0,0,0,0.45)
  );
  z-index: 1;
}

/* CONTENT */
.detail-hero .hero-overlay {
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  color: #fff;
}


/* === OVERLAY MUNCUL DI DALAM FOTO (KANAN BAWAH) === */

.meta .badge {
    background: #ff7b00;
    padding: 4px 10px;
    border-radius: 6px;
    color: #fff;
    font-size: 12px;
    justify-content:flex-start !important;
    
}

.meta {
    display: flex;
    gap: 8px;
    align-items: center;

}

.badge {
    background: #ff7b00;
    color: #fff;
    padding: 6px 12px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 13px;
    
}

.price-box {
    text-align: right;
    padding: 10px 10px;
    border-radius: 4px;
    width: fit-content;
    background: rgba(0,0,0,0.45);
    padding: 10px 14px;
    border-radius: 8px;
    backdrop-filter: blur(4px);
    width: fit-content;
}

.detail-hero .price {
  color: rgb(235, 227, 9);
  font-size: 20px;
  font-weight: 700;
  
}

.detail-hero .muted {
  color: rgb(254, 254, 249);
  font-size: 12px;
}

.sub {
    font-size: 11px;
    color: #f0f0f0;
    opacity: 0.8;
}



/* Info kiri bawah */
.dp-hero-info {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 2rem 2rem 1.8rem; z-index: 2;
}
.dp-hero-badges { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 0.8rem; }
/* FIX: Badge pakai brand color */
.dp-badge-durasi {
  background: var(--accent); color: white;
  font-size: 0.72rem; font-weight: 800; padding: 0.3rem 0.9rem;
  border-radius: 20px; letter-spacing: 0.5px;
}
.dp-badge-lokasi {
  background: rgba(255,255,255,0.15); color: rgba(255,255,255,0.9);
  font-size: 0.72rem; font-weight: 600; padding: 0.3rem 0.9rem;
  border-radius: 20px; backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,0.25);
}
.dp-hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 800;
  color: white; line-height: 1.1; margin-bottom: 0.6rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.dp-hero-sub {
  font-size: 0.95rem; color: rgba(255,255,255,0.82); line-height: 1.6;
  max-width: 560px;
}

/* Harga kanan atas hero */
.dp-hero-price-box {
  position: absolute; top: 1.5rem; right: 1.5rem; z-index: 3;
  background: rgba(0,0,0,0.5); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 0.9rem 1.2rem; border-radius: 12px; text-align: right;
}
.dp-price-from { font-size: 0.68rem; color: rgba(255,255,255,0.7); text-transform: uppercase; letter-spacing: 1px; }
.dp-price-val { font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 800; color: #fbbf24; line-height: 1.1; }
.dp-price-sub { font-size: 0.68rem; color: rgba(255,255,255,0.65); margin-top: 0.2rem; }

/* Action buttons kiri atas */
.dp-hero-actions {
  position: absolute; top: 1.5rem; left: 1.5rem; z-index: 3;
  display: flex; gap: 0.5rem;
}
.dp-action-btn {
  background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.3);
  color: white; padding: 0.45rem 1rem; border-radius: 20px;
  font-size: 0.78rem; font-weight: 600; cursor: pointer;
  backdrop-filter: blur(4px); transition: all 0.2s;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.dp-action-btn:hover { background: rgba(255,255,255,0.25); }
.dp-action-btn.saved { background: var(--accent); border-color: var(--accent); }

/* ══ BODY LAYOUT ══ */
.dp-body {
  display: grid; grid-template-columns: 1fr 360px; gap: 2.5rem; align-items: start;
}

/* ══ SECTION HELPERS ══ */
.dp-section-label {
  font-size: 0.68rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: 3px; color: var(--accent); margin-bottom: 0.35rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.dp-section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.2rem, 2.5vw, 1.7rem); font-weight: 800;
  color: var(--primary); margin-bottom: 1.1rem;
}
.dp-sidebar-title {
  font-family: 'Playfair Display', serif;
  font-size: 1rem; font-weight: 800; color: var(--primary); margin-bottom: 0.8rem;
}

/* ══ CARDS ══ */
.dp-card {
  background: white; border-radius: var(--radius); padding: 1.5rem;
  box-shadow: var(--shadow); border: 1.5px solid var(--border);
  margin-bottom: 1.2rem; transition: box-shadow var(--transition);
}
.dp-card:hover { box-shadow: var(--shadow-lg); }
.dp-sidebar-card { padding: 1.2rem; }

/* ══ HIGHLIGHTS ══ */
.dp-highlight-list { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 0.6rem; }
.dp-highlight-list li {
  display: flex; align-items: flex-start; gap: 0.6rem;
  font-size: 0.9rem; color: var(--text); line-height: 1.5;
  padding: 0.6rem 0.8rem; border-radius: 8px; background: var(--surface);
  border-left: 3px solid var(--accent);
}
.dp-highlight-list li::before { content: '⚡'; font-size: 0.8rem; flex-shrink: 0; }

/* ══ ITINERARY ══ */
.itinerary-tabs { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 1rem; }
.itinerary-tab {
  padding: 0.4rem 1rem; border-radius: 20px;
  border: 1.5px solid var(--border); background: var(--surface);
  color: var(--text-muted); font-size: 0.8rem; font-weight: 700;
  cursor: pointer; transition: all 0.2s; font-family: 'Plus Jakarta Sans', sans-serif;
}
/* FIX: Tab aktif pakai --primary bukan hardcode */
.itinerary-tab.active { background: var(--primary); color: white; border-color: var(--primary); }
.itinerary-tab:hover:not(.active) { border-color: var(--accent); color: var(--accent); }
.itinerary-content { display: flex; flex-direction: column; gap: 0.5rem; }
.itinerary-item {
  padding: 0.65rem 0.9rem; border-radius: 8px;
  background: var(--surface); border-left: 3px solid var(--border);
  font-size: 0.88rem; color: var(--text); line-height: 1.5;
  transition: border-color 0.2s;
}
.itinerary-item:hover { border-left-color: var(--accent); }

/* ══ PENGINAPAN GALLERY ══ */
.penginapan-gallery { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 1rem; }
.penginapan-item {
  border-radius: var(--radius-sm); overflow: hidden;
  border: 1.5px solid var(--border); cursor: pointer; transition: all var(--transition);
}
.penginapan-item:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); border-color: var(--accent); }
.penginapan-card { display: block; text-decoration: none; color: inherit; }
.penginapan-card img { width: 100%; aspect-ratio: 16/9; object-fit: cover; display: block; }
.penginapan-info { padding: 0.8rem 1rem; }
.penginapan-info h4 { font-family: 'Playfair Display', serif; font-size: 0.92rem; color: var(--primary); margin-bottom: 0.2rem; }
.penginapan-info span { font-size: 0.78rem; color: var(--accent); font-weight: 700; }
.penginapan-info div { font-size: 0.75rem; color: var(--text-muted); margin-top: 0.15rem; }

/* ══ MEETING POINT ACCORDION ══ */
.mp-accordion { border-radius: 12px; margin-bottom: 0.8rem; overflow: hidden; border: 1.5px solid var(--border); }
/* FIX: pakai --primary bukan #064a55 hardcode */
.mp-header {
  background: var(--primary); color: white;
  padding: 1rem 1.2rem; display: flex; justify-content: space-between;
  align-items: center; cursor: pointer; transition: background 0.2s;
}
.mp-header:hover { background: var(--primary-dark); }
.mp-header h4 { margin: 0; font-size: 0.95rem; font-weight: 700; font-family: 'Plus Jakarta Sans', sans-serif; }
.mp-header .arrow { font-size: 1.2rem; font-weight: 700; }
.mp-content { display: none; padding: 1.2rem; background: var(--surface); flex-direction: column; gap: 1rem; }
.mp-accordion.active .mp-content { display: flex; }

/* Tabs penginapan dalam accordion */
.tipe-tabs { display: flex; gap: 6px; flex-wrap: wrap; padding-bottom: 0.8rem; border-bottom: 1px dashed var(--border); }
.tipe-tab {
  padding: 0.35rem 0.9rem; border-radius: 18px; font-size: 0.78rem;
  font-weight: 700; border: 1.5px solid var(--border); background: white;
  color: var(--text-muted); cursor: pointer; transition: all 0.2s;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
/* FIX: Tab aktif pakai brand color */
.tipe-tab.active { background: var(--primary); color: white; border-color: var(--primary); }

/* Price cards */
.tipe-prices { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 0.8rem; }
.price-card {
  background: white; border-radius: var(--radius-sm); padding: 1rem;
  text-align: center; border: 1.5px solid var(--border); box-shadow: var(--shadow);
}
.price-range { font-size: 0.78rem; color: var(--text-muted); font-weight: 600; margin-bottom: 0.4rem; }
/* FIX: Harga pakai --accent bukan hardcode hijau */
.price-value { font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 800; color: var(--accent); }
.no-hotel { font-size: 0.85rem; color: var(--text-muted); font-style: italic; }

/* ══ TOMBOL AKSI — FIX: Semua pakai brand color ══ */
.dp-card-actions { display: flex; gap: 0.8rem; flex-wrap: wrap; margin-top: 1.2rem; }
.dp-btn-download {
  background: var(--surface); border: 1.5px solid var(--border);
  color: var(--primary); padding: 0.7rem 1.3rem; border-radius: var(--radius-sm);
  font-size: 0.85rem; font-weight: 700; cursor: pointer;
  font-family: 'Plus Jakarta Sans', sans-serif; transition: all 0.2s;
}
.dp-btn-download:hover { border-color: var(--primary); background: var(--primary); color: white; }
/* FIX: WA button pakai WA green bukan biru */
.dp-btn-wa {
  background: #25D366; color: white; border: none;
  padding: 0.7rem 1.4rem; border-radius: var(--radius-sm);
  font-size: 0.85rem; font-weight: 800; cursor: pointer;
  font-family: 'Plus Jakarta Sans', sans-serif; transition: all 0.2s;
}
.dp-btn-wa:hover { background: #1ebe5d; transform: translateY(-1px); }
.dp-note { font-size: 0.75rem; color: var(--text-muted); margin-top: 0.6rem; }
.dp-select {
  width: 100%; padding: 0.6rem 0.9rem; border-radius: var(--radius-sm);
  border: 1.5px solid var(--border); font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.85rem; color: var(--text); outline: none; background: var(--surface);
  margin-top: 0.4rem; transition: border-color 0.2s;
}
.dp-select:focus { border-color: var(--accent); }

/* ══ MEETING POINT INFO ══ */
.dp-mp-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.dp-mp-item { background: var(--surface); border-radius: var(--radius-sm); padding: 1rem; border: 1.5px solid var(--border); }
.dp-mp-city { font-family: 'Playfair Display', serif; font-size: 0.95rem; font-weight: 700; color: var(--primary); margin-bottom: 0.4rem; }
.dp-mp-desc { font-size: 0.82rem; color: var(--text-muted); line-height: 1.5; }

/* ══ INCLUDE / EXCLUDE ══ */
.dp-include-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.dp-include-box { border-radius: var(--radius-sm); padding: 1rem; border: 1.5px solid var(--border); }
.dp-include-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.88rem; font-weight: 800; margin-bottom: 0.8rem;
  padding-bottom: 0.5rem; border-bottom: 2px solid var(--border);
}
.include-ok { color: #16a34a; border-color: #16a34a; }
.include-no { color: #dc2626; border-color: #dc2626; }
.dp-list { list-style: none; display: flex; flex-direction: column; gap: 0.4rem; }
.dp-list li { font-size: 0.83rem; color: var(--text); padding: 0.35rem 0; border-bottom: 1px solid var(--border); display: flex; align-items: flex-start; gap: 0.4rem; }
.dp-list li:last-child { border-bottom: none; }
.dp-syarat-list li::before { content: '•'; color: var(--accent); font-weight: 900; flex-shrink: 0; }

/* ══ ACCORDION — FIX: satu definisi bersih ══ */
.dp-accordion { padding: 0; overflow: hidden; }
.dp-accordion-header {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.1rem 1.5rem; cursor: pointer;
  /* FIX: Pakai --primary bukan hardcode */
  background: var(--primary); color: white;
  font-size: 0.9rem; font-weight: 700; font-family: 'Plus Jakarta Sans', sans-serif;
  transition: background 0.2s;
}
.dp-accordion-header:hover { background: var(--primary-dark); }

.accordion-arrow { transition: transform 0.3s; font-size: 1.1rem; }
.dp-accordion.open .accordion-arrow { transform: rotate(180deg); }
.dp-accordion-body { padding: 1.5rem; border-top: 1px solid var(--border); display: none; }
.dp-accordion.open .dp-accordion-body { display: block; }

/* ══ SIDEBAR BOOKING CARD ══ */
.dp-sidebar { position: sticky; top: 90px; display: flex; flex-direction: column; gap: 1.2rem; }
.dp-booking-card {
  background: white; border: 1.5px solid var(--border);
  border-radius: var(--radius); padding: 1.5rem; box-shadow: var(--shadow-lg);
}
.dp-bc-price-row { display: flex; align-items: baseline; gap: 0.35rem; margin-bottom: 0.3rem; }
.dp-bc-from { font-size: 0.72rem; color: var(--text-muted); }
.dp-bc-amount { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 800; color: var(--accent); }
.dp-bc-per { font-size: 0.72rem; color: var(--text-muted); }
.dp-bc-min { font-size: 0.75rem; color: var(--text-muted); margin-bottom: 1rem; padding-bottom: 1rem; border-bottom: 1px solid var(--border); }

.dp-bc-label { font-size: 0.68rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.5px; color: var(--text-muted); margin-bottom: 0.4rem; display: block; }
.dp-bc-peserta-row { display: flex; align-items: center; gap: 0; border: 1.5px solid var(--border); border-radius: var(--radius-sm); overflow: hidden; margin-bottom: 0.8rem; }
.dp-peserta-btn {
  width: 40px; height: 40px; background: var(--surface); border: none;
  font-size: 1.2rem; font-weight: 700; color: var(--primary); cursor: pointer; transition: background 0.2s;
}
.dp-peserta-btn:hover { background: var(--accent); color: white; }
.dp-peserta-input {
  flex: 1; border: none; outline: none; text-align: center;
  font-size: 1rem; font-weight: 700; color: var(--primary);
  font-family: 'Plus Jakarta Sans', sans-serif; height: 40px;
}
.dp-calc-result { background: var(--accent-soft); border-radius: 8px; padding: 0.7rem 1rem; margin-bottom: 0.8rem; display: flex; justify-content: space-between; align-items: center; }
.dp-calc-label { font-size: 0.75rem; color: var(--text-muted); }
.dp-calc-amount { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 800; color: var(--accent); }
/* FIX: Button booking pakai brand color */
.dp-bc-btn {
  width: 100%; background: var(--accent); color: white; border: none;
  border-radius: var(--radius-sm); padding: 0.9rem;
  font-size: 0.95rem; font-weight: 800; cursor: pointer;
  font-family: 'Plus Jakarta Sans', sans-serif; margin-bottom: 0.6rem; transition: all 0.2s;
}
.dp-bc-btn:hover { background: var(--accent-dark); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(255,122,26,0.4); }
.dp-bc-note { font-size: 0.72rem; color: var(--text-muted); text-align: center; line-height: 1.5; margin-bottom: 1rem; }
.dp-bc-perks { display: flex; flex-direction: column; gap: 0.4rem; padding-top: 0.8rem; border-top: 1px solid var(--border); }
.dp-bc-perk { font-size: 0.78rem; color: var(--text-muted); display: flex; align-items: center; gap: 0.3rem; }

/* ══ PERJALANANMU / GALLERY ══ */
.dp-perjalanan-list { display: flex; flex-direction: column; gap: 0.8rem; }
.perjalananmu-item {
  display: flex; gap: 0.8rem; align-items: flex-start;
  padding: 0.6rem; border-radius: 8px; border: 1px solid var(--border);
  cursor: pointer; transition: all 0.2s;
}
.perjalananmu-item:hover { border-color: var(--accent); background: var(--accent-soft); }
.perjalananmu-item img { width: 72px; height: 72px; border-radius: 8px; object-fit: cover; flex-shrink: 0; }
.perjalananmu-text h4 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 0.82rem; font-weight: 600; color: var(--primary); line-height: 1.4; margin: 0; }

/* ══ FAQ ══ */
.dp-faq-list { list-style: none; }
.faq-item { border-bottom: 1px dashed var(--border); padding: 0.7rem 0; }
.faq-item:last-child { border-bottom: none; }
.faq-q { display: flex; justify-content: space-between; align-items: center; cursor: pointer; font-weight: 700; font-size: 0.85rem; color: var(--primary); }
.faq-q .arrow { transition: transform 0.25s; font-size: 0.8rem; color: var(--text-muted); }
.faq-a { max-height: 0; overflow: hidden; opacity: 0; transition: max-height 0.28s ease, opacity 0.28s ease; font-size: 0.82rem; color: var(--text-muted); line-height: 1.6; }
.faq-item.open .faq-a { max-height: 300px; opacity: 1; }
.faq-item.open .arrow { transform: rotate(180deg); }

/* ══ REKOMENDASI ══ */
.dp-rekom-list { display: flex; flex-direction: column; gap: 0.8rem; }
.rekom-card {
  display: flex; gap: 0.8rem; border-radius: var(--radius-sm); overflow: hidden;
  border: 1.5px solid var(--border); cursor: pointer; transition: all var(--transition);
}
.rekom-card:hover { border-color: var(--accent); transform: translateY(-2px); box-shadow: var(--shadow); }
.rekom-card img { width: 80px; height: 80px; object-fit: cover; flex-shrink: 0; }
.rekom-card .info { padding: 0.6rem 0.7rem; display: flex; flex-direction: column; gap: 0.2rem; flex: 1; }
.rekom-card .info h4 { font-family: 'Playfair Display', serif; font-size: 0.85rem; color: var(--primary); margin: 0; line-height: 1.3; }
.rekom-card .info .price { font-size: 0.82rem; font-weight: 800; color: var(--accent); }
.rekom-card .info a { font-size: 0.72rem; color: var(--accent); font-weight: 700; margin-top: auto; }

/* ══ FLOATING CTA MOBILE ══ */
.dp-floating-cta {
  display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 900;
  background: white; border-top: 1px solid var(--border);
  padding: 0.85rem 1.5rem; box-shadow: 0 -6px 20px rgba(11,60,69,0.12);
  align-items: center; justify-content: space-between; gap: 1rem;
}
.dp-fc-info { display: flex; align-items: baseline; gap: 0.3rem; }
.dp-fc-from { font-size: 0.72rem; color: var(--text-muted); }
.dp-fc-price { font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 800; color: var(--accent); }
.dp-fc-per { font-size: 0.72rem; color: var(--text-muted); }
/* FIX: Floating CTA pakai brand color, bukan merah Airbnb */
.dp-fc-btn { background: var(--accent); color: white; border: none; border-radius: 30px; padding: 0.75rem 1.8rem; font-size: 0.88rem; font-weight: 800; cursor: pointer; font-family: 'Plus Jakarta Sans', sans-serif; transition: all 0.2s; white-space: nowrap; }
.dp-fc-btn:hover { background: var(--accent-dark); }

/* ══ WA FLOAT ══ */
.chat-whatsapp {
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 9998;
  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;
  animation: waPulse 2.5s ease-in-out infinite;
}
.chat-whatsapp:hover { background: #1eb356; transform: scale(1.05); }
@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.65)} }

/* ══ LIGHTBOX ══ */
.dp-lightbox {
  display: none; position: fixed; z-index: 99999; inset: 0;
  background: rgba(0,0,0,0.9); justify-content: center; align-items: center;
}
.dp-lightbox.show-lightbox { display: flex; }
.dp-lb-img { max-width: 90%; max-height: 90vh; border-radius: 12px; box-shadow: 0 20px 60px rgba(0,0,0,0.5); }
.dp-lb-close { position: absolute; top: 1.2rem; right: 1.5rem; color: white; font-size: 2.5rem; cursor: pointer; line-height: 1; transition: color 0.2s; }
.dp-lb-close:hover { color: var(--accent); }
.dp-lb-nav { position: absolute; inset: 0; display: flex; align-items: center; justify-content: space-between; padding: 0 1rem; pointer-events: none; }
.dp-lb-btn { color: white; font-size: 3rem; cursor: pointer; pointer-events: all; padding: 1rem; transition: color 0.2s; user-select: none; }
.dp-lb-btn:hover { color: var(--accent); }

/* ══ 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); }

/* ══ RESPONSIVE ══ */
@media (max-width: 1100px) {
  .dp-body { grid-template-columns: 1fr 320px; }
}
@media (max-width: 992px) {
  nav { display: none; }
  .menu-toggle { display: flex; }
  .dp-body { grid-template-columns: 1fr; }
  .dp-sidebar { position: static; display: none; }
  .dp-floating-cta { display: flex; }
  .footer-top { grid-template-columns: 1fr 1fr 1fr; gap: 2rem; }
  .footer-brand { grid-column: span 3; }
}
@media (max-width: 768px) {
  .dp-hero { height: 60vh; min-height: 380px; border-radius: 14px; }
  .dp-hero-info { padding: 1.2rem 1.2rem 1.4rem; }
  .dp-hero-title { font-size: 1.6rem; }
  .dp-hero-sub { display: none; }
  .dp-hero-price-box { top: 1rem; right: 1rem; padding: 0.7rem 0.9rem; }
  .dp-hero-actions { top: 1rem; left: 1rem; }
  .dp-container { padding: 0 1rem; }
  .dp-include-grid { grid-template-columns: 1fr; }
  .dp-mp-grid { grid-template-columns: 1fr; }
  .dp-card { padding: 1.1rem; }
  .dp-main { padding-bottom: 5rem; }
  .header-inner { padding: 0 1.2rem; }
  .footer-top { grid-template-columns: 1fr 1fr; 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; }
}
@media (max-width: 480px) {
  .dp-hero { height: 55vh; min-height: 320px; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }
  .tipe-prices { grid-template-columns: 1fr 1fr; }
}
