* {
    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;
}

.chat-whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25d366;
    color: #fff !important;
    padding: 0.75rem 1.2rem;
    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: 1.25rem;
    height: 1.25rem;
}


/* ===== 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;
    }
}

/* 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;
    }
}


.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 */
.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;
}

/* section spacing */
.section { margin:18px 0; }
.section .trip-title { font-family:'Poppins',sans-serif; font-weight:700; }

/* === 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;
}




/* 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;
    
    }
}





/* 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 */
.box {
      background: white;
      padding: 15px;
      border-radius: 10px;
      box-shadow: 0 0 8px rgba(0,0,0,0.1);
      margin-bottom: 20px;
    }
    select {
      padding: 8px;
      margin-top: 10px;
      border-radius: 6px;
      border: 1px solid #ccc;
    }

.harga-card { 
  display:flex; 
  justify-content:space-between; 
  align-items:flex-start; 
  background:#ffffff; 
  border:1px solid #e6eaef; 
  box-shadow:0 8px 20px rgba(0,0,0,0.04);
  transition: all .25s ease;
  padding: 10px;
  border-left: 4px solid #2196F3;
  margin-bottom: 10px;
  border-radius: 6px;
}

/* 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;
}

/* Kotak harga */
.harga-item {
    display: grid;
    grid-template-columns: 1fr auto auto;
    align-items: center;
    gap: 12px;

    padding: 14px 18px;
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    margin-bottom: 12px;

    font-size: 1rem;
}

/* Button WA PENGINAPAN */
.btn-wa-penginapan {
  display: inline-block;
  margin-top: 6px;
  background: #25D366;
  color: #fff;
  padding: 8px 12px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  font-size: 14px;
}

.btn-wa-penginapan:hover {
  background: #1ebe5d;
}

.penginapan-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 12px;
  margin-bottom: 8px;
  border: 1px solid #dbe2e6;
  border-radius: 10px;
  background: #fff;
}

.penginapan-left {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 14px;
  color: #08424d;
}

.penginapan-left .harga {
  font-weight: 600;
  color: #00695c;
}

.btn-wa-inline {
  display: inline-block;
  padding: 6px 10px;
  background: #25D366;
  color: #fff;
  font-size: 13px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  white-space: nowrap;
}

.btn-wa-inline:hover {
  background: #1ebe5d;
}



/* Tipe penginapan / Meeting point (tebal) */
.harga-item strong {
    font-weight: 700;
    color: #333;
}

/* Harga otomatis ikut ke kanan */
.harga-item {
    gap: 6px;
}

/* Membuat posisi harga tebal dan berwarna */
.harga-item {
    color: #00695c;
    font-weight: 600;
}

/* 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:#155eef;
  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);
}

.btn-download-wrapper {
    margin: 10px 0 0 0;
}

.btn-book {
    display: inline-block;
    background: #13a884;       /* hijau brand */
    color: #fff;
    padding: 12px 22px;
    border-radius: 14px;
    border: none;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 18px;
    transition: 0.25s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.btn-book:hover {
    background: #0f8d70;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

.btn-book:active {
    transform: translateY(0);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.12);
}


/* 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: 14px;
    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 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;
    }
}

/* 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; }
}

#cardPenginapanGallery {
  padding: 14px;
  box-shadow: 0 4px 12px rgba(0,0,0,.06);
}

#cardPenginapanGallery h3 {
  font-size: 18px;
  margin-bottom: 6px;
}

#cardPenginapanGallery::after {
  content: "Harga tergantung tipe penginapan";
  font-size: 12px;
  color: #6b7280;
}



/* GALERI PENGINAPAN */
.penginapan-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
}


.penginapan-item {
    border-radius: 12px;
    overflow: hidden;
    background: #f1f5f5;
    border: 1px solid #dce4e4;
    text-align: center;
    cursor: pointer;
    transition: 0.25s;
}

.penginapan-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 14px rgba(0,0,0,0.12);
}

.penginapan-item img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    display: block;
}

.penginapan-item span {
    display: block;
    font-size: 13px;
    padding: 6px 8px;
    font-weight: 500;
    color: #0b3c47;
}

.penginapan-card {
  display: block;
  text-decoration: none;
  color: inherit;
}

/* IMAGE — INI KUNCI */
.penginapan-card img {
  width: 100%;
  aspect-ratio: 16 / 9;   /* 👈 SOLUSI UTAMA */
  object-fit: cover;
  display: block;
}

/* INFO */
.penginapan-info {
  padding: 12px 14px;
}

.penginapan-info h4 {
  margin: 0 0 4px;
  font-size: 16px;
}

.penginapan-info span {
  font-size: 14px;
  color: #0a7c6d;
}

.penginapan-info div {
  font-size: 13px;
  color: #555;
}

@media (min-width: 1024px) {
  .penginapan-card img {
    aspect-ratio: 21 / 9;
  }
}




/* 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-a.hidden { display: none; }
#faqList .arrow.rotate { transform: rotate(180deg); transition: .2s; }


#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;
}

}

/* Price card */
.price-card {
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: 0 6px 20px rgba(15,23,42,0.06);
  padding: 16px;
}

.sticky-card{position:sticky;top:22px}


label{display:block;font-size:13px;margin-top:12px}
select,input[type=number]{width:100%;padding:10px;border-radius:10px;border:1px solid #e6e6e6;margin-top:8px;font-size:14px}
button{background:var(--accent);padding:12px 14px;border-radius:12px;border:0;font-weight:600;cursor:pointer}





/* sections */
.section{margin-top:18px}
.cols{display:grid;grid-template-columns:repeat(2,1fr);gap:12px}


/* gallery */
.gallery{display:flex;gap:8px;overflow:auto;padding:8px 0}
.gallery img{height:90px;border-radius:10px;object-fit:cover}


/* CTA WA */
.wa-sticky{position:fixed;right:18px;bottom:18px;background:#25D366;color:white;padding:12px 16px;border-radius:999px;box-shadow:0 8px 30px rgba(37,211,102,0.18);display:flex;gap:8px;align-items:center;text-decoration:none}


/* responsive */
@media (max-width:960px){.grid{grid-template-columns:1fr}.sticky-card{position:static}.hero{border-radius:12px}}


/* --- 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 {
  display: none;
  position: fixed;
  z-index: 99999;
  inset: 0;
  background: rgba(0,0,0,0.85);
  justify-content: center;
  align-items: center;
}
/* LIGHTBOX IMAGE ANIMATION */
.lightbox-img {
  max-width: 90%;
  max-height: 90%;
    border-radius: 14px;
  box-shadow: 0 20px 60px rgba(0,0,0,.55);
  transition: transform 0.35s ease, opacity 0.35s ease;
}

/* Saat berpindah ke foto berikutnya */
.slide-left {
  transform: translateX(-60px);
  opacity: 0;
}

.slide-right {
  transform: translateX(60px);
  opacity: 0;
}

.close-lightbox {
  position: absolute;
  top: 20px;
  right: 35px;
  color: white;
  font-size: 40px;
  cursor: pointer;
}

.lightbox-nav .nav-btn {
  color: white;
  font-size: 50px;
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  padding: 20px;
  user-select: none;
}

#prevBtn { left: 20px; }
#nextBtn { right: 20px; }



.mp-accordion {
  border-radius: 12px;
  margin-bottom: 14px;
  overflow: hidden;
  border: 1px solid #e0e0e0;
}

.mp-header {
  background: #064a55;
  color: #fff;
  padding: 14px 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.mp-header h4 {
  margin: 0;
  font-size: 16px;
}

.mp-header .arrow {
  font-size: 20px;
  font-weight: bold;
}

.mp-content {
  display: none;
  padding: 18px;
  background: #f2fafb;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
}

.mp-accordion.active .mp-content {
  display: grid;
}


.price-range {
  font-weight: 600;
  margin-bottom: 10px;
}

.price-value {
  font-size: 1rem;
  font-weight: 800;
  color: #064a55;
}

.package-actions {
  display: flex;
  justify-content: flex-end;
  gap: 14px;
  margin-top: 16px;
  flex-wrap: wrap;
}

#btn-book {
  background: #fff;
  border: 1px solid #ddd;
  padding: 10px 16px;
  border-radius: 10px;
  cursor: pointer;
}

.btn-wa-global {
  background: #25D366;
  color: #fff;
  border: none;
  padding: 10px 18px;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
}



/* =========================
   TAB PENGINAPAN (HORIZONTAL)
   ========================= */
.tipe-tabs {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 10px 0;
  margin-bottom: 12px;
  scrollbar-width: none;
}
.tipe-tabs::-webkit-scrollbar {
  display: none;
}

.tipe-tab {
  white-space: nowrap;
  padding: 8px 16px;
  border-radius: 20px;
  border: 1px solid #ddd;
  background: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: all .25s ease;
}

.tipe-tab.active {
  background: #00695c;
  color: #fff;
  border-color: #00695c;
}

/* =========================
   HARGA CARD
   ========================= */
.tipe-prices {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px,1fr));
  gap: 12px;
}

.price-card {
  background: #f8f9fa;
  grid-template-columns: repeat(auto-fill, minmax(160px,1fr));
  border-radius: 12px;
  padding: 14px;
  text-align: center;
  border-radius: 14px;
  box-shadow: 0 8px 20px rgba(0,0,0,.08);

}

.price-range {
  font-weight: 600;
  margin-bottom: 6px;
}

.price-value {
  color: #00695c;
  font-weight: 700;
  margin-bottom: 8px;
}

.no-hotel {
  font-style: italic;
  opacity: .7;
}




/* =====================================================
   FIX TAB PENGINAPAN NABRAK HARGA
   ===================================================== */

/* 1️⃣ mp-content JANGAN GRID */
.mp-content {
  display: none;
  padding: 18px;
  background: #f2fafb;
  flex-direction: column;
  gap: 14px;
}

.mp-accordion.active .mp-content {
  display: flex;
}

/* 2️⃣ TAB PENGINAPAN */
.mp-content .tipe-tabs {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 6px;
  margin-bottom: 8px;
  border-bottom: 1px dashed #cfe6ea;
}

/* 3️⃣ TAB BUTTON (LEBIH KECIL & RAPAT) */
.tipe-tab {
  padding: 6px 14px;
  font-size: 13px;
  border-radius: 18px;
  line-height: 1.2;
}

/* 4️⃣ GRID HARGA (KHUSUS PRICE) */
.mp-content .tipe-prices {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 12px;
}

/* 5️⃣ SATU DEFINISI price-card (OVERRIDE SEMUA SEBELUMNYA) */
.mp-content .price-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 14px;
  text-align: center;
  box-shadow: 0 4px 14px rgba(0,0,0,0.06);
}

/* 6️⃣ MOBILE SAFETY */
@media (max-width: 480px) {
  .mp-content .tipe-prices {
    grid-template-columns: 1fr;
  }
}


