/* General Styles & Font Import */
body {
    /* font-family: 'Inter', sans-serif; */
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #f7f9f6; /* Warna background dari gambar */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Reusable Components */



/* Reusable Components */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s;
}

.btn-primary {
    background-color: #37b75f;
    color: white;
    border: none;
}

.btn-primary:hover {
    background-color: #2b9c4d;
}
.bg-custom-green {
  background-color: #ecf4e9;
}
.bg-custom-navy {
  background-color: #c4a6d5;
}

.tour-link {
    text-decoration: none;
    color: #37b75f;
    font-weight: 600;
}

.tour-link:hover {
    text-decoration: underline;
}

/* Hero Banner Styling */
.hero-banner {
    padding-top: 40px; /* Padding vertikal */

    text-align: center; /* Pusatkan semua teks dan inline-block elements */
    background: #ecf4e9;
}
.bg-service {
    background: #ecf4e9;
}
.hero-image-container {
    position: relative;
    z-index: 1;
}

.hero-image-container::before {
    content: "";
    position: absolute;
    width: 600px;
    height: 400px;
    background-color: #c4a6d5;
    border-top-left-radius: 400px;
    border-top-right-radius: 400px;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
}

@media (max-width: 768px) {
    .hero-image-container::before {
        width: 90%;
        height: auto;
        aspect-ratio: 2 / 1; /* Menjaga rasio 2:1 seperti 600x300 */
        border-top-left-radius: 999px;
        border-top-right-radius: 999px;
    }
}

.hero-banner .container {
    display: flex; /* Menggunakan flexbox untuk mengatur konten */
    flex-direction: column; /* Mengatur item dalam satu kolom (atas-bawah) */
    align-items: center; /* Pusatkan item secara horizontal */
    /* Jarak antara bagian konten dan gambar */
}

.hero-content {
    max-width: 800px; /* Lebar maksimum untuk konten teks */
    /* text-align: center; sudah diatur di .hero-banner */
}


.hero-content h1 {
    font-size: 56px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.2;
    margin-bottom: 20px;
}
.hero-content p {
    font-size: 18px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 30px;
}

.hero-actions {
    display: flex;
    justify-content: center; /* Pusatkan tombol-tombol */
    align-items: center;
    font-size: 20PX;
    font-weight:bold ;
    gap: 20px;
}

.hero-image-container {
    position: relative;
    max-width: 500px; /* Lebar maksimum untuk kontainer gambar */
    width: 100%; /* Pastikan mengisi lebar yang tersedia */
    margin-top: 40px; /* Jarak dari konten atas */
}


.hero-image-container img {
    width: 100%;
    height: auto;
    border-radius: 20px;
}

.raised-box {
    position: absolute;
    top: 10%; /* Posisi dari atas kontainer gambar */
    right: -20%; /* Posisikan ke kanan */
    background-color: #fff;
    padding: 15px 25px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transform: translateX(50%); /* Geser ke kanan 50% dari lebar sendiri */
}
@media (max-width: 768px) {
    .raised-box {
        display: none;
    }
}

.raised-box p {
    margin: 0;
    font-size: 14px;
    color: #888;
}

.raised-box .amount {
    font-size: 28px;
    font-weight: 700;
    color: #37b75f;
}

.update-message {
    position: absolute;
    bottom: 5%; /* Posisi dari bawah kontainer gambar */
    left: 20%; /* Posisikan lebih ke kiri dari tengah gambar */
    background-color: #fff;
    padding: 10px 20px;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 10px;
    /* transform: translateX(-50%); Ini tidak diperlukan jika left: 20% */
}




/* Responsive Mobile View */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    .hero-banner {
       padding-top: 150px;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .hero-actions {
        flex-direction: column; /* Tombol bertumpuk di mobile */
        gap: 15px;
    }

    .raised-box {
        top: 20px;
        right: 20px;
        transform: translateX(0); /* Matikan geseran di mobile */
    }
 .update-message {
        bottom: 5%;
        left: 10%;
        padding: 8px 15px;
    }

}
/* end Hero */

/* Responsive Mobile View */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    /* Navbar Mobile */
    .nav-links,
    .navbar-actions {

        display: none;
        flex-direction: column;
        width: 100%;
        text-align: center;
        background-color: #fff;
        position: absolute;
        top: 60px; /* Jarak dari top */
        left: 0;
        padding: 20px 0;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        z-index: 10;
    }

    .nav-links.active,
    .navbar-actions.active {
        display: flex;
    }

    .nav-links ul {
        flex-direction: column;
        gap: 15px;
    }

    .nav-links li a {
        padding: 10px;
        display: block;
    }

    .navbar-actions {
        gap: 15px;
        margin-top: 20px;
        border-top: 1px solid #eee;
        padding-top: 20px;
    }

    .hamburger-menu {
        display: flex;
    }


/* Hanya untuk mobile */
@media (max-width: 768px) {
    .navbar-mobile-sticky {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
    }
}

/* Desktop tidak sticky */
@media (min-width: 769px) {
    .navbar-mobile-sticky {
        position: static;
    }
}


}



  /* Masonry Layout with Fixed Height */
  .masonry {
    column-count: 1;
    column-gap: 1rem;
  }

  @media (min-width: 768px) {
    .masonry {
      column-count: 2;
    }
  }

  @media (min-width: 1024px) {
    .masonry {
      column-count: 3;
    }
  }

  .masonry .thumb {
    break-inside: avoid;
    margin-bottom: 1rem;
    width: 100%;
    height: 250px; /* Adjust height here */
    object-fit: cover;
    object-position: center;
    border-radius: 0.5rem;
    cursor: pointer;
    display: block;
    transition: transform 0.2s ease;
  }

  .masonry .thumb:hover {
    transform: scale(1.01);
  }

  .modal-show {
    animation: fadeIn 0.25s ease-out;
  }

/* mengapa memilih kami */

   @keyframes fadeInUp {
      0% {
        opacity: 0;
        transform: translateY(20px);
      }
      100% {
        opacity: 1;
        transform: translateY(0);
      }
    }
    .fade-in {
      opacity: 0;
      animation: fadeInUp 0.8s ease forwards;
    }

    /* Container garis vertikal dan padding kiri untuk bullet */
    .step-container {
      position: relative;
      padding-left: 1.5em; /* ruang untuk garis + bullet */
      border-left: 4px solid #22c55e; /* green-600 */
    }

    /* Lingkaran bullet */
    .step-bullet {
      position: absolute;
      left: -2.5rem; /* setengah dari bullet width */
      top: 50%;
      width: 1.8rem;
      height: 1.8rem;
      background-color: #22c55e;
      border-radius: 9999px;
      border: 4px solid white;
      transform: translateY(-50%);
    }

 .swiper-slide {
    transition: transform 0.5s ease, box-shadow 0.5s ease;
  }

  /* Efek zoom pada slide aktif */
  .swiper-slide-active {
    transform: scale(2.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    z-index: 10;
  }

  /* Sedikit redupkan slide lain biar fokus ke yg aktif */
  .swiper-slide:not(.swiper-slide-active) {
    opacity: 0.8;
    transform: scale(0.95);
  }
