* {
    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;
    }
}


/* HERO */
.hero {
    text-align: center;
    padding: 1rem 4rem;
    background: #ddd;
}
.hero-slider {
  position: relative;
  width: 100%;
  height: 75vh;
  overflow: visible;
  background: transparent;
}

.hero-slider .slider-inner {
  position: relative;
  max-width: calc(100% - 8rem);
  margin: 0 auto;
  height: 100%;
  overflow: hidden;
  border-radius: 20px;
  background: #000;
}

.slider-container {
  display: flex;
  transition: transform 0.8s ease-in-out;
  height: 100%;
}

.slide {
  flex: 1 0 100%;
  position: relative;
}

.slide video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  filter: contrast(105%) saturate(110%);
}

.slide-content {
  position: absolute;
  top: 50%;
  left: 8%;
  transform: translateY(-50%);
  color: white;
  text-align: left;
  max-width: 500px;
  z-index: 10;
}

.slide-content h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  text-shadow: 2px 2px 10px rgba(0,0,0,0.6);
}

.slide-content p {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  text-shadow: 1px 1px 6px rgba(0,0,0,0.6);
}

.btn-readmore {
  display: inline-block;
  padding: 10px 20px;
  background: #ff6600;
  color: white;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s;
}

.btn-readmore:hover {
  background: #cc5200;
}

@media (max-width: 768px) {
  .slide-content h1 {
    font-size: 1.6rem;
  }
  .slide-content p {
    font-size: 1rem;
  }
  .btn-readmore {
    padding: 8px 16px;
    font-size: 0.8rem;
  }
}

.prev, .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.4);
  border: none;
  color: white;
  font-size: 2rem;
  padding: 0.3em 0.6em;
  border-radius: 50%;
  cursor: pointer;
  z-index: 5;
}

.prev { left: 0.8rem; }
.next { right: 0.8rem; }

@media (max-width: 768px) {
  .hero-slider .slider-inner {
    max-width: calc(100% - 2rem);
    border-radius: 12px;
  }
  .prev, .next {
    font-size: 1.5rem;
  }
} /* ← Kurung ini hilang di file kamu */



    /* 3 BUTTON FLOATING */


/* Wrapper untuk card kategori */
.trip-card-wrapper {
  display: flex;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  margin-top: 20px;
  justify-content: center;
  gap: 16px;
  align-items: center;
  margin-top: 30px;
  padding: 1rem 1rem; /* memberi jarak kiri kanan */
}


.trip-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  display: flex;
    flex-direction: column;
    height: 100%;           /* penting supaya auto bekerja */
    padding-bottom: 6px;    /* jarak harga dari bawah */
    position: relative;
  
}

.trip-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.trip-info {
  padding: 12px;
}
  

.tab-container {
  display: flex;
  justify-content: center; /* Bisa diubah: flex-start, flex-end */
  margin-top: 20px;
}

.tab-wrapper {
  display: flex;
  gap: 12px; /* jarak antar tab */
}

.tab {
  padding: 10px 25px;
  border: 1px solid #ccc;
  border-radius: 12px;
  cursor: pointer;
  background: #fff;
  transition: 0.3s;
  text-align: center;
}

.tab.active {
  background: #004d4d;
  color: white;
  border-color: #004d4d;
}
.tab:hover,
.tab.active {
  background-color: #013d47;
  color: #fff;
}

/* Default: mobile hidden */
.mobile-trip-tabs {
    display: none;
}

/* Tampilkan hanya di MOBILE */
@media (max-width: 768px) {

    /* Sembunyikan versi desktop */
    .trip-card-wrapper,
    #trip-card-container {
        display: none !important;
    }

    .mobile-trip-tabs {
        display: block;
        margin-top: 20px;
    }

    .mobile-tab-btn {
        width: 100%;
        padding: 12px 14px;
        font-size: 15px;
        border: 1px solid #b8e6ec;
        border-radius: 8px;
        background: #e7f7f9;
        color: #08424d;
        text-align: left;
        cursor: pointer;
        margin-bottom: 6px;
    }

    .mobile-tab-btn.active {
        background: #08424d;
        color: #fff;
    }

    .mobile-tab-content {
        display: none;
        padding: 10px 0;
    }

    .mobile-tab-content.active {
        display: block;
    }
}



/* CARDS */

.popular-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 🟦 DESKTOP: 4 kolom */
  gap: 10px;
  padding: 60px;
}
@media (max-width: 1024px) {
  .popular-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .popular-wrapper {
    grid-template-columns: 1fr;
    padding: 10px;
  }
}


.trip-card img {
  width: 100%;
  height: 220px;              /* 🔥 Tinggi gambar dipendekkan */
  object-fit: cover;
}



.badge-lokasi {
    color: white;
    padding: 3px 8px;
    font-size: 0.75rem;
    border-radius: 10px;
    display: inline-block;
}


/* Badge Harga di atas gambar */
.trip-price {
     position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(255, 255, 255, 0.95);
    padding: 6px 12px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1rem;
    color: #222;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    z-index: 10;
}

.trip-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

/* SLIDER */
.card-slider {
  position: relative;
  width: 100%;
  height: 150px;
  overflow: hidden;
}

.card-slider img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-bottom: 1px solid #eee;
}


/* CONTENT TAB BTN*/
.trip-body {
  padding: 18px 20px 22px;
}

.badge-box {
  display: flex;
  flex-wrap: wrap;
  gap: 0px;
  margin-bottom: 2px;
  margin-top: 2px;
  
}

.badge {
     display: inline-block;
    padding: 4px 10px;
    background: #e8f0ff;
    color: #3366ff;
    border-radius: 8px;
    font-size: 0.6rem;
    margin-top: 10px;
    margin-right: 4px;
    margin-left: 4px;
}

/* Judul rata kiri */
.trip-title {
    font-size: 1rem;
    font-weight: 700;
    margin: 6px 0 6px 0;
    color: #013b39;
    text-align: left;
    margin-right: 1rem;
    margin-left: 0rem;
}

/* Deskripsi singkat */
.trip-desc {
    font-size: 1rem;
    color: #5a5a5a;
    margin-bottom: 12px;
    margin-left: 4px;
    line-height: 1.4;
    text-align: left;
    margin-right: 1rem;
    margin-left: 0rem;
}

.trip-location {
  font-size: 1px;
  color: #666;
  margin-bottom: 14px;
  display: flex;
    gap: 6px;
    align-items: center;
  }  

.price-text {
  font-size: 16px;
  font-weight: 700;
  color: #0070f3;
  margin-bottom: 1rem;
}

.btn-view {
  display: inline-block;
  background: #0a74ff;
  padding: 10px 20px;
  border-radius: 10px;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  transition: .2s;
  margin-top: 10px;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.8rem;
}


.btn-view:hover {
  background: #005bd1;
}



.layanan h2 {
  margin-bottom: 6px;
  margin-top: 6px;
  font-size: 1.8rem;
}

.layanan p {
  margin-bottom: 6px;
    margin-top: 6px;
  color: #555;
}

.card {
  background-color: #fff;
  text-align: center;
  padding: 1.2rem;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(255, 175, 175, 0.05);
  transition: transform 0.2s;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}



.destination-container {
  display: flex;
  gap: 15px;
  padding: 10px;
  width: 100%;
  max-width: calc(100% - 6rem);
  margin: 0 auto;
}



.destination {
  flex: 1;
  position: relative;
  height: 500px;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.5s ease;
}

.destination img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
}

.destination.active {
  flex: 3;
  overflow: visible; /* Pastikan tombol tidak terpotong */
}

.destination .info {
  position: absolute;
  bottom: 15px;
  left: 15px;
  color: white;
  font-size: 1.2rem;
  font-weight: bold;
  text-shadow: 1px 1px 4px rgba(0,0,0,0.6);
}

.destination .subtext {
  font-size: 0.8rem;
  font-weight: normal;
}
/* MOBILE */
@media (max-width: 768px) {

  .destination-container {
    flex-direction: column;
    align-items: center;
    gap: 26px;
    padding: 10px;
    max-width: 100%;
  }

  .destination {
    width: 100% !important;
    height: 230px !important;   /* ← FIX PERSEGI PANJANG */
    max-width: 390px;
  }

  .destination img {
    height: 100%;
    border-radius: 14px;
    object-fit: cover;
  }
}

/* DESKTOP */
@media (min-width: 769px) {
  .destination-container {
    overflow-x: visible;
  }

  .destination {
    height: 500px;
  }
}


.btn-lihat-semua {
  display: inline-block;
  padding: 12px 30px;
  background: #08424D;
  color: white;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.3px;
  transition: all 0.3s ease;
}

.btn-lihat-semua:hover {
  background: #cc5200;
  transform: translateY(-2px);
}



/* ========== FIX GRID TOUR KATEGORI ========== */
/* Default Mobile → 2 kolom */

.tour-kategori {
  padding: 20px 20px;
  background: #f8fcfd;
}

.tour-kategori h2 {
  color: #08424D;
  font-weight: 700;
  margin-bottom: 30px;
}

.kategori-container {
  display: grid;
  width: 100%;
  padding: 10px 10px;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  justify-items: center;
  align-items: stretch;

  transition: all 0.3s ease-in-out;
}

.kategori-card {
  width: 100%;
  background: white;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  text-align: center;
  padding: 0.5rem 0.5rem; /* memberi jarak kiri kanan */
  transition: transform 0.3s ease, opacity 0.4s ease;
  opacity: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;

}

.kategori-card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  display: block;
}

.kategori-card:hover {
  transform: translateY(-5px);
}

.kategori-card h4, .kategori-card h3 {
  margin-top: 5px;
  color: #002b36;
}

.kategori-card p {
  color: #08536b;
  font-size: 0.9rem;
}

.hidden {
  display: none;
}

.btn-load-more {
  background-color: #08424D;
  color: white;
  padding: 10px 30px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1rem;
  transition: background 0.3s;
}
.btn-load-more:hover {
  background-color: #cc5200;
}



.kategori-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 5px;
}

/* Tablet → 3 kolom */
@media (min-width: 768px) {
    .kategori-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Desktop → 6 kolom */
@media (min-width: 1200px) {
    .kategori-grid {
        grid-template-columns: repeat(6, 1fr);
        max-width: 1400px;
        margin: 0 auto;
}
}

@media(max-width: 768px) {
    .section-container {
        max-width: calc(100% - 2rem);
    }
    }

/* ========== ALASAN KENAPA HARUS PILIH ========== */

.kenapa-harus-pilih {
  background: #f8fcfd;
  padding: 60px 20px;
}

.kenapa-harus-pilih h2 {
  color: #08424D;
  font-weight: 700;
}

.kenapa-harus-pilih h2 span {
  color: #FF7B00;
}

.alasan-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  justify-items: center;
  text-align: center;
  margin-top: 30px;
}

.alasan-card {
  background: white;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  width: 100%;
  max-width: 280px;
}

.alasan-card:hover {
  transform: translateY(-6px);
}

.alasan-card img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-bottom: 1rem;
}

.alasan-card h4 {
  color: #08424D;
  font-weight: 600;
}

.alasan-card p {
  color: #08536b;
  font-size: 0.9rem;
  margin-top: 8px;
}

.testimonial-section {
      max-width: 1200px;
      margin: 0 auto;
      padding: 60px 20px;
      text-align: center;
    }

.testimonial-section h2 {
      font-size: 2rem;
      margin-bottom: 30px;
      color: #333;
    }

.carousel {
  display: flex !important;
  flex-wrap: nowrap;
  gap: 20px;
  overflow-x: visible;
  justify-content: center;
}

.carousel-item {
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  min-width: 300px;
  max-width: 300px;
  flex: none;
  scroll-snap-align: start;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.carousel-item video {
  width: 100%;
  height: 380px;
  object-fit: cover;
}

.caption {
  padding: 15px;
  font-size: 1rem;
  color: #555;
}

@media (max-width: 768px) {
  .carousel {
    overflow-x: auto !important;
    scroll-snap-type: x mandatory;
    gap: 16px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .carousel-item {
    flex: 0 0 100%;
    width: 100%;
    height: 70vh;
    scroll-snap-align: center;
  }

}

.mute-icon {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(0,0,0,0.45);
  color: white;
  padding: 8px 10px;
  border-radius: 50%;
  pointer-events: none;
  font-size: 0.9rem;
}

@media(max-width: 480px) {
  .carousel-item {
    flex: 0 0 200px;
    width: 200px;
    height: 380px;
  }
}

/* REVIEW*/

/* Container keseluruhan */
.video-carousel-container {
    position: relative;
    width: 100%;
    max-width: 1400px;       /* >> batas kanan–kiri */
    margin: 0 auto;         /* biar center */
    overflow: hidden;
    padding: 0 10px;        /* jarak sisi kiri–kanan */
}

/* Wrapper isi carousel */
.video-carousel {
    display: flex;
    gap: 20px;
    transition: transform 0.4s ease;
}

/* Setiap slide video */
.video-slide {
    min-width: 33.33%; /* tampil 3 video sekaligus */
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    
}

/* Videonya */
.video-slide video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
    border-radius: 20px;
}

/* Tombol geser kiri/kanan */
.btn-prev, .btn-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    color: #fff;
    border: none;
    padding: 10px 14px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    z-index: 10;
}

.btn-prev { left: -5px; }
.btn-next { right: -5px; }

/* ------- MOBILE: FULLSCREEN VIDEO ------- */
/* MOBILE FIX */
@media (max-width: 768px) {
    .video-carousel-container {
        padding: 0;
    }

    .video-carousel {
        gap: 0; /* wajib biar tidak kepotong */
    }

    .video-slide {
        min-width: 100%;
        height: 100vh;          /* biar 1 layar penuh */
    }

    .video-slide video {
        width: 100%;
        height: 100%;
        object-fit: cover;      /* biar tidak ketarik */
    }

    .btn-prev { left: 10px; }
    .btn-next { right: 10px; }
}





/* 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;
    }
 }



/* Card khusus kategori */
/* Wrapper untuk card kategori */
.kategori-card-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 16px;
  height: 70px;           /* FIXED HEIGHT */
  align-items: center;
  margin-top: 30px;
  padding: 0 0; /* memberi jarak kiri kanan */
}

.trip-card-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 16px;
    margin-top: 20px;
    padding: 3rem 3rem;  /* NGATUR BATAS KANAN KIRI TRIP CARD */
    justify-content: space-between; /* ini memastikan harga tetap di bawah */
    height: 100%;
}

.trip-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.trip-link {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.trip-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}

.trip-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* <– BIKIN HARGA NEMPEL DI BAWAH */
    padding: 14px 16px;
}

.trip-price-box {
    margin-top: auto; /* <– MEMAKSA TURUN KE PALING BAWAH */
    display: flex;
    align-items: center;
    gap: 8px;
}


/* Saat width kecil → 2 kolom */
@media (max-width: 768px) {
  .trip-card-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

.trip-card {
    background: white;
    border-radius: 16px;
    padding-bottom: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.trip-card img {
    width: 100%;
    height: 170px;
    object-fit: cover;
}

.trip-card .title {
    font-size: 18px;
    font-weight: 700;
    margin: 12px 16px 4px 16px;
}

.trip-card .judul {
    font-size: 18px;
    font-weight: 700;
    margin: 12px 16px 4px 16px;
}

.trip-card .price {
    margin-left: 16px;
    font-size: 16px;
    color: #006b5d;
    font-weight: 600;
}

.tab-btn {
   width: 200px;
    padding: 12px 0;
    border-radius: 12px;
    border: 2px solid #d8d8d8;
    font-size: 1rem;
    font-weight: 600;
    background: #fff;
}

.tab-btn.active {
    background: #003b45;
    color: white;
}


.trip-link {
  text-decoration: none !important;
  color: inherit;
}

.trip-title,
.trip-location {
  text-decoration: none !important;
}
/* === Fix Price Alignment Desktop === */
.trip-price-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;   /* 🔥 Harga selalu turun ke paling bawah */
    gap: 8px;
}
.price-promo {
    color: #FF6600;
    font-weight: 700;
    font-size: 1.2rem;
}
.price-coret {
 text-decoration: line-through;
    color: #888;
    font-size: 0.9rem;
}

.trip-description {
  font-size: 0.7rem;
  color: #4b4d4f;
  min-height: 40px;   /* ✔ supaya semua deskripsi tinggi sama */
  flex-grow: 1;   /* 🔥 Deskripsi mengisi area fleksibel */
}

/* === Mobile Adjustments === */
@media (max-width: 768px) {
.trip-card {
padding: 18px !important;
border-radius: 18px;
}
.trip-title {
font-size: 1.05rem !important;
line-height: 1.3;
}
.trip-info {
padding: 4px 0;
}
.trip-price-box {
margin-top: 8px;
font-size: 0.8rem;
}
.price-promo {
font-size: 1rem;
}
.price-coret {
font-size: 0.8rem;
}
}

.destination .btn-destination {
    position: absolute;
    bottom: 20px;                /* Atur jarak dari bawah */
    left: 50%;
    transform: translateX(-50%);
    background: #0f3c49;
    color: #fff;
    padding: 10px 20px;
    border-radius: 10px;
    font-size: 14px;
    text-decoration: none;
    opacity: 0;                 /* Awalnya transparan */
    transition: opacity .3s ease, transform .3s ease;
    z-index: 10; /* WAJIB supaya tidak ketutup gambar */
}

.destination:hover .btn-destination {
    opacity: 1;                 /* Muncul saat hover */
    transform: translate(-50%, -5px);
}

