* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: #f8f9fa;
    color: #08424d;
    line-height: 1.6;
}

/* Heading khusus card */
.trip-title,
h1, h2, h3, h4 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    letter-spacing: 0.2px;
}


/* HEADER */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgb(244, 251, 251);
    padding: 1rem 4rem;
    position: sticky;
    top: 0;
    z-index: 1000;
}
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}
.logo span {
    color: #ff6600;
}

.logo img {
    margin-left: 10px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}
nav a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: color 0.3s;
}
nav a:hover {
    color: #001eff;
}
.header-buttons .btn {
    background: #08424D;
    border: none;
    padding: 0.6rem 1.2rem;
    color: white;
    cursor: pointer;
    border-radius: 8px;
    transition: background 0.3s;
}
.header-buttons .btn:hover {
    background: #cc5200;
}
.btn-secondary {
    background: transparent;
    border: 1px solid #ff6600;
    padding: 0.5rem 1rem;
    color: #ff6600;
    cursor: pointer;
}
.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

.chat-whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25d366;
    color: #fff !important;
    padding: 12px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.2);
    z-index: 9999;
    transition: all 0.2s ease-in-out;
}

.chat-whatsapp:hover {
    background: #1ebe5d;
    transform: scale(1.05);
}

.chat-whatsapp img {
    width: 24px;
    height: 24px;
}


/* ===== Glassmorphism Sidebar ===== */

.sidebar-glass {
    position: fixed;
    top: 0;
    right: -320px; /* hidden */
    width: 300px;
    height: 100%;
    padding: 2rem 1.7rem;
    z-index: 2000;

    /* Glass effect */
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    /* Rounded corner */
    border-radius: 24px 0 0 24px;

    /* Border faint */
    border-left: 1px solid rgba(255, 255, 255, 0.25);

    /* Animation */
    transition: right 0.35s ease;
}

.sidebar-glass ul {
    list-style: none;
    margin-top: 50px;
    padding-left: 0;
}

.sidebar-glass ul li {
    margin-bottom: 1.4rem;
}

.sidebar-glass ul li a {
    color: #ffffff;
    font-size: 1.15rem;
    font-weight: 600;
    text-decoration: none;

    /* White glow */
    text-shadow: 0 1px 4px rgba(0,0,0,0.25);
}

.close-btn {
    font-size: 1.9rem;
    cursor: pointer;
    text-align: right;
    color: #fff;
}

/* Overlay */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.35);
    backdrop-filter: blur(2px);
    z-index: 1500;
    display: none;
}

/* Hamburger Icon */
.menu-toggle {
    display: none;
    font-size: 2.3rem;
    cursor: pointer;
    color: #08424D;
}

@media (max-width: 768px) {
    .desktop-menu {
        display: none;
    }
    .menu-toggle {
        display: block;
    }
}

.hero-search {
    justify-content: center;
}

/* ----------------------------------------------------
   HERO
------------------------------------------------------ */
/* HERO WRAPPER */
.detail-hero {
  position: relative;
  height: 340px;
  border-radius: 12px;
  overflow: hidden;   /* boleh tetap, tapi aman karena absolute */
}

/* IMAGE FULLY LOCKED */
.detail-hero .hero-img {
  position: absolute;
  inset: 0;              /* top:0 right:0 bottom:0 left:0 */
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.88);
  z-index: 1;
}

/* OVERLAY FIXED DI ATAS GAMBAR */
.hero-overlay {
  position: absolute;
  right: 16px;
  bottom: 16px;
  z-index: 2;
  color: white;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
}

/* section spacing */
.section { margin:18px 0; }
.section .trip-title { font-family:'Poppins',sans-serif; font-weight:700; }


/* hero Overlay agar badge dibagian hero */

/* === 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;
    
}

.muted {
    color: white;
    font-size: 12px;
}

.price-box {
    text-align: right;
    padding: 10px 10px;
    border-radius: 4px;
    background: rgba(0,0,0,0.45);

    backdrop-filter: blur(4px);
    width: fit-content;
}

.price {
    color: rgb(235, 227, 9);
    font-weight: 700;
    font-size: 20px;
}

.sub {
    font-size: 11px;
    color: #f0f0f0;
    opacity: 0.8;
}


/* CONTAINER*/
.page-container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.detail-container {
  width: 100%;
}


.lead {
    font-size: 1.1rem;
    font-weight: 600;
    text-align: justify;
}

@media (max-width: 480px) {
    .detail-container p {
        font-size: 14px;
        text-align: justify;
    
    }
}


/* FOOTER */
footer {
    background:#0b5b5b;
    color: rgb(243, 242, 245);
    padding: 2rem;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}
.footer-links a {
    color: #f0af1d;
    text-decoration: none;
}

/* RESPONSIVE MENU */
@media(max-width: 768px) {
    nav ul {
        display: none;
        flex-direction: column;
        background: white;
        position: absolute;
        top: 60px;
        right: 0;
        padding: 2rem;
        box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        border-top: 1px solid #eee;
        animation: fadeSlide 0.3s ease forwards;
    }
    nav ul.show {
        display: flex;
    }
   .menu-toggle {
        position: absolute;
        display:block;
        right: 1rem;  /* geser sampai pinggir */
        top: 50%;
        transform: translateY(-50%);
        font-size: 1.8rem;
        cursor: pointer;
        user-select: none;
        transition: 0.3s ease;
    }
/* ANIMASI */
    @keyframes fadeSlide {
        from { opacity: 0; transform: translateY(-10px); }
        to { opacity: 1; transform: translateY(0); }
    }
}

@media (max-width: 768px) {
    header {
        padding-left: 5px !important;
    }

    .logo {
        margin-left: 5px !important;
        padding-left: 5px !important;
    }

    .logo img {
        display: block;
        margin-left: 5px !important;
    }
 }


 @media (max-width: 480px) {
    .list li,
    #highlightList li,
    .itinerary-item,
    #termasukList li,
    #tidakTermasukList li,
    #syaratList li,
    #faqList li,
    .mp-list li {
        font-size: 14px;
        line-height: 1.55;
        text-align: justify;
    }
}



/* grid layout: left (70%) / right (30%) */
.grid-wrap{
  display: grid;
  grid-template-columns: 65% 35%;
  gap: 22px;
  align-items: start;
}

.grid-left { min-width:0; } /* for flex overflow */
.grid-right { position:relative; }

/* card base */
.card { background:#fff; border-radius:12px; padding:18px; box-shadow:0 8px 20px rgba(15,35,43,0.06); border:1px solid #eef3f3; margin-bottom:18px; }

/* sticky sidebar cards */
.sticky { position:sticky; top:96px; } /* adjust for header height */

/* Highlights list */
#highlightList { padding-left: 18px; margin-top:8px; }
#highlightList li { margin-bottom:8px; list-style:disc; color:#2b4b50; }

/* tanggal list (sidebar) */
.tanggal-list { display:flex; flex-direction:column; gap:8px; margin-top:12px; }
.tanggal-item { padding:10px 12px; border-radius:10px; background:#fff; border:1px solid #e6f0ef; cursor:pointer; }
.tanggal-item.active { border-left:6px solid #1b8f6e; background:linear-gradient(90deg,#eaf7f1,#ffffff); }

/* status sidebar */
.status-sidebar { margin-top:8px; font-size:14px; }
.progress-wrap { background:#f1f6f5; border-radius:8px; height:12px; overflow:hidden; margin-top:10px; }
.progress-fill { height:100%; width:0%; background:linear-gradient(90deg,#1b8f6e,#0b7a60); transition:width 600ms ease; }

/* Harga paket (Airbnb style) */
/* Wrapper */
.harga-wrapper { 
  display:flex; 
  flex-direction:column; 
  gap:20px; 
  margin-top:20px; 
}

/* Card Harga */
.harga-card { 
  display:flex; 
  justify-content:space-between; 
  align-items:flex-start; 
  padding:22px 26px; 
  border-radius:18px; 
  background:#ffffff; 
  border:1px solid #e6eaef; 
  box-shadow:0 8px 20px rgba(0,0,0,0.04);
  transition: all .25s ease;
}

/* Hover effect */
.harga-card:hover {
  transform: translateY(-3px);
  box-shadow:0 12px 26px rgba(0,0,0,0.08);
}

/* Judul meeting point */
.harga-card h4 { 
  margin:0; 
  font-size:17px; 
  font-weight:700; 
  color:#0c2b33;
}

/* Sub info (min peserta) */
.harga-info-sub {
  margin-top:4px;
  font-size:13px;
  color:#6c7983;
}

/* Harga */
.harga-card .harga { 
  font-weight:800; 
  font-size:17px; 
  color:#155eef;
  display:block;
  margin-bottom:6px;
}

/* Tombol WA */
.harga-card .btn-wa { 
  padding:10px 14px; 
  background:#25D366;
  color:#fff; 
  border-radius:10px; 
  text-decoration:none; 
  font-weight:600;
  box-shadow:0 4px 10px rgba(21,94,239,0.25);
  transition: all .25s ease;
  display:inline-block;
}

.harga-card .btn-wa:hover { 
  background:#0f47c7;
  box-shadow:0 6px 14px rgba(21,94,239,0.35);
  transform: translateY(-2px);
}

/* RESPONSIVE MOBILE */
@media (max-width: 480px) {
  .harga-card {
    flex-direction: column;
    gap:14px;
    padding:20px;
  }
  
  .harga-card .harga {
    margin-bottom:4px;
  }
}

/* itinerary */
.itinerary-tabs { display:flex; gap:8px; margin:8px 0 14px; flex-wrap:wrap; }
.itinerary-tab { padding:6px 12px; border-radius:20px; border:1px solid #cfeee7; background:#fff; cursor:pointer; }
.itinerary-tab.active { background:#1b8f6e; color:#fff; border-color:#17805a; }

/* itinerary content styling */
.itinerary-content .itinerary-item { padding:8px 10px; margin-bottom:8px; border-left:3px solid #e9f7f4; background:#fbfffe; border-radius:8px; }



/* WRAPPER LIST – Airbnb horizontal card */
.perjalananmu-item {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
    align-items: flex-start;
}

.perjalananmu-item img {
    width: 96px;
    height: 96px;
    border-radius: 12px;
    object-fit: cover;
    flex-shrink: 0;
    background: #eee;
}

.perjalananmu-text {
    flex: 1;
}

.perjalananmu-text h4 {
    margin: 0;
    font-size: 13px;
    font-weight: 400;
}

.perjalananmu-text p {
    margin: 4px 0 0;
    color: #666;
    line-height: 1.4;
}


/* What you'll do (Airbnb-like timeline) */
.Perjalananmu { margin-top:10px; display:flex; flex-direction:column; gap:12px; }
.wyd-item { display:flex; gap:12px; align-items:flex-start; }
.wyd-item .dot { width:12px; height:12px; border-radius:50%; background:#1b8f6e; margin-top:6px; flex-shrink:0; }
.wyd-item .wyd-body { background:#ffffff; padding:10px 12px; border-radius:8px; border:1px solid #eef7f5; }


/* berakaitan dengan termasuk tidak termasuk dan syarat */
.include-section {
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
    margin-top: 20px;
}

.include-header {
    padding: 16px 20px;
    font-size: 18px;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: #f9fafb;
}

#arrowIcon {
    transition: .3s;
}

.include-content {
    padding: 20px;
    border-top: 1px solid #e5e7eb;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 40px;
}

.include-content.hidden {
    display: none;
}

.hidden {
    display: none;
}

.include-header, .terms-header {
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
}

.rotate {
    transform: rotate(180deg);
    transition: transform 0.3s ease;
}

#arrowIcon, #termsArrow {
    transition: transform 0.3s ease;
}


/* SYARAT & KETENTUAN ACCORDION */
.terms-section {
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    margin-top: 20px;
    overflow: hidden;
}

.terms-header {
    padding: 16px 20px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    background: #f9fafb;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#termsArrow {
    transition: .3s;
}

.terms-content {
    padding: 18px 20px;
    border-top: 1px solid #e5e7eb;
}

.terms-content.hidden {
    display: none;
}

/* Accordion Wrapper */
.accordion {
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
    margin-top: 20px;
}

/* Header */
.accordion-header {
    padding: 16px 20px;
    background: #68e0f8;
    font-size: 18px;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

/* Arrow */
.accordion-arrow {
    transition: transform 0.3s ease;
}

.accordion.open .accordion-arrow {
    transform: rotate(180deg);
}

/* Content */
.accordion-content {
    padding: 20px;
    border-top: 1px solid #e5e7eb;
    display: none;
    overflow: hidden;
    transition: max-height .3s ease;
}


.accordion.open .accordion-content {
    display: block;
}

/* Box */
.include-box {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 16px 20px;
}

/* Responsive */
@media (max-width: 768px) {
    .accordion-content {
        grid-template-columns: 1fr;
    }
}

/* Include Box */
.include-box h4 {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.green { color: #16a34a; }
.red { color: #dc2626; }



/* meeting points */
#meetingPoints .mp-card { margin-top:8px; padding:10px; border-radius:8px; border:1px solid #e8f3f1; display:flex; justify-content:space-between; align-items:center; }
.mp-label { font-weight:600; }

/* FAQ (accordion with arrow) */
#faqList .faq-item { border-bottom:1px dashed #f0f0f0; padding:10px 0; display:flex; flex-direction:column; gap:6px; }
.faq-q { display:flex; justify-content:space-between; align-items:center; cursor:pointer; font-weight:600; }
.faq-q .arrow { transition: transform .25s ease; }
.faq-a { max-height:0; overflow:hidden; transition:max-height .28s ease, opacity .28s ease; opacity:0; }
.faq-item.open .faq-a { max-height:200px; opacity:1; }
.faq-item.open .arrow { transform:rotate(180deg); }

/* responsive */
@media (max-width: 991px) {
  .grid-wrap { grid-template-columns: 1fr; }
  .grid-right { order:2; }
  .grid-left { order:1; }
  .sticky { position:relative; top:auto; }
}

/* MEETING POINT */
@media(max-width: 768px) {
.meeting-info {
  margin-bottom: 18px;
}

.meeting-info h5 {
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 600;
}

.mp-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.mp-list li {
  font-size: 14px;
  margin-bottom: 6px;
  line-height: 1.4;
}

/* WHATYOU DO */
.what-you-do {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.wyd-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
}

.wyd-img {
  width: 70px;
  height: 70px;
  border-radius: 12px;
  object-fit: cover;
}

.wyd-text {
  flex: 1;
}

.wyd-desc {
  font-size: 15px;
  color: #555;
  margin: 0;
  line-height: 1.4;
}


/* FAQ */
#faqList .faq-item {
    border-bottom:1px dashed #f0f0f0;
    padding:10px 0;
    display:flex;
    flex-direction:column;
    gap:6px;
}

.faq-q {
    display:flex;
    justify-content:space-between;
    align-items:center;
    cursor:pointer;
    font-weight:600;
}

.faq-q .arrow {
    transition: transform .25s ease;
}

.faq-a {
    max-height:0;
    overflow:hidden;
    transition:max-height .28s ease, opacity .28s ease;
    opacity:0;
}

.faq-item.open .faq-a {
    max-height:200px;
    opacity:1;
}

.faq-item.open .arrow {
    transform:rotate(180deg);
}

/* Price Freeze (Airbnb-like) */
.price-sticky-wrapper {
    height: fit-content;
}

.price-sticky {
    position: sticky;
    top: 140px;  /* sesuaikan dengan tinggi navbar kamu */
    z-index: 20;
}

}

/* --- Rekomendasi Section --- */

#rekomendasiWrapper {
    display: grid;
    grid-template-columns: 1fr; /* 1 kolom di mobile */
    gap: 16px;
}

@media (min-width: 768px) {
    #rekomendasiWrapper {
        grid-template-columns: 1fr 1fr; /* 2 kolom tablet */
    }
}

@media (min-width: 1024px) {
    #rekomendasiWrapper {
        grid-template-columns: 1fr; /* tetap 1 kolom di sidebar */
    }
}

.rekom-card {
    display: flex;
    flex-direction: column;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    border: 1px solid #e0e0e0;
    width: 100%;
}

/* === Gambar (atur tinggi + rapi) === */
.rekom-card img {
    width: 100%;
    height: 160px;          /* << batas tinggi */
    object-fit: cover;      /* << bikin gambar rapi */
    display: block;
}

/* === Info bagian bawah === */
.rekom-card .info {
    padding: 12px 14px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

/* LIGHTBOX */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.88);

  display: flex;
  align-items: center;
  justify-content: center;

  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transition: opacity .28s ease;
  z-index: 999999;
}

.lightbox.show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* Image */
.lightbox-img {
  max-width: 100%;
  max-height: 100%;

  border-radius: 14px;
  box-shadow: 0 20px 60px rgba(0,0,0,.55);

  transform: scale(.94);
  opacity: 0;
  transition: transform .35s ease, opacity .35s ease;
}

.lightbox.show .lightbox-img {
  transform: scale(1);
  opacity: 1;
}

/* Close button */
.close-lightbox {
  position: absolute;
  top: 18px;
  right: 26px;
  font-size: 42px;
  color: #fff;
  cursor: pointer;
  user-select: none;
  opacity: .8;
  transition: opacity .2s ease;
}

.close-lightbox:hover {
  opacity: 1;
}

/* Navigation arrows */
/* ===============================
   FORCE LIGHTBOX NAV VISIBLE (MOBILE)
================================ */
.lightbox-nav {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  transform: translateY(-50%);
  display: flex !important;
  justify-content: space-between;
  pointer-events: none;
  z-index: 9999;
}

.lightbox-nav .nav-btn {
  pointer-events: auto;
  background: rgba(0,0,0,0.55);
  color: #fff;
  font-size: 28px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex !important;
  align-items: center;
  justify-content: center;
  margin: 0 12px;
  opacity: 1 !important;
}


#prevBtn { left: 18px; }
#nextBtn { right: 18px; }

/* Mobile touch hint */
@media (max-width: 768px) {
  .lightbox-nav .nav-btn {
    display: none;
  }
}

/* ===============================
   LIGHTBOX CAPTION
================================ */
.lightbox-caption {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);

  max-width: 90%;
  padding: 10px 18px;

  background: rgba(0,0,0,.55);
  color: #fff;
  font-size: 14px;
  line-height: 1.5;

  border-radius: 999px;
  text-align: center;

  opacity: 0;
  transition: opacity .25s ease;
}

.lightbox.show .lightbox-caption {
  opacity: 1;
}

@media (max-width: 768px){
  .lightbox-caption{
    font-size: 13px;
    bottom: 16px;
  }
}

/* ===============================
   SWIPE HINT
================================ */
.swipe-hint {
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0,0,0,.55);
  color: #fff;
  font-size: 13px;
  padding: 10px 16px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 0;
  pointer-events: none;
  animation: swipeHintFade 2.5s ease forwards;
}

.swipe-arrows {
  font-size: 18px;
  letter-spacing: 6px;
  opacity: .85;
}

@keyframes swipeHintFade {
  0%   { opacity: 0; transform: translate(-50%, 10px); }
  15%  { opacity: 1; transform: translate(-50%, 0); }
  80%  { opacity: 1; }
  100% { opacity: 0; }
}

/* ===============================
   DOT INDICATOR
================================ */
.lightbox-dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
}

.lightbox-dots span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,.4);
  transition: all .25s ease;
}

.lightbox-dots span.active {
  background: #fff;
  transform: scale(1.3);
}

