* {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

body {
    background: #f5f5f5;
    font-family: 'Poppins', sans-serif;
}
.topbar{
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);

  display: flex;
  justify-content: space-between;
  align-items: center;

  width: 90%;
  padding: 10px 20px;

  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(12px);

  border-radius: 50px;

  z-index: 10;

  color: white;
  font-size: 13px;
}

/* kiri */
.topbar-left span{
  font-weight: 400;
  letter-spacing: 0.5px;
}

/* kanan */
.topbar-right{
  display: flex;
  align-items: center;
  gap: 20px;
}

/* social */
.social-icons{
  display: flex;
  gap: 12px;
}

.social-icons a{
  width: 28px;
  height: 28px;

  display: flex;
  align-items: center;
  justify-content: center;

  border: 1px solid #ccc;
  border-radius: 50%;

  color: #111;
  font-size: 13px;

  transition: 0.3s;
}

.social-icons a:hover{
  background: #111;
  color: white;
}

/* bahasa */
.language{
  display: flex;
  align-items: center;
  gap: 6px;

  cursor: pointer;
}

/* arrow kecil */
.arrow-down{
  width: 6px;
  height: 6px;

  border-right: 2px solid #333;
  border-bottom: 2px solid #333;

  transform: rotate(45deg);
  margin-top: -2px;
}
/* default sembunyi */
.mobile-lang-center{
  display: none;
}

/* MOBILE */
@media(max-width:768px){

  .mobile-lang-center{
    display: block;

    position: absolute;
    left: 70%;
    transform: translateX(-50%); /* 🔥 center beneran */

    top: 50%;
    transform: translate(-50%, -50%);
  z-index: 99999; /* 🔥 paling atas */
  }

  .mobile-lang-center .lang-selected{
    background: white;
    padding: 6px 12px;
    border-radius: 20px;

    display: flex;
    align-items: center;
    gap: 5px;

    font-size: 13px;
    color: #333;

    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
  }

  .mobile-lang-center .arrow-down{
    border-color: #333;
  }
  .lang-dropdown{
  z-index: 99999;
}

}
/* NAVBAR */
.navbar {
    position: fixed;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;

    display: flex;
    justify-content: space-between;
    align-items: center;

    z-index: 1000;
}

/* KIRI (LOGO BOX) */
.nav-left {
    display: flex;
    align-items: center;
    gap: 10px;

    background: white;
    padding: 10px 20px;
    border-radius: 50px;

    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.nav-left img {
    width: 40px;
}

.nav-left h3 {
    font-size: 16px;
    color:#474747;
}

.nav-left small {
    font-size: 10px;
    color: gray;
}
.navbar.show{
  top: 20px; /* 🔥 muncul */
}

/* TENGAH (MENU) */
.nav-center {
    display: flex;
    gap: 30px;

    list-style: none;

    padding: 15px 40px;
    border-radius: 50px;

    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(1px);

    border: 1px solid rgba(255,255,255,0.3);
}

.nav-center a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
}

/* KANAN (BUTTON) */
.nav-right a {
    background: rgba(0,0,0,0.4);
    color: white;
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    width: 40px;
}

.menu {
    display: flex;
    gap: 20px;
    list-style: none;
}

.menu a {
    color: white;
    text-decoration: none;
}

.btn {
    background: gold;
    padding: 10px 15px;
    text-decoration: none;
    color: black;
    border-radius: 5px;
}

/* HERO */
.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

/* HERO IMAGE */
.hero-bg img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;

    opacity: 0;
    transform: scale(1); /* awal */

    transition: opacity 0s ease-in-out;
}

/* GAMBAR AKTIF */
.hero-bg img.active {
    opacity: 1;
    animation: zoomEffect 5s ease-in-out;
}


/* ANIMASI ZOOM */
@keyframes zoomEffect {
    from {
        transform: scale(1);
    }
    to {
        transform: scale(1.1);
    }
}

/* OVERLAY */
.overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
}

/* CONTENT */
/* HERO CONTENT KIRI */
.hero-content {
    position: absolute;
    top: 50%;
    left: 80px;
    transform: translateY(-50%);
    color: white;
    max-width: 600px;
}

/* TAGLINE */
.tagline {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 14px;
    margin-bottom: 20px;
}

/* JUDUL BESAR */
.hero-content h1 {
    font-size: 50px;
    line-height: 1.2;
    font-weight: 700;
}
.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 55px;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: 1px;
}
/* BUTTON */
.btn-hero {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 25px;
    background: white;
    color: black;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
}

/* INFO BAWAH */
.hero-info {
    position: absolute;
    bottom: 40px;   /* nempel bawah */
    left: 80px;     /* posisi kiri */

    display: flex;
    gap: 20px;

    color: white;
    z-index: 2;     /* biar di atas gambar */
}

/* BOX INFO */
.info-box {
    display: flex;
    align-items: center;
    gap: 10px;
    max-width: 250px;
}
.info-box p {
    font-size: 14px;
    line-height: 1.4;
}

/* ICON */
.info-box span {
    font-size: 6px;
}
/* ICON BULAT */
.icon-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;

    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(1px);

    display: flex;
    justify-content: center;
    align-items: center;

    border: 1px solid rgba(255,255,255,0.3);
}

/* ICON */
.icon-circle i {
    color: white;
    font-size: 16px;
}
/* SIDEBAR */
.sidebar {
    position: fixed;
    top: 0;
    right: -100%;

    width: 80%;
    max-width: 320px;
    height: 100%;

    background: rgba(255,255,255,0.15); /* 🔥 transparan */
    backdrop-filter: blur(30px); /* 🔥 blur */

    z-index: 2000;
    padding: 20px;

    transition: right 0.4s ease;
}

.sidebar.active {
    right: 0;
}
/* HEADER */
.sidebar-header {
    display: flex;
    align-items: center;
    gap: 10px;

    margin-bottom: 30px;
}

/* LOGO */
.sidebar-header img {
    width: 40px;
}

/* TEXT */
.sidebar-header h3 {
    font-size: 14px;
}

.sidebar-header small {
    font-size: 10px;
    color: #666;
}

/* CLOSE */
.close-btn {
    width: 45px;
    height: 45px;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 18px;
    color: #555;

    cursor: pointer;

    border-radius: 50%; /* 🔥 BULAT */
    background: white;

    box-shadow: 0 5px 15px rgba(0,0,0,0.15);

    transition: 0.3s;
    backdrop-filter: blur(10px);
}

/* HOVER */
.close-btn:hover {
    background: #f0f0f0;
}
/* OVERLAY */
.overlay-menu {
    position: fixed;
    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    background: rgba(0,0,0,0.4);
    z-index: 1500;

    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
}

.overlay-menu.active {
    opacity: 1;
    visibility: visible;
}

/* MENU */
.sidebar ul {
    list-style: none;
    margin-top: 40px;
}

.sidebar li {
    display: flex;
    align-items: center;
    gap: 15px;

    padding: 10px 0;
    font-size: 18px;
    color: #fff;
}

/* ICON */
.sidebar i {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 2px solid #c5ccd6;

    display: flex;
    justify-content: center;
    align-items: center;
}
/* LINK DALAM SIDEBAR */
.sidebar a {
    display: flex;
    align-items: center;
    gap: 15px;

    text-decoration: none;
    color: inherit;
    width: 100%;
}
/* BOX OVAL */
.sidebar-logo-box {
    display: flex;
    align-items: center;
    gap: 10px;

    background: #fff;
    padding: 10px 18px;
    border-radius: 50px;

    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* LOGO */
.sidebar-logo-box img {
    width: 35px;
}

/* TEXT */
.sidebar-logo-box h3 {
    font-size: 14px;
    margin: 0;
    color:#555;
}

.sidebar-logo-box small {
    font-size: 10px;
    color: #666;
}

/* HEADER FLEX */
.sidebar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-bottom: 30px;
}
/* ACTIVE */
.sidebar li.active {
    color: #2da5f3;
}
/* MOBILE */
@media (max-width: 768px) {
  .navbar{
    top: 10px !important;
    opacity: 1 !important;
  }
  .topbar{
    display: none;
  }
    /* NAVBAR */
    .nav-center {
        display: none; /* sembunyikan menu */
    }

    .nav-right a {
        padding: 8px 15px;
        font-size: 12px;
    }

    .nav-left h3 {
        font-size: 14px;
    }

    /* HERO TEXT */
    .hero-content {
        left: 20px;
        right: 20px;
        max-width: 100%;
    }

    .hero-content h1 {
        font-size: 46px;
    }

    .tagline {
        font-size: 12px;
        padding: 6px 12px;
    }

    .btn-hero {
        padding: 10px 20px;
        font-size: 14px;
    }

    /* HERO INFO (JADI KE BAWAH) */
    .hero-info {
        flex-direction: column;
        gap: 10px;

        left: 20px;
        right: 20px;
        bottom: 20px;
    }

    .info-box {
        max-width: 100%;
    }

    /* ICON */
    .icon-circle {
        width: 35px;
        height: 35px;
    }

    .icon-circle i {
        font-size: 14px;
    }
    
    .mobile-extra{
  margin-top: 10px;
  text-align: center;
}

/* social */
.mobile-social{
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 15px;
  margin-top: 70px;
  margin-bottom: 20px;
}

.mobile-social a{
  width: 50px;
  height: 20px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 20%;
  background: none;
  color: white;

  font-size: 14px;
}

/* bahasa */
.mobile-lang{
  font-size: 13px;
  color: #555;
}
}
/* HAMBURGER */
.hamburger {
    display: none;

    font-size: 18px;
    color: #555; /* 🔥 icon gelap */

    cursor: pointer;

    padding: 10px 14px;
    border-radius: 50px;

    background: white; /* 🔥 putih */
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);

    transition: 0.3s;
}
html{
  scroll-behavior: smooth;
}
/* HOVER */
.hamburger:hover {
    background: #f5f5f5;
}
/* WRAPPER */
.language{
  position: relative;
  cursor: pointer;
  z-index: 9999;
}

/* BAGIAN YANG DIKLIK */
.lang-selected{
  display: flex;
  align-items: center;
  gap: 6px;
}

/* PANAH */
.arrow-down{
  width: 8px;
  height: 8px;
  border-right: 2px solid #333;
  border-bottom: 2px solid #333;
  transform: rotate(45deg);
  transition: 0.3s;
}

/* ROTATE */
.language.active .arrow-down{
  transform: rotate(-135deg);
}

/* DROPDOWN */
.lang-dropdown{
  position: absolute;
  top: calc(100% + 20px);
  right: 0;

  background: white;
  border-radius: 12px;
  min-width: 200px;

  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  padding: 10px 0;

  /* 🔥 INI KUNCI */
  max-height: 250px;   /* batas tinggi */
  overflow-y: auto;    /* scroll aktif */

  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);

  pointer-events: none;
  z-index: 99999;

  transition: all 0.3s ease;
  scroll-behavior: smooth;
}
.lang-dropdown::-webkit-scrollbar {
  width: 6px;
}

.lang-dropdown::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 10px;
}

.lang-dropdown::-webkit-scrollbar-thumb:hover {
  background: #999;
}
/* SAAT AKTIF */
.language.active .lang-dropdown{
  opacity: 1;
  visibility: visible;
  transform: translateY(0);

  pointer-events: auto; /* 🔥 aktif klik */
}

/* ITEM */
.lang-dropdown a{
  display: block;
  padding: 10px 16px;
  font-size: 13px;
  color: #333;
  cursor: pointer;
  transition: 0.2s;
}

.lang-dropdown a:hover{
  background: #f5f5f5;
}

/* GARIS */
.lang-dropdown a:not(:last-child){
  border-bottom: 1px solid #eee;
}

/* MOBILE */
@media (max-width: 768px) {

    .nav-center {
        display: none;
    }

    .hamburger {
        display: block;
    }

    .nav-right a {
        display: none; /* sembunyikan tombol */
    }
}

/* CONTAINER */
.about {
    padding: 100px 50px;
    background: #fff;
}

.about-container {
    display: flex;
    align-items: flex-start;
    gap: 50px;
}

/* KIRI */
.about-left {
    flex: 1;
    text-align: center;
}

.about-logo {
    width: 250px; /* 🔥 lebih besar */
    margin-top: 10px;
}

/* KANAN */
.about-right {
    flex: 2;
}

/* JUDUL */
.about h2 {
    font-family: 'Playfair Display', serif;
    font-size: 34px;
    margin-bottom: 20px;
}

.about h2::after {
    content: "";
    display: block;
    width: 100px;
    height: 4px;
    background: gold;
    margin-top: 10px;
}

/* TEXT */
.about-text {
    text-align: justify;
    line-height: 1.8;
    color: #555;
    margin-bottom: 25px;
    font-family: 'Poppins', sans-serif;
}
@media (max-width: 768px) {

    /* LAYOUT */
    .about-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    /* LOGO (LEBIH BESAR 🔥) */
    .about-logo {
        width: 180px; /* 🔥 dibesarin */
        margin-bottom: 20px;
    }

    /* JUDUL */
    .about h2 {
        font-size: 28px;
        font-family: 'Playfair Display', serif;
    }

    /* TEXT (JUSTIFY 🔥) */
    .about-text {
        text-align: justify; /* 🔥 rata kanan kiri */
        font-size: 15px;
        line-height: 1.8;
        
        padding: 0 1px;
    }
     .about h2::after {
        margin: 12px auto; /* 🔥 ini bikin ke tengah */
    }

}
/* SECTION */
.destinasi {
    height: 700px;
    color: white;
}

/* ================= ATAS ================= */
.dest-top {
    position: relative;
    z-index: 10;

    background: #0b0b0b;
    padding: 80px;

    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* TEXT KIRI */
.dest-text {
    max-width: 550px;
}

.dest-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
}

.dest-text p {
    margin-top: 15px;
    color: #ccc;
    line-height: 1.7;
}

/* BUTTON KANAN */
.btn-trip {
    padding: 14px 30px;
    background: white;
    color: black;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    white-space: nowrap;
}

/* ================= BAWAH ================= */
.dest-bottom {
    position: relative;
    height: 600px;

    background: url('foto/d1.jpg') center/cover no-repeat;
    transition: background-image 0.6s ease;
}

/* GRID */
.dest-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    height: 100%;
}

/* ITEM */
.dest-item {
    position: relative;
    border-left: 1px solid rgba(255,255,255,0.2);
    cursor: pointer;
}

/* TEXT DI ATAS GAMBAR */
.dest-item::before {
    content: "VISIT";
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 12px;
    opacity: 0.7;
    z-index: 3;
}

.dest-item::after {
    content: attr(data-title);
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    z-index: 3;
}

/* ================= KOTAK HITAM ================= */
.dest-item {
    position: relative;
    border-left: 1px solid rgba(255,255,255,0.2);
    cursor: pointer;
    overflow: hidden;
    
}

/* KOTAK HITAM MASING2 */
.dest-item .box {
    position: absolute;
    top: -120px; /* 🔥 awal di atas */
    left: 0;
    width: 100%;
    height: 120px;

    background: #0b0b0b;
    transition: 0.4s ease;
    z-index: 1;
    
}

/* HOVER TURUN */
.dest-item:hover .box {
    top: 0;
}
.dest-highlight span {
    font-size: 12px;
    opacity: 0.7;
}

.dest-highlight h3 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
}
/* TEXT ANIMASI */
.dest-highlight h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    opacity: 0;
    transform: translateY(20px);
    transition: 0.4s ease;
}

/* ACTIVE TEXT */
.dest-highlight.show h3 {
    opacity: 1;
    transform: translateY(0);
}

/* BACKGROUND SMOOTH + ZOOM */
.destinasi {
    background-size: 110%; /* zoom awal */
    transition: background-image 0.6s ease, transform 0.6s ease;
  
}
.dest-bottom {
    position: relative;
    height: 480px;

    background: url('foto/d1.jpg') center/cover no-repeat;

    transition: background-image 0.5s ease, transform 0.6s ease;
    overflow: hidden;
}

/* efek zoom halus */
.dest-bottom.zoom {
    transform: scale(1.05);
}

/* BACKGROUND 1 */
.dest-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background: url('foto/d1.jpg') center/cover no-repeat;

    transition: opacity 0.6s ease, transform 0.8s ease;
}

/* BACKGROUND 2 (buat animasi pindah) */
.dest-bg.next {
    opacity: 0;
    transform: scale(1);
}

/* SAAT AKTIF */
.dest-bg.show {
    opacity: 1;
    transform: scale(1);
}
@media (max-width: 768px) {
    .destinasi {
      margin-bottom: 25px;
    }
    .dest-top {
        display: flex !important;
        flex-direction: column;
        text-align: center;
        padding: 40px 20px;
        gap: 0px;
    }

    .dest-text h2 {
        font-size: 24px;
    }

    .dest-text p {
        font-size: 14px;
    }

    .btn-trip {
        font-size: 14px;
        padding: 10px 20px;
    }


    /* 🔥 RESET AREA */
    .dest-bottom {
        height: auto !important;
        background: none !important;
        padding: 0 !important;
        margin: 0 !important;
        overflow: hidden;
        
    }

    /* 🔥 GRID FULL */
    .dest-grid {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 33.33vh; /* 3 baris */
        gap: 0 !important;
        width: 100%;
    }
    

    /* 🔥 ITEM */
    .dest-item {
        position: relative;
        border-radius: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
        overflow: hidden;
        
        border: nonw;

        
    }

    /* 🔥 OVERLAY GELAP */
    .dest-item::before {
        content: none;
        position: absolute;
        inset: 0;
        background: rgba(0,0,0,0.4);
        z-index: 1;
    }

    /* 🔥 TEXT TENGAH */
    .dest-item::after {
        content: "VISIT \A " attr(data-title);
        white-space: pre;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        font-family: 'Playfair Display', serif;
        font-size: 18px;
        text-align: center;
        color: white;
        z-index: 2;
    }
    
}

body {
    font-family: 'Inter', sans-serif;
}

/* ================= SECTION ================= */
.map-section {
    padding:10px 10px 80px;
    background: #ffffff;
}

/* ================= CONTAINER ================= */
.map-container {
    position: relative;
    max-width: 1400px;
    margin: auto;
    overflow: visible;
}

/* ================= SVG ================= */
.map-svg {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    overflow: visible;
}

.map-svg svg {
    width: 100%;
    height: auto; /* FIX */
    display: block;
    overflow: hidden;
}


/* ================= MAP ================= */
.map-svg path {
    fill: #cfd8d3;
    stroke: #fff;
    stroke-width: 0.7;
}

.map-svg path.active {
    fill: #efa4a3;
}

/* ================= GARIS ================= */
.map-svg line {
    stroke: #999;
    stroke-width: 0.2; /* 🔥 lebih tipis */
}

/* ================= TITIK ================= */
.map-svg circle {
    fill: #646464;
    r:0.7;
    pointer-events: none;
}

/* ================= TEXT WISATA ================= */
.map-svg text {
    font-size: 4px; /* 🔥 kecil & rapi */
    fill: #555;
    font-weight: 400;
    dominant-baseline: middle;
    letter-spacing:0.3px ;
}

/* ================= NAMA PROVINSI ================= */
.map-svg .region {
    font-size: 6px;
    font-weight: 400;
    fill: #333;
    pointer-events: none; /* 🔥 BIAR GA KENA GARIS */
    letter-spacing:0.3px ;
}

/* ================= INFO BOX ================= */
.map-info {
    position: absolute;
    top: 10px;
    left: 40px;

    width: 260px;
    background: #0b0b0b;
    color: white;

    padding: 18px;
    border-radius: 12px;
    z-index: 5;
}
.map-svg path {
    fill: #cfd8d3;
    stroke: #ffffff;
    stroke-width: 0.7;
    transition: all 0.25s ease;
    cursor: pointer;
}
.map-svg path.active {
    fill: #e8a2a2; /* merah soft (elegan, bukan norak) */
}
/* 🔥 HOVER ala Japan */
.map-svg path:hover {
    fill: #b7cbbf; /* hijau terang soft */
}
.map-svg path.active:hover {
    fill: #e8a2a2;
}
/* ================= FONT GLOBAL ================= */
.map-svg svg {
    width: 100%;
    height: auto;
}

/* ================= BACKGROUND (INDONESIA LAIN) ================= */
.indo-bg path {
    fill: #dcdcdc; /* 🔥 masih keliatan */
    opacity: 0.5;
    pointer-events: none; /* ❗ ga bisa diklik */
}

/* ================= FOCUS AREA (JAWA BALI) ================= */
.focus-area path {
    fill: #cfd8d3;
    stroke: #fff;
    stroke-width: 0.7;
    cursor: pointer;
    transition: 0.25s ease;
}

/* hover hijau */
.focus-area path:hover {
    fill: #b7d3c1;
}

/* aktif merah */
.focus-area path.active {
    fill: #e8a2a2;
}

.map-detail {
    position: absolute;
    top: 80px;
    right: 40px;

    width: 320px;
    background: #222;
    color: white;

    border-radius: 12px;
    overflow: hidden;

    opacity: 0;
    transform: translateX(50px);
    transition: 0.4s;
}

.map-detail.show {
    opacity: 1;
    transform: translateX(0);
}

/* 🔥 wrapper */
.image-wrapper {
    position: relative;
    height: 200px;
    overflow: hidden;
}

/* 🔥 layer */
.detail-images {
    position: absolute;
    width: 100%;
    height: 100%;

    display: grid;
    grid-template-columns: 1fr 1fr;

    opacity: 0;
    transform: scale(1.05);

    transition: opacity 0.5s ease, transform 0.5s ease;
}

/* aktif */
.detail-images.active {
    opacity: 1;
    transform: scale(1);
}

/* gambar */
.detail-images img {
    width: 100%;
    height: 100px;
    object-fit: cover;
}

/* TEXT WRAPPER */
.detail-text {
    padding: 18px 20px;
    background: #111;
    color: white;

    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

/* AKTIF */
.detail-text.show {
    opacity: 1;
    transform: translateY(0);
}

/* JUDUL */
.detail-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    margin-bottom: 10px;
}

/* PARAGRAF */
.detail-text p {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    line-height: 1.6; /* 🔥 ini yang bikin rapi */
    color: #ddd;
}
@media (max-width: 768px) {

    /* 🔥 CONTAINER */
    .map-container {
        display: flex;
        flex-direction: column;
    }

    /* 🔥 MAP */
    .map-svg {
        width: 100%;
        height: 400px;
        overflow: hidden;
        position: relative;
    }

    .map-svg svg {
        position: absolute;
        width: 200%;
        left: -10%; /* 🔥 posisi aman (tengah Jawa) */
        top: 0;
    }

    /* 🔥 BOX INFO (BIAR NGGAK HILANG) */
    .map-info {
        position: absolute;
        top: 15px;
        left: 15px;
        z-index: 10; /* 🔥 ini penting biar muncul di atas map */

        padding: 12px 16px;
        border-radius: 12px;
        max-width: 70%;

        background: #0b0b0b;
        backdrop-filter: blur(10px);
        color: white;
    }

    .map-info h3 {
        font-family: 'Playfair Display', serif;
        font-size: 16px;
        margin-bottom: 4px;
    }

    .map-info p {
        font-family: 'Inter', sans-serif;
        font-size: 12px;
    }

    /* 🔥 DETAIL (BAWAH MAP) */
    #mapDetail {
        display: none !important;
    }

    /* tampilkan versi mobile */
    .map-detail-mobile {
        display: block;
        margin-top: 20px;
        background: #111;
        border-radius: 15px;
        overflow: hidden;
    }

    .map-detail-mobile .images {
        display: flex;
        flex-wrap: wrap;
    }

    .map-detail-mobile .images img {
        width: 50%;
        height: 130px;
        object-fit: cover;
    }

    .map-detail-mobile .text {
        padding: 15px;
        color: white;
    }
    .map-detail-mobile h3 {
        font-family: 'Playfair Display', serif;
        font-size: 18px;
        margin-bottom: 8px;
    }

    /* 🔥 DESKRIPSI */
    .map-detail-mobile p {
        font-family: 'Inter', sans-serif;
        font-size: 13px;
        line-height: 1.6;
        color: #ddd;
    }

}
.testimoni{
  position: relative;
  z-index: 1;
  overflow: hidden;
  margin-top: 0;

  background: #0b0b0b;
  padding: 100px 0;

  margin-top: 38px;
}

.hero{
  position: relative;
  z-index: 1;
}

.testimoni-container{
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
}

.testi-track{
  display: flex;
  gap: 20px;

  overflow-x: auto;
  scroll-snap-type: x mandatory;

  padding-bottom: 10px;
}

/* overlay */
.testimoni::before,
.testimoni::after{
  content: "";
  position: absolute;
  top: 0;
  width: 120px;
  height: 100%;
  z-index: 3;
  pointer-events: none;
}

.testimoni::before{
  left: 0;
  background: linear-gradient(to right, #0b0b0b, transparent);
}

.testimoni::after{
  right: 0;
  background: linear-gradient(to left, #0b0b0b, transparent);
}

/* CARD */
.testi-card{
  flex: 0 0 220px;
  scroll-snap-align: center;

  background: linear-gradient(180deg, #1a1a1a, #111);
  border-radius: 18px;
  padding: 20px;

  color: #fff;

  display: flex;
  flex-direction: column;
  justify-content: space-between;

  transition: all 0.3s ease;

}
.testi-track::-webkit-scrollbar {
  display: none;
}

.testi-track {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* TEXT */
.testi-card p{
  font-family: 'Playfair Display', serif;
  font-size: 14px;
  line-height: 1.9;
  color: #cfcfcf;
}

.testi-card {
  display: flex;
  flex-direction: column;
}

.testi-card p {
  flex: 1; /* 🔥 ini yang bikin rata */
  margin-bottom: 30px;
}

.testi-card h3 {
  margin-top: auto; /* 🔥 dorong ke bawah */
}
/* NAMA */
.testi-card h3{
  font-family: 'Playfair Display', serif;
  font-size: 17px;
}

/* LOKASI */
.testi-card span{
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: #9a9a9a;
}

/* SECTION */
.paket{
  background: #ffffff;
  padding: 50px 10px;
  max-width: 1200px;
  margin: auto;
}

/* CONTAINER */
.paket-container{
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  
  display: flex;
  flex-direction: column;
  align-items: center;
}
.paket h2,
.paket p {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

/* JUDUL */
.paket h2{
  font-family: 'Playfair Display', serif;
  font-size: 46px;
  font-weight: 500;
  color: #1a1a1a;

  line-height: 1.2;
  margin-bottom: 20px;
}

/* DESKRIPSI */
.paket p{
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: #555;

  line-height: 1.7;
  margin-bottom: 50px;
}

.paket-title-btn {
  display: block;
  width: fit-content;
  margin: 30px auto;

  background: black;
  color: white;

  padding: 14px 40px;
  border-radius: 40px;

  font-size: 14px;
  text-decoration: none;
}
/* CARD */
.paket-card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
}

/* IMAGE FULL */
.paket-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: 0.5s;
}

/* HOVER ZOOM */
.paket-card:hover img {
  transform: scale(1.05);
}

/* BADGE */
.badge {
  position: absolute;
  top: 15px;
  left: 15px;

  background: #1e3a5f;
  color: white;

  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
}

/* LOVE */
.love-btn {
  position: absolute;
  top: 15px;
  right: 15px;

  width: 38px;
  height: 38px;

  background: white;
  border-radius: 50%;

  display: flex;
  justify-content: center;
  align-items: center;
}

.love-btn.active i {
  color: red;
}

/* OVERLAY BAWAH */
.overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;

  padding: 20px;

  display: flex;
  justify-content: flex-start;
  opacity: 0;
  transition: 0.3s;
}

/* BUTTON */
.btn-detail {
  background: rgba(255,255,255,0.95);
  color: black;

  padding: 8px 18px;
  border-radius: 25px;

  font-size: 13px;
  text-decoration: none;

  transition: 0.3s;
}

.btn-detail:hover {
  background: black;
  color: white;
}
.paket-card {
  aspect-ratio: 3/4; /* 🔥 portrait */
}
.paket-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  max-width: 900px; /* 🔥 kecilin area */
  margin: 40px auto;
}
@media (max-width: 768px){

  .paket{
    padding: 40px 15px;
  }

  /* 🔥 JUDUL DIKECILIN */
  .paket h2{
    font-size: 28px;
    line-height: 1.3;
    margin-bottom: 15px;
  }

  /* 🔥 DESKRIPSI */
  .paket p{
    font-size: 14px;
    margin-bottom: 30px;
  }

  /* 🔥 TAB WRAPPER */
  .paket-tabs{
    width: 100%;
    justify-content: space-between;
    padding: 6px;
    border-radius: 40px;
  }

  /* 🔥 BUTTON TAB */
  .paket-tabs button{
    flex: 1;
    font-size: 11px;
    padding: 10px 0;
  }

  /* 🔥 INDIKATOR */
  .tab-indicator{
    top: 6px;
    left: 6px;
    height: calc(100% - 12px);
    border-radius: 25px;
  }
  .paket-content {
    grid-template-columns: 1fr;
    gap: 15px;
    padding: 0 15px;
  }

}
.testimoni::before,
.testimoni::after{
  display: none;
}
/* SECTION */
.why{
  background: #0b0b0b;
  padding: 80px 40px;
  color: white;
  position: relative;
  z-index: 999;
}

/* FORCE FONT */
.why *{
  font-family: 'Inter', sans-serif;
}

/* TOP */
.why-container{
  display: flex;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 60px;
}

/* JUDUL */
.why-left h2{
  font-family: 'Playfair Display', serif;
  font-size: 38px;
  font-weight: 500;
  line-height: 1.2;
  color: #fff;
}

/* RIGHT TEXT */
.why-right{
  max-width: 480px;
}

.why-right p{
  font-size: 15px;
  font-weight: 300;
  line-height: 1.8;
  color: #cfcfcf;
  margin-bottom: 25px;
}

/* BUTTON */
.btn-why{
  display: inline-block;
  background: #eaeaea;
  color: #111;
  padding: 12px 26px;
  border-radius: 40px;
  font-size: 12px;
  letter-spacing: 1px;
  text-decoration: none;
}

/* LIST */
.why-list{
  display: flex;
  gap: 80px;
}

.why-col{
  flex: 1;
}

/* ITEM */
.why-item{
  border-bottom: 1px solid rgba(255,255,255,0.2);
  padding: 18px 0;
}

/* TITLE */
.why-title{
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  
  position: relative;
  z-index: auto;
}

.why-title span{
  font-family: 'Playfair Display', serif;
  font-size: 17px;
}

/* ARROW */
.arrow{
  width: 10px;
  height: 10px;
  border-right: 2px solid #aaa;
  border-bottom: 2px solid #aaa;
  transform: rotate(45deg);
  transition: 0.3s;
}

/* CONTENT */
.why-content{
  max-height: 0;
  overflow: hidden;
  font-size: 13px;
  color: #aaa;
  line-height: 1.7;
  transition: all 0.4s ease;
}

/* ACTIVE */
.why-item.active .why-content{
  max-height: 120px;
  margin-top: 10px;
}

.why-item.active .arrow{
  transform: rotate(-135deg);
}

@media (max-width: 768px){

  .why{
    padding: 60px 20px;
    text-align: center; /* 🔥 semua tengah */
  }

  /* 🔥 TOP JADI 1 KOLOM */
  .why-container{
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
  }

  /* 🔥 JUDUL */
  .why-left h2{
    font-size: 26px;
    line-height: 1.3;
  }

  /* 🔥 TEXT */
  .why-right{
    max-width: 100%;
  }

  .why-right p{
    font-size: 14px;
    line-height: 1.7;
  }

  /* 🔥 BUTTON */
  .btn-why{
    margin-top: 10px;
    padding: 12px 24px;
    font-size: 12px;
  }

  /* 🔥 LIST JADI KEBAWAH */
  .why-list{
    flex-direction: column;
    gap: 0;
  }

  .why-col{
    width: 100%;
  }

  /* 🔥 ITEM */
  .why-item{
    text-align: left; /* 🔥 biar rapi kayak contoh */
    padding: 16px 0;
  }

  /* 🔥 TITLE */
  .why-title span{
    font-size: 16px;
  }

  /* 🔥 CONTENT */
  .why-content{
    font-size: 13px;
  }

}
/* SECTION */
.gallery{
  padding: 80px 40px;
  background: #ffffff;
}

/* HEADER */
.gallery-header{
  text-align: center;
  margin-bottom: 40px;
}

.gallery-header h2{
  font-family: 'Playfair Display', serif;
  font-size: 34px;
}

.gallery-header p{
  font-family: 'Inter', sans-serif;
  color: #666;
  font-size: 14px;
}

/* GRID */
.gallery-grid{
  display: grid;
  grid-template-columns: repeat(5, 1fr); /* 🔥 banyak & kecil */
  gap: 12px;
}

/* ITEM */
.gallery-item{
  aspect-ratio: 1 / 1; /* 🔥 bikin kotak */
  overflow: hidden;
  border-radius: 10px;
  position: relative;
}

/* IMAGE */
.gallery-item img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s ease;
}

/* HOVER */
.gallery-item:hover img{
  transform: scale(1.08);
}
.gallery-item::after{
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.2);
  opacity: 0;
  transition: 0.3s;
}

.gallery-item:hover::after{
  opacity: 1;
}
.gallery-toggle{
  text-align: center;
  margin-top: 25px;
}

.gallery-toggle button{
  background: #f1f1f1;
  color: #111;

  padding: 12px 26px;
  border-radius: 40px;

  border: none;
  cursor: pointer;

  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.5px;

  display: inline-flex;
  align-items: center;
  gap: 8px;

  transition: all 0.3s ease;
}

/* panah */
.gallery-toggle button::after{
  font-size: 14px;
  transition: transform 0.3s ease;
}

/* hover */
.gallery-toggle button:hover{
  background: #111;
  color: white;
}

/* panah geser dikit */
.gallery-toggle button:hover::after{
  transform: translateX(4px);
}
/* 🔥 SEMBUNYIKAN DI DESKTOP */
#toggleGallery{
  display: none;
}

@media (max-width: 768px){

  .gallery-grid{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;

    max-height: 700px; /* tinggi awal */
    overflow: hidden;
    transition: max-height 0.6s ease;
}

/* SAAT DIBUKA */
.gallery-grid.open{
  max-height: 5000px; /* harus lebih tinggi dari isi */
}

  /* 🔥 SEMBUNYIKAN SEMUA SETELAH FOTO KE-6 */
  .gallery-grid .gallery-item:nth-child(n+7){
    display: none;
  }

  /* 🔥 KALAU DIBUKA → TAMPIL SEMUA */
  .gallery-grid.open .gallery-item{
    display: block;
  }
    #toggleGallery{
    display: inline-block;
  }
  

}
/* SECTION WRAPPER */
.contact-card-section{
  background: #ffffff;
  padding: 40px 0px 120px;
  position: relative;
}

/* CARD HITAM */
.contact-card{
  max-width: 900px;
  margin: 0 auto;

  background: #0b0b0b; /* coklat hitam */
  border-radius: 30px;

  padding: 40px 30px;

  display: flex;
  justify-content: space-between;
  gap: 20px;

  color: white;

  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

/* ITEM */
.contact-item{
  flex: 1;
  text-align: center;
}

/* LABEL */
.contact-item .label{
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  letter-spacing: 2px;
  color: #aaa;
  margin-bottom: 10px;
}

/* TEXT BESAR */
.contact-item h3{
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.4;
}
@media (max-width:768px){

  .contact-card{
    flex-direction: column;
    padding: 30px 20px;
    border-radius: 25px;
  }

  .contact-item h3{
    font-size: 18px;
  }

}
.wa-wrapper{
  position: fixed;
  bottom: 30px;
  right: 20px;

  display: flex;
  align-items: center;
  gap: 12px;

  z-index: 9999;
}

/* BOX TEXT */
.wa-box{
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);

  padding: 12px 16px;
  border-radius: 10px;

  max-width: 220px;

  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

/* TEXT */
.wa-box p{
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  line-height: 1.5;
  color: #333;
  margin: 0;
}

.wa-box b{
  font-weight: 600;
}

/* BUTTON WA */
.wa-circle{
  width: 60px;
  height: 60px;

  background: #17c256;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
}

.wa-circle img{
  width: 28px;
  height: 28px;

}
body.menu-open .wa-wrapper{
  opacity: 0;
  pointer-events: none;
  transition: 0.3s;
}
@media (max-width:768px){

  .wa-box{
    max-width: 180px;
    padding: 10px 12px;
  }

  .wa-box p{
    font-size: 12px;
  }

  .wa-circle{
    width: 50px;
    height: 50px;
  }

}
.footer{
  background: #0b0b0b;
  color: #fff;
  padding: 60px 10%;
}

.footer-container{
  display: flex;
  justify-content: flex-start; /* 🔥 ini kunci */
  gap: 200px; /* atur jarak antar kolom */

}

/* LOGO */
.footer-logo-box {
  display: flex;
  align-items: center;
  gap: 10px;

  background: white;
  padding: 10px 20px;
  border-radius: 50px;

  box-shadow: 0 5px 15px rgba(0,0,0,0.2);

  width: fit-content;
  margin-bottom: 20px;
}

/* logo */
.footer-logo-box img {
  width: 40px;
}

/* text */
.footer-logo-box h3 {
  font-size: 16px;
  color: #474747;
  margin: 0;
}

.footer-logo-box small {
  font-size: 10px;
  color: gray;
}
/* CONTACT */
.footer-contact{
  margin-bottom: 20px;
}

.contact-item{
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;

  font-size: 14px;
  color: #ccc;
}

.contact-item i{
  width: 30px;
  height: 30px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;
  background: #111;

  font-size: 13px;
}

/* SOCIAL */
.footer-social{
  display: flex;
  gap: 12px;
}


.footer-social a{
  width: 40px;
  height: 40px;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 16px;
  color: white;

  text-decoration: none;
  border: none; /* 🔥 penting */

  transition: 0.3s;
}

/* WA */
.footer-social .wa{
  background: #25D366;
}

/* FB */
.footer-social .fb{
  background: #1877F2;
}

/* IG */
.footer-social .ig{
  background: linear-gradient(45deg, #feda75, #d62976, #962fbf);
}

/* hover */
.footer-social a:hover{
  transform: scale(1.15);
}

/* CENTER & RIGHT */
.footer-center,
.footer-right{
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-center h3,
.footer-right h3{
  margin-bottom: 10px;
}

.footer-center a,
.footer-right a{
  color: #ccc;
  text-decoration: none;
  font-size: 14px;
}

.footer-center a:hover,
.footer-right a:hover{
  color: white;
}

/* BOTTOM */
.footer-bottom{
  border-top: 1px solid #222;
  margin-top: 40px;
  padding-top: 20px;

  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: #aaa;
}

/* RESPONSIVE */
@media(max-width:768px){
  .footer-container{
    flex-direction: column;
    gap: 30px;
  }

  .footer-bottom{
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}
/* MODAL */
/* MODAL BACKGROUND */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  inset:0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  justify-content: center;
  align-items: center;
  z-index: 999;
}

/* BOX */
.modal-content {
  background: white;
  border-radius: 15px;
  width: 800px;
  max-width: 90%;
  padding: 20px;
  position: relative;
}

/* FLEX */
.modal-body {
  display: flex;
  gap: 20px;
  align-items:flex-start;
}

/* GAMBAR */
.modal-left {
  width: 45%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0px;
}

.modal-left img {
  width: 100%;
  max-width: none; /* biar portrait */
  height: auto;
  border-radius: 12px;
  object-fit: contain; /* jangan kepotong */
}
.modal-box {
  background: #ffffff;
  width: 85%;
  max-width: 1000px;
  border-radius: 20px;
  max-height: 90vh;
  position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}
/* TEXT */
.modal-right {
  padding-right: 10px;
  scroll-behavior: smooth;
  padding-bottom: 10px;
}

.modal-right h2 {
  font-size: 28px;
  margin-bottom: 15px;
  margin-top: 30px;
}

.modal-right p {
  font-size: 15px;
  color: #555;
  line-height: 1.7;
}
.modal-close {
  position: fixed;
  top: 25px;
  right: 25px;

  width: 45px;
  height: 45px;

  background: white;
  border-radius: 50%;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 20px;
  cursor: pointer;

  z-index: 9999;
}
.modal-close:hover {
  transform: scale(1.1);
  background: #f5f5f5;
}
.modal-close {
  top: 30px;
  right: calc((100% - 1000px) / 2 + 20px);
}
.price {
  font-weight: bold;
  margin-bottom: 5px;
}

.duration {
  color: gray;
  margin-bottom: 15px;
}


/* BUTTON */
.btn-book {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 20px;
  background: black;
  color: white;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 500;
}

/* CLOSE */
.close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  cursor: pointer;
}
body.modal-open header {
  display: none;
}
body.modal-open .wa-wrapper {
  display: none;
}
.fitur-list {
  margin: 15px 0;
}

.fitur-item {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
}

.fitur-item i {
  font-size: 18px;
  color: #1e3a5f;
  margin-top: 5px;
}

.fitur-item h4 {
  font-size: 15px;
  margin: 0;
}

.fitur-item p {
  font-size: 13px;
  color: #666;
  margin: 0;
}

.deskripsi-text {
  margin-top: 15px;
  font-size: 14px;
  line-height: 1.6;
}
body.modal-open {
  overflow: hidden;
}

.rundown {
  position: relative;
  margin: 20px 0;
  padding-left: 50px;
}

/* garis putus-putus */
.rundown::before {
  content: "";
  position: absolute;
  left: 22px;
  top: 0;
  width: 3px;
  height: 100%;
  background: repeating-linear-gradient(
    to bottom,
    #ff4d30,
    #ff4d30 6px,
    transparent 6px,
    transparent 12px
  );
}

/* item */
.rundown-item {
  position: relative;
  margin-bottom: 30px;
}

/* ICON BULAT */
.rundown-icon {
  position: absolute;
  left: -3px;
  top: 0;
  width: 40px;
  height: 40px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 12px rgba(0,0,0,0.1);
  z-index: 2;
}

/* icon warna */
.rundown-icon i {
  color: #ff4d30;
  font-size: 16px;
}

/* text */
.rundown-text {
  margin-left: 55px;
}

.rundown-text h4 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

.rundown-text p {
  margin: 5px 0 0;
  font-size: 13px;
  color: #555;
}
.rundown-item:first-child .rundown-icon {
  background: #ff4d30;
}
.rundown-item:first-child i {
  color: white;
}
.rundown-item:last-child .rundown-icon {
  background: #ff4d30;
}
.rundown-item:last-child i {
  color: white;
}
.detail-section {
  margin: 25px 0;
}

.detail-section h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.detail-section ul {
  padding-left: 0;
  list-style: none;
}

/* ✔ termasuk */
.list-check li {
  margin-bottom: 8px;
  padding-left: 25px;
  position: relative;
}

.list-check li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: green;
}

/* ❌ tidak termasuk */
.list-cross li {
  margin-bottom: 8px;
  padding-left: 25px;
  position: relative;
}

.list-cross li::before {
  content: "✖";
  position: absolute;
  left: 0;
  color: red;
}

/* garis */
hr {
  border: none;
  border-top: 1px solid #eee;
  margin: 25px 0;
}
#modalInfo {
  padding-left: 20px;
  list-style: disc;
}

#modalInfo li {
  margin-bottom: 8px;
  color: #333;
}
.form-pesan {
  margin-top: 25px;
  max-width:350px;
}

.form-pesan label {
  font-weight: 500;
  display: block;
  margin-bottom: 5px;
}

.form-pesan select {
  width: 100%;
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #ddd;
  font-size: 14px;
}
.notif {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);

  background: #ff3b3b;
  color: white;
  padding: 12px 25px;
  border-radius: 10px;

  font-size: 14px;
  font-weight: 500;

  display: none;
  z-index: 9999;

  box-shadow: 0 5px 15px rgba(0,0,0,0.2);

  opacity: 0;
  transition: all 0.3s ease;
}

.notif.show{
  display: block;
  opacity: 1;
  top: 30px;
}

.btn-pesan {
  width: auto;
  padding: 14px;
  border-radius: 30px;
  border: none;
  background: linear-gradient(135deg, #000, #333);
  color: white;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top:10px;
}

/* hover effect */
.btn-pesan:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* klik */
.btn-pesan:active {
  transform: scale(0.97);
}

/* disable */
.btn-pesan:disabled {
  background: #ccc;
  cursor: not-allowed;
}
.paket-highlight {
  max-width: 900px;   /* samain dengan container paket */
  margin: 150px auto;   /* center + jarak */
  padding: 0 20px;     /* biar ga nempel pinggir */
  margin-top: 10px;
  height: 300px;
}


.highlight-card {
  position: relative;
  width: 100%;
  border-radius: 25px;
  overflow: hidden;
  cursor: pointer;
  object-fit: contain;
}


.highlight-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* overlay */
.highlight-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  color: white;
}

/* badge */
.badge-highlight {
  background: #2c7be5;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 12px;
  display: inline-block;
  margin-bottom: 10px;
}

/* judul */
.highlight-overlay h2 {
  margin: 5px 0;
  font-size: 22px;
}
.paket-highlight,
.highlight-card {
  margin-bottom: 0 !important;
}

/* tombol */
.highlight-overlay .btn-detail {
  margin-top: 10px;
  padding: 8px 15px;
  border: none;
  border-radius: 20px;
  background: white;
}
@media (max-width: 768px) {
  .highlight-card {
    height: auto;
    margin-bottom: 10px;
  }

  .highlight-card img {
    width: 100%;
    height: auto;
    object-fit: contain; /* 🔥 biar full keliatan */
  }
}
@media (max-width: 768px) {
  .paket-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 kolom */
    gap: 10px;
  }

  .paket-card img {
  width: 100%;
  aspect-ratio: 3 / 4; /* 🔥 ini kunci POTRET */
  object-fit: cover;
  border-radius: 15px;
}
}
@media (max-width: 768px) {
  .modal-body {
    flex-direction: column;
  }

  .modal-left {
    width: 100%;
  }

  .modal-left img {
    width: 100%;
    height: auto;
    border-radius: 15px;
  }

  .modal-right {
    display: block !important;
    width: 100%;
    margin-top: 15px;
    padding-bottom: 60px;
    
  }
    .modal-right h2 {
    font-size: 20px;
  }

  .modal-right p {
    font-size: 14px;
  }
  .modal-close {
    top: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .btn-pesan {
    display:block;
    font-size: 14px;
    padding: 12px 20px;
    margin: 15px auto 40px;
    width:90%;
    max-width: 300px;
  }
    .modal-box {
    border-radius: 20px;
    padding: 15px;
  }
}
/* hapus jarak banner */
.paket-highlight {
  margin: 0 auto !important;
  padding: 0 !important;
  height: auto !important; /* 🔥 penting */
}

/* card banner */
.highlight-card {
  height: auto !important;
  margin-bottom: 10px !important; /* 🔥 tarik ke paket */
}

/* section paket */
.paket {
  margin-top: 20px !important; /* 🔥 ini kunci */
  padding-top: 0 !important;
}

/* grid paket */
.paket-content {
  margin-top: 0 !important;
  gap: 8px !important;
}

/* mobile lebih rapet */
@media (max-width: 768px) {
  .highlight-card {
    margin-bottom: 10px !important;
  }

  .paket {
    margin-top: 20px !important;
  }

  .paket-content {
    gap: 6px !important;
  }
}
.modal-galeri {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.9);
  justify-content: center;
  align-items: center;
}

.modal-galeri img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
}

.close-galeri {
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 30px;
  color: white;
  cursor: pointer;
}
@media (max-width: 768px) {

  .modal {
    align-items: flex-start; /* 🔥 biar mulai dari atas */
  }

  .modal-box {
    max-height: 90vh;
    overflow-y: hidden;
    display:flex;
    flex-direction: column;
    width : 85%;
  }

.modal-body {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
}

  .modal-right {
    overflow: visible; /* 🔥 jangan di-lock */
  }

}
@media (max-width: 768px){

  #modalDesc,
  .detail-section {
    padding: 0 20px;
  }

}
@media (max-width: 768px){

  .modal-right > *:last-child{
    margin-bottom: 40px;
  }

}
/* CARD */
.paket-card {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

/* GAMBAR */
.paket-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

/* HOVER EFFECT */
.paket-card:hover img {
  transform: scale(1.08); /* 🔥 zoom */
}

/* CARD NAIK DIKIT */
.paket-card:hover {
  transform: translateY(-5px);
}
/* CARD HIGHLIGHT */
.highlight-card {
  position: relative;
  overflow: hidden;
  border-radius: 25px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

/* GAMBAR */
.highlight-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

/* HOVER ZOOM */
.highlight-card:hover img {
  transform: scale(1.08); /* 🔥 zoom halus */
}

/* CARD NAIK */
.highlight-card:hover {
  transform: translateY(-5px);
}
@media (min-width: 769px){

  .modal-body{
    align-items: flex-start;
  }

  .modal-left{
    position: sticky;
    top: 20px; /* jarak dari atas */
    height: fit-content;
  }

  .modal-box {
  display: flex;
  flex-direction: column;
  height: 90vh;
  overflow: hidden;
}

}
@media (min-width: 769px){

  /* khusus highlight */
  .highlight-card img{
    width: 100%;
    height: auto;
    max-width: 100%; /* 🔥 override 300px */
    object-fit: cover;
    border-radius: 15px;
  }

}
@media (min-width: 769px){

  .modal-left{
    width: 45%;
  }

  .modal-right{
    width: 55%;
  }

}
/* 🔥 HAPUS TOTAL GOOGLE BAR */
.goog-te-banner-frame.skiptranslate {
  display: none !important;
}

body {
  top: 0px !important;
}

/* HAPUS iframe translate */
iframe.goog-te-banner-frame {
  display: none !important;
}

.goog-te-banner-frame {
  display: none !important;
}

body {
  top: 0px !important;
}

html {
  margin-top: 0px !important;
}
@media (max-width : 768px){
  .section,
  .destinasi,
  .testimoni {
    position : relative !important; 
    height: auto !important;
    min-height: unset !important;
    margin-top: -25px;
  }

  .destinasi-grid,
  .card-container {
    display: block !important;
  }

  section {
    margin-bottom: 50px;
  }
  
}
/* 🔥 FORCE LIGHT MODE */
:root {
  color-scheme: light;
}

html, body {
  background: #ffffff !important;
  color: #000000 !important;
}
/* 🔥 BLOK DARK MODE SYSTEM */
@media (prefers-color-scheme: dark) {
  body {
    background: #ffffff !important;
    color: #000000 !important;
  }
}
input, textarea, select {
  background: #fff !important;
  color: #000 !important;
}
.sidebar {
  pointer-events: auto;
}
@media(max-width:768px){

  .mobile-lang-center{
    position: absolute;
    top: 50%;
    right: 50px; /* 🔥 kasih jarak dari hamburger */
  }

}
@media (max-width: 768px){
  .close-btn{
    position: fixed !important; /* 🔥 paksa ikut layar */
    top: 15px;
    right: 40px;

    width: 45px;
    height: 45px;

    background: white;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 20px;
    z-index: 99999;
  }
  .btn-pesan{
  display: block;
  margin: 20px auto 20px; /* 🔥 ini bikin naik */
  width: 90%;
  max-width: 300px;
  bottom: 20px;
}
}
html, body {
  max-width: 100%;
  overflow-x: hidden;
}
body.modal-open {
  overflow: hidden;
}
body.modal-open {
  overflow: hidden;
  height: 100vh;
}

/* MODAL BACKGROUND */
.modal {
  display: none;
  position: fixed;
  inset: 0;

  width: 100%;
  height: 100%;

  background: rgba(0,0,0,0.6);

  display: flex;
  justify-content: center;
  align-items: center;

  overflow: hidden; /* 🔥 WAJIB */
  z-index: 9999;
}

/* BOX */
.modal {
  position: fixed;
  inset: 0;

  display: flex;
  justify-content: center;
  align-items: center;

  background: rgba(0,0,0,0.6);
  z-index: 9999;

  overflow: hidden;
}

.modal-box {
  width: 90%;
  max-width: 1000px;
  height: 90vh;

  display: flex;
  flex-direction: column;

  background: white;
  border-radius: 20px;

  overflow: hidden;
}

/* 🔥 INI KUNCI */
.modal-body {
  flex: 1;
  min-height: 0; /* 🔥 WAJIB BANGET */

  overflow-y: auto;
  padding: 20px;

  overscroll-behavior: contain;
}
@media (min-width: 769px){

  .modal-body{
    display: flex;
    gap: 20px;
  }

  .modal-left{
    width: 45%;
    position: sticky;
    top: 20px;
    height: fit-content;
  }

  .modal-right{
    width: 55%;
  }
 .modal-right {
  max-width: 100%;
  overflow-x: hidden;
}

.modal-body {
  width: 100%;
}
}
html, body {
  overflow-x: hidden !important;
}
.modal {
  overflow-x: hidden !important;
}
.modal-body {
  overflow-x: hidden;
}
.modal {
  display: none; /* 🔥 INI KUNCI */
}
.modal-right {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* 🔥 ini kunci */
  height: 100%;
}/* 🔥 KHUSUS MOBILE */
@media (max-width: 768px) {

  .modal-body {
    flex-direction: column;
  }

  .modal-left,
  .modal-right {
    width: 100% !important;
  }

}
@media (min-width: 769px){

  .modal-left {
    width: 40%; /* 🔥 dari 45% jadi lebih kecil */
  }

  .modal-right {
    width: 60%;
  }

  .modal-left img {
    width: 90%;      /* 🔥 kecilin isi gambar */
    margin: 0 auto;  /* 🔥 biar tetap center */
    display: block;
  }

}