.theme-demos {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

.text-utama {
  color: var(--base-color);
}

.text-kedua {
  color: var(--second-color);
}

.btn-navbar:hover {
  color: var(--base-color) !important;
}

/* Warna Menu text navbar */
.navbar .navbar-nav .nav-item.active .nav-link {
  color: var(--second-color) !important;
  opacity: 1 !important;
}

.nav-link {
  color: #333;
  font-weight: 500;
  position: relative;
  padding: 0.5rem 0;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: var(--second-color);
}

/* Garis bawah untuk link aktif */
.nav-item.active .nav-link::after {
  content: "";
  position: absolute;
  bottom: 20px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--second-color);
  transform: scaleX(1);
  transition: transform 0.3s ease;
}

/* Efek hover untuk link tidak aktif */
.nav-link::after {
  content: "";
  position: absolute;
  bottom: 20px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--second-color);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.nav-link:hover::after {
  transform: scaleX(1);
}

/* Responsif */
@media (max-width: 991.98px) {
  .navbar-nav {
    gap: 0.5rem;
  }

  .nav-link {
    padding: 0.5rem 1rem;
  }
}

ul {
  padding-left: 5px !important;
}

li .nav-item.active {
  color: var(--base-color) !important;
}

.bg-welcome-text {
  position: relative;
  z-index: 1;
}
.bg-welcome-text::before {
  position: absolute;
  content: "";
  width: 90%;
  height: 90%;
  right: 0px;
  bottom: -20px;
  background-color: var(--base-color);
  z-index: -1;
  opacity: 1;
  border-radius: 15px;
}

.background-1 {
  position: relative;
  background-image: url("../../../assets/public/Aset Desain/pakai/bg/1.webp");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  z-index: 1;
  /* overflow: hidden; */
}

.background-1::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgb(55 55 55 / 92%);
  z-index: 2;
}

.background-2 {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.background-2::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(
      to bottom,
      rgba(255, 255, 255, 1) 10%,
      rgba(255, 255, 255, 0) 25%
    ),
    linear-gradient(
      to top,
      rgba(255, 255, 255, 1) 10%,
      rgba(255, 255, 255, 0) 25%
    ),
    url("../../../assets/public/Aset Desain/pakai/bg/12.webp");
  /* background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom; */
  z-index: -1;
  opacity: 0.09;
}

.background-3 {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.background-3::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../../../assets/public/Aset Desain/pakai/bg/4.webp");
  background-attachment: fixed;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1;
  opacity: 0.1;
}

.background-4 {
  position: relative;
  z-index: 1;
  /* overflow: hidden; */
}

.background-4::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-image: url("../../../assets/public/Aset Desain/pakai/bg/3.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  z-index: -1;
  opacity: 0.07;
}

.background-5 {
  position: relative;
  z-index: 1;
  /* overflow: hidden; */
}

.background-5::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-image: url("../../../assets/public/Aset Desain/pakai/bg/11.webp");
  background-repeat: no-repeat;
  background-size: cover;
  /* background-position: center; */
  /* background-attachment: fixed; */
  z-index: -1;
  opacity: 0.05;
}

.bg-artikel {
  background: linear-gradient(
    to bottom,
    transparent 0%,
    #de6b3190 50%,
    transparent 100%
  );
}

footer {
  padding-top: 20px !important;
  padding-bottom: 20px !important;
}

/*CARD*/
.card-keunggulan {
  width: 100%;
  padding: 16px;
  text-align: center;
  border-radius: 12px;
  background-color: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  cursor: pointer;
  position: relative;
  transition: transform 0.45s cubic-bezier(0.23, 1, 0.32, 1),
    box-shadow 0.45s cubic-bezier(0.23, 1, 0.32, 1), border-color 0.45s ease,
    background-color 0.45s ease;
}

.card-keunggulan:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
  background-color: #fff;
  border: 2px solid var(--base-color);
}

.card-keunggulan h3 {
  color: var(--base-color);
  transition: color 0.4s ease;
}

.card-keunggulan:hover h3 {
  color: var(--base-color);
}

.icon-keunggulan {
  max-width: 80px;
  min-width: 80px;
  background: white;
  border-radius: 10px;
  padding: 5px;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    box-shadow 0.4s ease;
}

.card-keunggulan:hover .icon-keunggulan {
  transform: scale(1.1);
  box-shadow: 0 5px 12px rgba(0, 0, 0, 0.08);
}

/* .img-sticky-keunggulan {
  position: sticky;
  height: 100%;
  overflow: visible;
  top: 100px;
} */

.img-sticky-keunggulan {
  position: sticky;
  top: 100px; /* Sesuaikan dengan header height */
  align-self: flex-start; /* Penting untuk flex children */
  height: fit-content;
}

.card-artikel {
  background-color: #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.card-artikel:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.badge-date {
  position: absolute;
  top: 49%;
  left: 10px;
  background-color: var(--base-color);
  border-radius: 10px;
  color: white;
}

.card-layanan {
  width: 100%;
  padding: 10px 10px;
  text-align: center;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background-color: #fff;
  cursor: pointer;
}

.card-layanan:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.card-kontak {
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: 15px;
}

.card-kontak:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.icon-bg {
  position: relative;
  z-index: 1;
}

.icon-bg::before {
  position: absolute;
  z-index: -1;
  background-color: green;
  width: 50px;
  height: 50px;
  border: 10px;
  border-radius: 10px;
}

.overlay-header {
  position: relative;
  z-index: 1;
}
.overlay-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.4); /* Sesuaikan tingkat gelapnya */
  z-index: 0;
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.show {
  opacity: 1;
  transform: translateY(0);
}

div {
  font-size: 14px;
}

/* Judul Section */
.judul-hitam {
  color: #000;
  /* font-weight: 700; */
}
.judul-utama {
  color: var(--base-color);
  /* font-weight: 700; */
}
/* Judul Section */

.whatsapp-shake {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 999;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: shake 2s infinite;
  transition: transform 0.3s;
}

.whatsapp-shake img {
  width: 30px;
  height: 30px;
  filter: brightness(0) invert(1);
}

@keyframes shake {
  0%,
  100% {
    transform: translate(0, 0);
  }
  20% {
    transform: translate(1px, -1px);
  }
  40% {
    transform: translate(-1px, 1px);
  }
  60% {
    transform: translate(1px, 1px);
  }
  80% {
    transform: translate(-1px, -1px);
  }
}

.swiper-wrapper {
  height: 100vh !important;
  /* height: 100% !important; */
}

.swiper-wrapper-galeri {
  height: 100% !important;
}

.overlay-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.slider-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  overflow: hidden;
  animation: zoomLoop 15s ease-in-out infinite;
}
@keyframes zoomLoop {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

/* Slider Content - Center Alignment */
.slider-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: start;
  z-index: 2;
  margin-top: 20px;
}

.slider-text {
  position: relative;
  width: 100%;
  max-width: 800px;
  padding: 0 30px;
  text-align: center;
}

/* Text Styling */
.slider-text h1 {
  font-size: 35px;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.slider-text h6 {
  font-size: 1.6rem;
  line-height: 1.6;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Buttons */
.btn-wa-slider {
  background-color: var(--base-color);
  padding: 7px 20px;
  border-radius: 10px;
  color: white;
  font-weight: 500;
}

.btn-wa-slider:hover {
  background-color: transparent;
  border: 2px solid white;
  color: white;
}
.btn-tour-slider {
  background-color: transparent;
  padding: 7px 20px;
  border-radius: 10px;
  color: white;
  font-weight: 500;
  border: 2px solid white;
}

.btn-tour-slider:hover {
  background-color: white;
  border: 2px solid white;
  color: var(--base-color);
}

/* .custom-btn {
  display: inline-block;
  padding: 12px 30px;
  background: #007bff;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  transition: all 0.3s ease;
  border: 2px solid #007bff;
}

.custom-btn:hover {
  background: transparent;
  color: #007bff;
  transform: translateY(-2px);
} */

/* Mobile Responsive Slider */
@media only screen and (max-width: 600px) {
  .swiper-wrapper {
  	height:85vh !important;
  }

  .slider-text h1 {
    font-size: 28px;
  }

  .slider-text h6 {
    font-size: 18px;
  }

  .custom-btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }

  .slider-content {
    padding: 0 15px;
  }

  .d-flex.gap-1 {
    flex-direction: column;
    gap: 10px !important;
  }
}

/* Animation for slider text */
.slider-text {
  animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/*MOBILE HP Responsive*/
@media only screen and (max-width: 600px) {

  .tabel-harga{
  height:400px !important;
  }
  .swiper-wrapper {
    margin-top: 40px;
  }
}

/* Card Wisata */
.card-wisata {
  background: white;
  border-radius: 10px;
  padding: 5px;
  transition: all 0.3s ease-in-out;
  transform: translateY(0);
  overflow: hidden;
}

.card-wisata:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.img-wrapper {
  overflow: hidden;
  border-radius: 10px;
  position: relative;
}

/* Overlay selalu tampil */
.img-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
  pointer-events: none;
}
/* .img-wrapper::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60%; 
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.8) 20%,
    rgba(0, 0, 0, 0.4) 70%,
    rgba(0, 0, 0, 0.2) 90%,
    transparent 100%
  );
  z-index: 1;
  pointer-events: none;
} */

.card-wisata img {
  transition: transform 0.4s ease-in-out;
}

.card-wisata:hover img {
  transform: scale(1.05);
}

.text-img {
  position: absolute;
  bottom: 0;
  z-index: 1;
  padding: 5px;
  line-height: 20px;
}

/* Card Rental */

.card-rental {
  background: white;
  border-radius: 10px;
  /* padding: 5px; */
  transition: all 0.3s ease-in-out;
  transform: translateY(0);
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}
.card-rental:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}
.card-rental img {
  transition: transform 0.4s ease-in-out;
}

.card-rental:hover img {
  transform: scale(1.05);
}

.img-wrapper {
  overflow: hidden;
  border-radius: 10px;
  position: relative;
}

.judul-rental {
  position: relative;
  z-index: 1;
  display: inline-block;
}
.judul-rental::after {
  position: absolute;
  content: "";
  border: 1px solid var(--base-color);
  bottom: 6px;
  left: 0px;
  width: 50px;
  height: 1px;
  opacity: 0.5;
}

.judul-rental::before {
  position: absolute;
  content: "";
  border: 1px solid var(--base-color);
  bottom: 3px;
  left: 0px;
  width: 100px;
  height: 1px;
}

.header-title {
  position: relative;
  display: inline-flex;
  z-index: 1;
  width: fit-content;
}

.header-title::before {
  position: absolute;
  content: "";
  border-radius: 50%;
  width: 40px;
  height: 40px;
  background-color: var(--second-color);
  left: -10px;
  bottom: -5px;
  z-index: -1;
  animation: pulse-bg 2s infinite ease-in-out;
}

/* Animasi smooth berkedip */
@keyframes pulse-bg {
  0% {
    transform: scale(1);
    opacity: 1;
    filter: brightness(1);
  }
  50% {
    transform: scale(1.1);
    opacity: 0.6;
    filter: brightness(1.3);
  }
  100% {
    transform: scale(1);
    opacity: 1;
    filter: brightness(1);
  }
}

/* .judul-rental {
  border: 2px solid var(--base-color);
  width: fit-content;
  padding: 0px 15px;
  display: flex;
  justify-content: center;
  border-radius: 8px;
  line-height: 30px;
  background-color: var(--base-color);
  color: white;
} */

.mfp-arrow-right:before {
  content: "\f061";
  font-family: FontAwesome;
}

.mfp-arrow-left:before {
  content: "\f060";
  font-family: FontAwesome;
}

/* Floating action Buttton */
.float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  left: 40px;
  cursor: pointer;
  background-color: #25d366;
  color: #fff;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 3px #999;
  z-index: 100;
}

.float:hover {
  color: #fff;
}

.my-float {
  margin-top: 16px;
}

.bounce {
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%,
  25%,
  50%,
  75%,
  100% {
    transform: translateY(0);
  }

  40% {
    transform: translateY(-20px);
  }

  60% {
    transform: translateY(-12px);
  }
}

.scroll-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.scroll-to-top .progress-circle {
  position: absolute;
  transform: rotate(-90deg);
}

.scroll-to-top .arrow-up {
  position: absolute;
  font-size: 20px;
  color: #3498db;
  z-index: 2;
}

.img-sticky1 {
  position: sticky;
  height: 100%;
  overflow: visible;
  top: 100px;
}

.include ul li,
.exclude ul li,
.itinerary ul li {
  list-style: disc;
}

/* --- Accordion Container --- */
.accordion {
  max-width: 600px;
  margin: auto;
  border-radius: 8px;
  border: 1px solid #ddd;
  overflow: hidden;
}

/* --- Accordion Header --- */
.accordion input {
  display: none;
}

.accordion label {
  display: block;
  background-color: #f5f5f5;
  color: #333;
  padding: 5px 10px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s;
}

.accordion label:hover {
  background-color: #eaeaea;
}

/* --- Accordion Content --- */
.accordion .content {
  max-height: 0;
  overflow: hidden;
  background: #fff;
  transition: max-height 0.4s ease;
  padding: 0 10px;
}

.accordion input:checked ~ .content {
  max-height: 300px;
  padding: 5px 10px;
}

/* --- Responsiveness --- */
@media (max-width: 600px) {
  .accordion label {
    font-size: 16px;
    padding: 12px;
  }
  .accordion .content {
    font-size: 14px;
  }
}

.tabel-harga {
  width: 100%;
  max-width: 100%;
  margin: 15px auto;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
  background: #fff;
  height: 200px;
}

/* Buat agar tabel rapi */
.tabel-harga table {
  width: 100%;
  /* border-collapse: collapse; */
}

.tabel-harga th {
  background: var(--base-color);
  color: #fff;
  text-align: left;
  padding: 2px 5px;
  font-size: 15px;
  letter-spacing: 0.5px;
}

.tabel-harga td {
  padding: 2px 5px;
  font-size: 13px;
  color: #444;
  /* border-bottom: 1px solid #eee; */
}

/* Efek hover tiap baris */
.tabel-harga tr:hover td {
  background: #fdf3f2;
  transition: 0.3s;
}

.tabel-harga tbody {
  text-align: left;
}

/* Harga tebal dan warna mencolok */
.tabel-harga td:last-child {
  /* text-align: right; */
  font-weight: 500;
  color: var(--base-color);
}

.tabel-harga table {
  border: 0;
}

.text-wisata {
  position: absolute;
  bottom: 0;
  text-align: left;
  left: 10px;
  z-index: 2;
  bottom: 15px;
}

.gallery-box {
  position: relative;
  overflow: hidden;
}

.gallery-image {
  position: relative;
}

.gallery-image::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0));
  z-index: 1;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

/* Biar teks muncul di atas gradasi */
/* .text-wisata {
  position: absolute;
  bottom: 10px;
  left: 15px;
  right: 15px;
  z-index: 2;
} */

/* Efek hover lebih terang */
.gallery-box:hover .gallery-image::after {
  opacity: 0.9;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.1));
}

.accordion-container {
  max-width: 700px;
  margin: 20px auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.accordion-item {
  border-bottom: 1px solid #eee;
  background: #fff;
}

.accordion-header {
  width: 100%;
  background: #cbcbcb1c;
  color: #333;
  text-align: left;
  padding: 15px 20px;
  font-size: 18px;
  border: none;
  outline: none;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.accordion-header:hover {
  background: #de6b3114;
  color: var(--base-color);
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  background: #fff;
  padding: 0 20px;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.accordion-body.show {
  max-height: 400px;
  padding: 15px 20px;
}

.accordion-item.active .accordion-header {
  background: var(--base-color);
  color: white;
}

@media (max-width: 600px) {
  .accordion-header {
    font-size: 16px;
    padding: 12px 16px;
  }

  .accordion-body {
    font-size: 14px;
  }
}

/* Efek zoom pada gambar di dalam .feature-box */
.feature-box-icon img {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  margin-bottom: 15px;
}

/* Saat card di-hover, gambar membesar sedikit */
.feature-box:hover .feature-box-icon img {
  transform: scale(1.15);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* MOBILE / Responsive */
@media (max-width: 600px) {
  .header-title::before {
    top: -10px;
    left: 20px;
  }
  div {
    font-size: 14px;
  }
  .flex-mobile {
    flex-direction: column;
  }
  .img-sticky1 {
    position: relative !important;
    top: 0px !important;
  }
  .img-sticky-keunggulan {
    position: relative !important;
    top: 0px !important;
  }
  .flex-mobile1 {
    flex-direction: column;
  }
  /* .flex-mobile-harga {
    display: flex;
  } */

  .content-slider {
    top: 50%;
  }
  .content-slider-mobile {
    display: flex;
    flex-wrap: nowrap; /* Jangan biarkan pecah ke bawah */
    align-items: center;
    gap: 16px;
  }
  .content-slider-mobile > div {
    flex: 1 1 50%;
    max-width: 50%;
  }
  .content-slider-mobile h1 {
    font-size: 20px;
  }
  .flex-mobile-keunggulan {
    flex-flow: wrap;
  }
  .cta-mobile {
    width: 100%;
    padding-right: 15px;
  }
  .nav-item.active .nav-link::after {
    display: none;
  }
  .nav-link::after {
    display: none;
  }
  .nav-link:hover::after {
    display: none;
  }
}
