body {
  font-family: "Poppins", sans-serif;
  overflow-x: hidden;
  padding-right: 0 !important;
  background-color: #ffffff;
}

:root {
  /* Palet Warna Bali Premium */
  --primary-green: #15803D;   /* Hutan Tropis */
  --accent-gold: #F59E0B;     /* Emas Tropis */
  --dark-text: #1F2937;       /* Abu Tua/Gapura */
  --nav-box-bg: #F0FDF4;      /* Hijau Sangat Muda */
}

.navbar-custom {
  position: fixed;
  top: 15px;
  width: 100%;
  z-index: 1050;
}

.logo-img {
  height: 80px;
  width: auto;
}

.nav-box-container {
  background: var(--nav-box-bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--primary-green);
  padding: 12px 40px;
  border-radius: 0px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  flex-grow: 1;
  margin: 0 30px;
  display: flex;
  justify-content: center;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 45px;
  margin: 0;
  padding: 0;
  align-items: center;
}

.nav-links li a {
  text-decoration: none;
  color: var(--dark-text);
  font-size: 1.05rem;
  font-weight: 600;
  text-transform: uppercase;
  transition: 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
}

/* Effect saat Hover & Active (About, Home, dll) */
.nav-links li a:hover,
.nav-links li a:active,
.nav-links li a.active {
  color: var(--primary-green);
}

/* Garis bawah emas kecil saat hover/active */
.nav-links li a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: var(--accent-gold);
  transition: width 0.3s ease;
}

.nav-links li a:hover::after {
  width: 100%;
}

.dropdown-custom {
  position: relative;
}

.dropdown-custom i {
  transition: transform 0.3s ease;
  font-size: 0.8rem;
}

.dropdown-custom:hover i {
  transform: rotate(180deg);
  color: var(--primary-green);
}

.dropdown-menu-custom {
  position: absolute;
  top: 120%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: white;
  list-style: none;
  padding: 15px;
  border-radius: 0px; /* Sesuai selera Hard Edge user */
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  border-top: 3px solid var(--primary-green);
}

.dropdown-custom:hover .dropdown-menu-custom {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-menu-custom li a {
  font-size: 0.95rem;
  padding: 10px;
  text-transform: capitalize;
  border-bottom: 1px solid #f8f9fa;
  color: var(--dark-text);
}

.dropdown-menu-custom li a:hover {
  background-color: var(--nav-box-bg);
  color: var(--primary-green);
  padding-left: 15px;
}

/* Tombol Reservasi dengan Gradasi Hijau Hutan ke Emas Matahari */
.btn-reservasi {
  background: linear-gradient(135deg, var(--primary-green) 0%, #116a32 100%);
  color: #fff !important;
  padding: 12px 28px;
  border-radius: 0px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  display: inline-block;
  white-space: nowrap;
  border: 1px solid var(--primary-green);
  box-shadow: 0 4px 15px rgba(21, 128, 61, 0.2);
  transition: all 0.4s ease;
}

.btn-reservasi:hover {
  background: var(--accent-gold);
  border-color: var(--accent-gold);
  box-shadow: 0 6px 20px rgba(245, 158, 11, 0.3);
  transform: translateY(-2px);
}

/* --- Responsive Mobile --- */
@media (max-width: 991.98px) {
  /* NAVBAR */
  body {
    margin: 0;
    padding: 0;
    padding-top: 70px;
  }
  header {
    margin-top: 20px;
  }
  .navbar-custom {
    background: #FDF5E6;
    padding: 20px 0;
    transition: 0.3s ease;
    position: fixed;
  }
  body.offcanvas-open,
  body {
    padding-right: 0 !important;
  }
  /* LOGO */
  .logo-img {
    height: 60px;
  }
  /* HAMBURGER */
  .hamburger-btn {
    background: transparent;
    border: none;
    padding: 0;
  }
  .hamburger-btn {
    background: transparent;
    border: none;
    padding: 0;
    display: block;
  }
  .hamburger-btn .bar {
    width: 28px;
    height: 3px;
    background: #15803D;
    margin: 5px 0;
    border-radius: 2px;
  }
  /* OFFCANVAS */
.custom-offcanvas{
    background:#15803D;
    height:100vh !important;
}
.custom-offcanvas{
    position: fixed;
    top: 80px;  
    left: 0;
    right: 0;
    bottom: 0;  
    background: #15803D;
    z-index: 9990;
    overflow-y: auto;
}
/* isi menu */
.offcanvas-body{
    padding: 20px 0;
}
/* cegah body scroll */
body.offcanvas-open{
    overflow: hidden;
}
.mobile-nav-links{
    min-height:100%;
}
body.offcanvas-open{
    overflow:hidden;
}
  /* MOBILE MENU */
  .mobile-nav-links li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }
  .list-unstyled {
    padding-left: 0;
    list-style: none;
    margin-top: 50px;
}
  .nav-link-item {
    display: block;
    padding: 20px 20px;
    color: white;
    font-size: 18px;
    text-decoration: none;
  }
  .nav-link-item:hover {
    color: white;
  }
  /* SUB MENU */
  .submenu-mobile li a {
    color: white;
    padding: 20px 0;
    display: block;
    font-size: 16px;
  }
  .navbar-custom {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;

  }
  .fixed-top,
  .sticky-top,
  .navbar {
    padding-right: 0 !important;
  }
  .submenu-mobile {
    margin-top: -10px;
}

}
:root {
    --jazz-green: #15803D;    /* Hutan Tropis */
    --jazz-gold: #F59E0B;     /* Emas Tropis */
    --jazz-dark: #1F2937;     /* Abu Tua Premium */
    --card-bg-dark: rgba(17, 24, 39, 0.7); /* Background kartu lebih gelap */
}

.hero-section {
    position: relative;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.8)), url('/images/bg.png') no-repeat center center;
    background-size: cover;
    min-height: 100vh;
    overflow: hidden;
    padding: 100px 0;
    background-attachment: fixed; /* Efek Parallax */
}

/* Glow Putih Pojok Kiri (Pelindung Logo) - Tetap */
.logo-glow-top {
    position: absolute;
    top: 0; left: 0; width: 450px; height: 450px;
    background: radial-gradient(circle at 0% 0%, rgba(255,255,255,0.4) 0%, rgba(255,255,255,0) 70%);
    z-index: 2;
}

.logo-glow-bottom {
    position: absolute;
    bottom: 0; left: 0; width: 400px; height: 400px;
    background: radial-gradient(circle at 0% 100%, rgba(255,255,255,0.3) 0%, rgba(255,255,255,0) 70%);
    z-index: 2;
}

/* Floating Elements - Tetap */
.floating-element {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 12px 20px;
    border-radius: 50px;
    color: white;
    font-weight: 700;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(255,255,255,0.15);
    z-index: 4;
    animation: float 4s ease-in-out infinite;
}

.element-1 { top: 20%; left: 8%; }
.element-2 { top: 35%; right: 8%; animation-delay: 2s; }

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* Typography (UKURAN DIKECILKAN) */
.badge-premium {
    background: var(--jazz-green);
    color: white;
    padding: 8px 20px;
    font-weight: 800;
    letter-spacing: 2px;
    font-size: 0.7rem;
    display: inline-block;
}

.hero-title-refined {
    /* Font size dikecilkan agar lebih proporsional */
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 900;
    color: white;
    line-height: 1.1;
    margin-bottom: 25px;
}

.highlight-text {
    color: var(--jazz-gold);
    text-shadow: 0 0 25px rgba(245, 158, 11, 0.4);
}

.hero-subtitle-refined {
    /* Font size dikecilkan agar elegan */
    font-size: 1.1rem;
    max-width: 700px;
    color: rgba(255,255,255,0.85);
    margin-bottom: 40px;
    line-height: 1.7;
}

/* Premium Info Card (WARNA DISESUAIKAN) */
.info-premium-card {
    background: var(--card-bg-dark); /* Warna lebih gelap agar tidak menyatu */
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.15); /* Border dipertegas */
    padding: 25px 15px;
    text-align: center;
    transition: 0.3s ease-in-out;
    height: 100%;
}

.info-premium-card:hover {
    background: rgba(17, 24, 39, 0.9); /* Sedikit lebih gelap saat hover */
    transform: translateY(-8px);
    border-color: var(--jazz-gold); /* Border berubah emas saat hover */
}

.info-premium-card i {
    font-size: 1.8rem;
    color: var(--jazz-gold);
    display: block;
    margin-bottom: 12px;
}

.info-premium-card h6 {
    font-weight: 800;
    margin-bottom: 5px;
    color: white;
}

.info-premium-card p {
    font-size: 0.75rem;
    margin: 0;
    opacity: 0.7;
    color: #e0e0e0;
}

/* Tombol - Tetap */
.btn-main-green {
    background: var(--jazz-green);
    color: white;
    padding: 16px 35px;
    text-decoration: none;
    font-weight: 800;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    transition: 0.3s;
}

.btn-main-green:hover {
    background: var(--jazz-gold);
    color: white;
}

.btn-outline-white {
    border: 2px solid white;
    color: white;
    padding: 16px 35px;
    text-decoration: none;
    font-weight: 800;
    font-size: 0.9rem;
    transition: 0.3s;
}

.btn-outline-white:hover {
    background: white;
    color: var(--jazz-dark);
}

/* LEKUKAN PUTIH DIHAPUS, TIDAK ADA CSS SHAPE DIVIDER LAGI */

/* Responsive Mobile */
@media(max-width: 768px) {
    .hero-section {
        height: auto;
        padding: 140px 20px 80px;
    }
    
    .hero-title-refined {
        font-size: 2.2rem;
    }
    
    .info-premium-card {
        padding: 20px 10px;
    }
}

/* section2 */

/* --- SCROLL & ACTION BUTTONS (Kotak) --- */
.btn-scroll-jazz {
    border-radius: 0 !important;
    border: 1px solid #1a1a1a;
    background: transparent;
    color: #1a1a1a;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.btn-scroll-jazz:hover {
    background: #1a1a1a;
    color: #fff;
}

.btn-jazz-primary {
    background-color: var(--jazz-primary);
    color: #fff;
    border-radius: 0 !important;
    border: none;
    letter-spacing: 2px;
    font-size: 13px;
    transition: 0.3s;
}

.btn-jazz-primary:hover {
    background-color: #116631;
    color: #fff;
    letter-spacing: 3px;
}

/* Clean Scrollbar */
.destination-scroll {
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.destination-scroll::-webkit-scrollbar { display: none; }

/* section3 */
/* --- MODERN MINIMALIST STYLE (image_f49aaf.png) --- */
.about-modern h1 {
    font-family: 'Inter', sans-serif; /* Pastikan import font Inter atau gunakan sans-serif standar */
    color: #111;
}

.about-modern .rounded-4 {
    border-radius: 0rem !important;
    -webkit-border-radius: 0rem !important;
    -moz-border-radius: 0rem !important;
    -ms-border-radius: 0rem !important;
    -o-border-radius: 0rem !important;
}

.about-modern .btn-dark {
    background-color: #000 !important;
    border: none;
    border-radius: 0rem !important;
    padding: 1.2rem 2.5rem;
    transition: all 0.3s ease;
    -webkit-border-radius: 0rem !important;
    -moz-border-radius: 0rem !important;
    -ms-border-radius: 0rem !important;
    -o-border-radius: 0rem !important;
}

.about-modern .btn-dark:hover {
    transform: scale(1.05);
    background-color: #222 !important;
}

/* Background light for cards */
.about-modern .bg-light {
    background-color: #F8F9FA !important;
}

/* Text Accent */
.text-success {
    color: #15803D !important;
}

/* section 4 */
/* --- SECTION BACKGROUND --- */
.destination-section-premium {
    position: relative;
    background-image: url('https://images.unsplash.com/photo-1476514525535-07fb3b4ae5f1?q=80&w=1600');
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Efek Paralaks Halus */
    z-index: 1;
}

/* Overlay Gelap & Blur */
.destination-section-premium::before {
    content: "";
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-color: rgba(0, 0, 0, 0.55); /* Menggelapkan agar teks putih terbaca */
    backdrop-filter: blur(8px); /* Efek Blur */
    z-index: 1;
}

/* Custom Green Jazz Tour */
.bg-jazz-primary {
    background-color: #15803D !important;
}

.text-jazz-primary {
    color: #15803D !important;
}

.btn-jazz-primary {
    background-color: #15803D !important;
    border-color: #15803D !important;
    color: white !important;
}

.btn-jazz-primary:hover {
    background-color: #166534 !important;
}

/* Hard Edge & Shadows */
.rounded-0 { border-radius: 0 !important; }
.shadow-lg { box-shadow: 0 1rem 3rem rgba(0,0,0,0.3) !important; }

/* Transisi Hover Kartu Ramping */
.card {
    transition: transform 0.3s ease;
}
.card:hover {
    transform: translateY(-10px);
}

/* section5 */
/* hover effect */
section .shadow-sm:hover {
    transform: translateY(-5px);
    transition: 0.3s;
}
.card-jazz {
    background: linear-gradient(135deg, #ffffff, #f8f9fa);
    border: 1px solid #f1f1f1;
    transition: 0.3s;
}

.card-jazz:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}
/* section 6 */
.blog-section-jazz {
    background-color: var(--jazz-bg) !important;
    border-top: 1px solid #d1e7dd;
    border-bottom: 1px solid #d1e7dd;
}

.blog-card-large {
    height: 100%;
    min-height: 420px;
}

.blog-card-large img {
    transition: 0.4s;
}

.blog-card-large:hover img {
    transform: scale(1.05);
}

/* OVERLAY */
.blog-card-large .overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
}

/* SMALL CARD */
.blog-card {
    background: #fff;
    border: 1px solid #f1f1f1;
    transition: 0.3s;
}

.blog-card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
}

/* HOVER */
.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}
/* section 7 */
/* SCROLL HIDE */
.testimonial-scroll::-webkit-scrollbar {
    display: none;
}

/* CARD */
.testi-card-clean {
    min-width: 260px;
    background: #fff;
    padding: 20px;
    border: 1px solid #eee;
    cursor: pointer;
    transition: 0.3s;
}

.testi-card-clean img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

/* HOVER */
.testi-card-clean:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* POPUP BACKDROP */
.testi-popup {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 999;
}

/* POPUP CARD */
.popup-box {
    background: #fff;
    padding: 30px;
    max-width: 420px;
    width: 90%;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    animation: scaleIn 0.3s ease;
}

/* ANIMATION */
@keyframes scaleIn {
    from {
        transform: scale(0.9);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* MOBILE */
@media(max-width:768px){
    .testi-card-clean {
        min-width: 85%;
    }
}
/* section 8 */
/* IMAGE STYLE (NO RADIUS - sesuai style kamu) */
.faq-img-main {
    height: 280px;
    object-fit: cover;
}

.faq-img-small {
    height: 130px;
    object-fit: cover;
}

/* ACCORDION STYLE */
.accordion-button {
    box-shadow: none !important;
    padding: 18px 0;
    font-size: 15px;
}

.accordion-button:not(.collapsed) {
    background: transparent;
    color: #15803D;
}

.accordion-body {
    padding: 0 0 15px 0;
    font-size: 14px;
}

/* MOBILE CENTER */
@media(max-width:768px){
    .faq-img-main,
    .faq-img-small {
        height: 200px;
    }

    .col-lg-6 {
        text-align: center;
    }
}
/* halaman about */
.bg-jazz-light {
    background: linear-gradient(to bottom, #f8fafc, #eef6f0);
}

/* FEATURE BOX */
.feature-box {
    display: flex;
    gap: 15px;
    align-items: start;
    padding: 18px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    transition: 0.3s;
}

.feature-box i {
    font-size: 20px;
    margin-top: 3px;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}
/* gallery */
.gallery-jazz {
    background: linear-gradient(to bottom, #f9fafb, #eef6f2);
}

/* CARD */
.gallery-card {
    overflow: hidden;
    cursor: pointer;
    position: relative;
}

.gallery-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: 0.4s;
}

/* HOVER */
.gallery-card:hover img {
    transform: scale(1.1);
    filter: brightness(0.8);
}

/* POPUP */
.gallery-popup {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.9);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.gallery-popup.active {
    display: flex;
}

.gallery-popup img {
    max-width: 90%;
    max-height: 90%;
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 35px;
    color: white;
    cursor: pointer;
}
/* blog */
/* BLOG CARD BASE */
.blog-card {
    height: 100%;
}

/* IMAGE FIX */
.blog-card img {
    height: 100%;
    object-fit: cover;
    min-height: 220px;
}

/* OVERLAY FIX (INI YANG BIKIN NEMPEL) */
.blog-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.75), rgba(0,0,0,0.1));
}

/* HOVER EFFECT */
.blog-card img {
    transition: 0.4s;
}

.blog-card:hover img {
    transform: scale(1.05);
}

/* REMOVE RADIUS */
.card, .blog-card {
    border-radius: 0 !important;
}
/* header tour packages */
/* Media Query untuk layar HP (Mobile) */
@media (max-width: 768px) {
    .header-tour-packages {
        /* Reset padding agar container bisa rata tengah dengan benar */
        padding-left: 0 !important; 
        justify-content: center !important;
        text-align: center !important;
        height: 300px; /* Opsional: Memperpendek tinggi header di mobile */
    }

    .text-tour {
        font-size: 2.5rem; /* Mengecilkan ukuran font agar tidak terpotong */
    }

    .secondary-text-tour {
        font-size: 1rem;
    }
}
/* alltrips */
