:root {
  --bs-orange: #ffa500; /* Define orange color */
}
/*** Spinner Start ***/
/*** Spinner ***/
#spinner {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease-out, visibility 0s linear 0.5s;
  z-index: 99999;
}  

#spinner.show {
  transition: opacity 0.5s ease-out, visibility 0s linear 0s;
  visibility: visible;
  opacity: 1;
}
/*** Spinner End ***/

/* BODY FIXED */
body {  
  overflow-x: hidden; /* Mencegah overflow horizontal */  
}  
  
.navbar {  
  width: 100%; /* Pastikan navbar tidak lebih lebar dari viewport */  
}  
  
.navbar-brand img {  
  max-width: 100%; /* Pastikan logo responsif */  
  height: auto; /* Menjaga rasio aspek logo */  
}  
/* BODY END */

.ckeditor {
  display: block;
}
.deskripsi {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2; /* number of lines to show */
  -webkit-box-orient: vertical;
}

.deskripsi-large {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 8; /* number of lines to show */
  -webkit-box-orient: vertical;
}

.icon i {
  font-size: 2rem;
}

.video {
  background: linear-gradient(
      rgba(136, 180, 78, 0.85),
      rgba(136, 180, 78, 0.85)
    ),
    url(../images/blog-1.jpg) center center no-repeat;
  background-size: cover;
}

.btn-play {
  position: relative;
  display: block;
  box-sizing: content-box;
  width: 65px;
  height: 75px;
  border-radius: 100%;
  border: none;
  outline: none !important;
  padding: 28px 30px 30px 38px;
  background: #ffffff;
  transform: translate(-50%, -50%);
}

.btn-play:before {
  content: "";
  position: absolute;
  z-index: 0;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 120px;
  height: 120px;
  background: #ffffff;
  border-radius: 100%;
  animation: pulse-border 1500ms ease-out infinite;
}

.btn-play:after {
  content: "";
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 120px;
  height: 120px;
  background: #ffffff;
  border-radius: 100%;
  transition: all 200ms;
}

.btn-play span {
  display: block;
  position: relative;
  z-index: 3;
  width: 0;
  height: 0;
  left: 13px;
  border-left: 40px solid var(--bs-primary);
  border-top: 28px solid transparent;
  border-bottom: 28px solid transparent;
}

@keyframes pulse-border {
  0% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }

  100% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(2);
    opacity: 0;
  }
}

.modal-video .modal-dialog {
  position: relative;
  max-width: 800px;
  margin: 60px auto 0 auto;
}

.modal-video .modal-body {
  position: relative;
  padding: 0px;
}

.modal-video .close {
  position: absolute;
  width: 30px;
  height: 30px;
  right: 0px;
  top: -30px;
  z-index: 999;
  font-size: 30px;
  font-weight: normal;
  color: #ffffff;
  background: #000000;
  opacity: 1;
}

@media (min-width: 768px) {
  .icon i {
    font-size: 3rem;
  }
}
.card-custom {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card-custom:hover {
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}
.card-custom img {
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
}
.card-body-custom {
  padding: 20px;
}
.badge-custom {
  padding: 0.5em 0.75em;
  border-radius: 30px;
}
.btn-custom {
  background-color: #343a40;
  color: white;
  border-radius: 30px;
  transition: background-color 0.3s ease;
}
.btn-custom:hover {
  background-color: #495057;
}

.btn-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #da5b1c;
}
.btn-circle i {
  color: #fff; /* Icon color */
}

.back-to-top {
  position: fixed;
  right: 30px;
  bottom: 30px;
  display: flex;
  width: 45px;
  height: 45px;
  align-items: center;
  justify-content: center;
  transition: 0.5s;
  z-index: 99;
}

/*** Button Start ***/
.btn {
  font-weight: 600;
  transition: 0.5s;
}

.btn-square {
  width: 32px;
  height: 32px;
}

.btn-sm-square {
  width: 34px;
  height: 34px;
}

.btn-md-square {
  width: 44px;
  height: 44px;
}

.btn-lg-square {
  width: 56px;
  height: 56px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: normal;
  border-radius: 50%;
}

.btn.btn-primary {
  box-shadow: inset 0 0 0 0 var(--bs-orange); /* Changed to orange */
}

.btn.btn-primary:hover {
  box-shadow: inset 300px 0 0 0 var(--bs-light) !important;
  color: var(--bs-orange) !important; /* Changed to orange */
}

.btn.btn-light {
  box-shadow: inset 0 0 0 0 var(--bs-orange); /* Changed to orange */
}

.btn.btn-light:hover {
  box-shadow: inset 300px 0 0 0 var(--bs-orange); /* Changed to orange */
  color: var(--bs-light) !important;
}

.btn-hover {
  transition: 0.5s;
}

.btn-hover:hover {
  color: var(
    --bs-secondary
  ) !important; /* You may want to change this to orange as well */
}

.btn-outline-orange {
  color: #ffa500; /* Text color */
  border: 2px solid #ffa500; /* Border color */
  transition: background-color 0.3s, color 0.3s; /* Transition effect */
}

.btn-outline-orange:hover {
  background-color: #073f77; /* Background color on hover */
  color: white; /* Text color on hover */
}

/*** Section Title Start ***/
.section-title {
  position: relative;
  display: inline-block;
  text-transform: uppercase;
  color: #ffa500; !important 
}

.section-title::before {
  content: "";
  width: 50px;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  margin-right: -50px;
  border: 1px solid var(--bs-primary) !important;
}

.section-title::after {
  content: "";
  width: 50px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  margin-left: -50px;
  border: 1px solid var(--bs-primary) !important;
}

/*** Topbar Start ***/
.fixed-top .container {
  transition: 0.5s;
}

.topbar {
  padding: 2px 10px 2px 20px;
  background: var(--bs-primary) !important;
}

.topbar a,
.topbar a i {
  transition: 0.5s;
}

.topbar a:hover,
.topbar a i:hover {
  color: var(--bs-secondary) !important;
}

@media (max-width: 768px) {
  .topbar {
    display: none;
  }
  .navbar .logo {
    width: 100px;
  }
}
/*** Topbar End ***/

/*** Navbar ***/  
.navbar {  
  background-color: #f8f9fa; /* Light background */  
  transition: background-color 0.3s, box-shadow 0.3s;  
}  
  
.navbar-light .navbar-nav .nav-link {  
  font-family: "Roboto", sans-serif;  
  padding: 15px 20px; /* Adjusted padding for better spacing */  
  color: #5d6cce; /* Dark text color */  
  font-size: 16px;  
  font-weight: 500;  
  transition: color 0.3s, background-color 0.3s;  
}  
  
.navbar-light .navbar-nav .nav-link:hover,  
.navbar-light .navbar-nav .nav-link.active {  
  color: #ff6f20; /* Orange color on hover */  
  background-color: rgba(255, 111, 32, 0.1); /* Light orange background on hover */  
  border-radius: 5px; /* Rounded corners */  
}  
  
.navbar-light .navbar-brand img {  
  max-height: 60px;  
  transition: transform 0.3s;  
}  
  
.navbar-light .navbar-brand img:hover {  
  transform: scale(1.05); /* Slight zoom effect on hover */  
}  
  
.dropdown-menu {  
  border-radius: 10px; /* Rounded dropdown */  
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow */  
}  
  
.dropdown-item {  
  transition: background-color 0.3s;  
}  
  
.dropdown-item:hover {  
  background-color: #ff6f20; /* Orange background on hover */  
  color: #fff; /* White text on hover */  
}  
  
@media (max-width: 991.98px) {  
  .navbar-light .navbar-nav .nav-link {  
    padding: 10px 15px; /* Adjusted padding for mobile */  
  }  
}  
  
@media (min-width: 992px) {  
  .navbar {  
    position: fixed;  
    width: 100%;  
    top: 0;  
    left: 0;  
    z-index: 999;  
  }  
  
  .navbar.scrolled {  
    background-color: #ffffff; /* Change background on scroll */  
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Shadow on scroll */  
  }  
}  


/*** Carousel Hero Header Start ***/
.carousel-header .carousel-control-prev,
.carousel-header .carousel-control-next {
  background: transparent;
}

.carousel-header .carousel-control-prev .carousel-control-prev-icon {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  padding: 25px 30px;
  border-top-left-radius: 0;
  border-top-right-radius: 50px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 50px;
  background-size: 60% 60%;
}

.carousel-header .carousel-control-next .carousel-control-next-icon {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  padding: 25px 30px;
  border-top-left-radius: 50px;
  border-top-right-radius: 0;
  border-bottom-left-radius: 50px;
  border-bottom-right-radius: 0;
  background-size: 60% 60%;
}

.carousel-header .carousel .carousel-indicators li,
.carousel-header .carousel .carousel-indicators li,
.carousel-header .carousel .carousel-indicators li {
  opacity: 0;
}

.carousel-header .carousel-inner .carousel-item {
  position: relative;
  min-height: 100vh;
}

.carousel-header .carousel-inner .carousel-item img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel-header .carousel-inner .carousel-item .carousel-caption {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  padding-top: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
  background-size: cover;
}

@media (max-width: 768px) {
  .carousel-header .carousel-inner .carousel-item img,
  .carousel-header .carousel-inner .carousel-item .carousel-caption {
    height: 750px;
    margin-top: -100px;
  }
  
  .carousel-header {
    height: 700px !important;
  }

  .carousel-header .carousel-control-prev .carousel-control-prev-icon,
  .carousel-header .carousel-control-next .carousel-control-next-icon {
    opacity: 0;
  }

  .search-bar {
    margin-top: -100px;
    transition: 0.5s;
  }
}

/*** Carousel Hero Header End ***/

/*** Single Page Hero Header Start ***/
.bg-breadcrumb {
  background: linear-gradient(rgba(19, 53, 123, 0.5), rgba(19, 53, 123, 0.5)),
    url(../img/breadcrumb-bg.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  padding: 150px 0 50px 0;
}

.bg-breadcrumb .breadcrumb-item a {
  color: var(--bs-secondary) !important;
}
/*** Single Page Hero Header End ***/

/* lokasi */
.service {  
    position: relative;  
    overflow: hidden;  
  }  
  
  .section-title {  
    font-size: 1.5rem;  
    font-weight: bold;  
    color: #ff6f20; /* Orange color */  
    text-transform: uppercase;  
    margin-bottom: 10px;  
    animation: fadeIn 1s ease-in-out;  
  }  
  
  h2 {  
    font-size: 2.5rem;  
    color: #333; /* Darker color for contrast */  
    animation: fadeIn 1s ease-in-out 0.5s; /* Delay for h2 */  
  }  
  
  .map-container {  
    border-radius: 15px; /* Rounded corners for the map */  
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1); /* Subtle shadow */  
    overflow: hidden; /* Prevent overflow */  
    animation: slideIn 1s ease-in-out; /* Animation for the map */  
  }  
  
  .animated-button {  
    transition: background-color 0.3s, transform 0.3s;  
  }  
  
  .animated-button:hover {  
    background-color: #ffa500; /* Change to orange on hover */  
    transform: scale(1.05); /* Slightly enlarge the button */  
  }  
  
 

/* card info */
.card {  
  transition: transform 0.3s, box-shadow 0.3s;  
}  
  
.card:hover {  
  transform: translateY(-5px); /* Lift effect on hover */  
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1); /* Enhanced shadow on hover */  
}  
  
.icon {  
  display: flex;  
  align-items: center;  
  justify-content: center;  
  width: 60px; /* Fixed width for icons */  
  height: 60px; /* Fixed height for icons */  
  border-radius: 50%; /* Circular background for icons */  
  background-color: rgba(255, 165, 0, 0.1); /* Light orange background */  
}  
  
.description h5 {  
  font-size: 1.25rem; /* Slightly larger font size */  
  color: #333; /* Darker text color */  
}  
  
.description p {  
  color: #555; /* Slightly lighter text color */  
}  


/*** About Start ***/
.about .container .section-about-title {
  position: relative;
  display: inline-block;
  text-transform: uppercase;
  color: var(--bs-orange); /* Changed to orange */
}

.about .container .section-about-title::before {
  content: "";
  width: 50px;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  margin-right: -50px;
  border: 1px solid var(--bs-orange) !important; /* Changed to orange */
}
/*** About End ***/

/*** Services Start ***/
.service .service-content-inner {
  transition: 0.5s;
}
.service .service-content-inner:hover {
  position: relative;
  background: var(--bs-primary) !important;
}

.service .service-content-inner .service-content h5,
.service .service-content-inner .service-content p,
.service .service-content-inner .service-icon i {
  transition: 0.5s;
}

.service .service-content-inner:hover .service-content h5,
.service .service-content-inner:hover .service-content p,
.service .service-content-inner:hover .service-icon i {
  color: var(--bs-white) !important;
}
/*** Service End ***/

/*** Destination Start ***/
.destination .tab-class .tab-content .tab-pane .destination-img {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  z-index: 1;
}

.destination
  .tab-class
  .tab-content
  .tab-pane
  .destination-img
  .destination-overlay {
  position: absolute;
  bottom: -100%;
  left: 0;
  z-index: 3;
  transition: 0.5s;
}

.destination .tab-class .tab-content .tab-pane .destination-img .search-icon {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  display: flex;
  justify-content: end;
  padding: 20px 20px 0 0;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  transition: 0.5s;
}

.destination
  .tab-class
  .tab-content
  .tab-pane
  .destination-img
  .search-icon
  a
  i {
  opacity: 0;
  transition: 0.5s;
}

.destination .tab-class .nav-item {
  padding: 0 0 20px 0;
}
.destination .tab-class .nav-item a.active {
  background: var(--bs-primary) !important;
}

.destination .tab-class .nav-item a.active span {
  color: var(--bs-white) !important;
}

.destination .tab-class .tab-content .destination-img:hover .search-icon {
  background: rgba(19, 53, 123, 0.4);
}

.destination
  .tab-class
  .tab-content
  .destination-img:hover
  .destination-overlay {
  bottom: 0;
}

.destination .tab-class .tab-content .destination-img:hover .search-icon a i {
  opacity: 1;
}

.destination .tab-class .tab-content .destination-img img {
  transition: 0.5s;
}

.destination .tab-class .tab-content .destination-img:hover img {
  transform: scale(1.2);
}
/*** Destination End ***/

/*** Packages Start ***/
.packages .packages-item .packages-img {
  position: relative;
  overflow: hidden;
  transition: 0.5s;
  border-top-right-radius: 10px;
  border-top-left-radius: 10px;
  z-index: 1;
}

.packages .packages-item .packages-img .packages-info {
  background: rgba(0, 0, 0, 0.3);
}

.packages .packages-item .packages-img .packages-info small,
.packages .packages-item .packages-img .packages-info small i {
  color: var(--bs-white);
  transition: 0.5s;
}

.packages .packages-item .packages-img::after {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 0px solid;
  border-radius: 10px !important;
  visibility: hidden;
  transition: 0.7s;
  z-index: 3;
}

.packages .packages-item .packages-img:hover.packages-img::after {
  width: 100%;
  height: 100%;
  border: 300px solid;
  border-color: rgba(19, 53, 123, 0.6) rgba(19, 53, 123, 0.6)
    rgba(19, 53, 123, 0.6) rgba(19, 53, 123, 0.6);
  visibility: visible;
}

.packages .packages-item .packages-img small,
.packages .packages-item .packages-img small i {
  transition: 0.5s;
}

.packages .packages-item .packages-img:hover small,
.packages .packages-item .packages-img:hover small i {
  color: var(--bs-white) !important;
}

.packages .packages-item .packages-img img {
  transition: 0.5s;
}

.packages .packages-item .packages-img:hover img {
  transform: scale(1.3);
}

.packages .packages-item .packages-img .packages-price {
  position: absolute;
  width: 100px;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  display: inline-block;
  background: orange; /* Mengubah warna latar belakang menjadi oranye */
  color: var(--bs-white);
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  z-index: 5;
}

.packages .packages-carousel {
  position: relative;
}

.packages .packages-carousel .owl-nav .owl-prev {
  position: absolute;
  top: -50px;
  left: 0;
  padding: 5px 30px;
  border: 1px solid orange; /* Mengubah warna border menjadi oranye */
  border-radius: 30px;
  transition: 0.5s;
}

.packages .packages-carousel .owl-nav .owl-next {
  position: absolute;
  top: -50px;
  right: 0;
  padding: 5px 30px;
  border: 1px solid orange; /* Mengubah warna border menjadi oranye */
  border-radius: 30px;
  transition: 0.5s;
}

.packages .packages-carousel .owl-nav .owl-prev i,
.packages .packages-carousel .owl-nav .owl-next i {
  color: orange; /* Mengubah warna ikon menjadi oranye */
  font-size: 17px;
  transition: 0.5s;
}

.packages .packages-carousel .owl-nav .owl-prev:hover,
.packages .packages-carousel .owl-nav .owl-next:hover {
  background: orange; /* Mengubah warna latar belakang saat hover menjadi oranye */
}

.packages .packages-carousel .owl-nav .owl-prev:hover i,
.packages .packages-carousel .owl-nav .owl-next:hover i {
  color: var(--bs-white); /* Tetap putih saat hover */
}

.packages-item img {  
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3); /* Bayangan pada gambar */  
}  
  
.packages-content {  
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3); /* Bayangan pada konten paket */  
}  
  
.btn-hover:hover {  
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4); /* Bayangan lebih besar saat hover */  
}  

/*** Packages End ***/

/*** Explore Tour Start ***/  
.ExploreTour .tab-class .nav-item {  
  padding: 0 0 20px 0;  
}  
.ExploreTour .tab-class .nav-item a.active {  
  background: orange !important; /* Mengubah warna latar belakang menjadi oranye */  
}  
  
.ExploreTour .tab-class .nav-item a.active span {  
  color: var(--bs-white) !important;  
}  
  
/* National Tour Start */  
.ExploreTour #NationalTab-1 .national-item {  
  position: relative;  
  border-radius: 10px;  
  overflow: hidden;  
}  
  
.ExploreTour #NationalTab-1 .national-item img {  
  transition: 0.5s;  
}  
  
.ExploreTour #NationalTab-1 .national-item:hover img {  
  transform: scale(1.2);  
}  
  
.ExploreTour #NationalTab-1 .national-item .national-content {  
  position: absolute;  
  width: 100%;  
  height: 100%;  
  top: 0;  
  left: 0;  
  border-radius: 10px;  
  padding: 20px;  
  background: rgba(0, 0, 0, 0.2);  
  display: flex;  
  align-items: end;  
  justify-content: center;  
  transition: 0.5s;  
}  
  
.ExploreTour #NationalTab-1 .national-item:hover .national-content {  
  background: rgba(19, 53, 123, 0.6); /* Tetap sama, jika ingin diubah, ganti dengan warna oranye */  
}  
  
.ExploreTour #NationalTab-1 .national-item .national-plus-icon {  
  position: absolute;  
  top: 50%;  
  left: 50%;  
  transform: translate(-50%, -50%);  
  transition: 0.5s;  
  opacity: 0;  
}  
  
.ExploreTour #NationalTab-1 .national-item:hover .national-plus-icon {  
  opacity: 1;  
}  
  
.ExploreTour #NationalTab-1 .national-item .tour-offer {  
  position: absolute;  
  top: -1px;  
  left: -1px;  
  padding: 20px;  
  border-top-right-radius: 40px;  
  border-top-left-radius: 20px;  
  border-bottom-right-radius: 0;  
  border-bottom-left-radius: 80px;  
  background: orange; /* Mengubah warna latar belakang menjadi oranye */  
  color: var(--bs-white);  
}  
  
/* International Tour Start */  
.ExploreTour #InternationalTab-2 .international-item {  
  position: relative;  
  border-radius: 10px;  
  overflow: hidden;  
}  
  
.ExploreTour #InternationalTab-2 .international-item img {  
  transition: 0.5s;  
}  
  
.ExploreTour #InternationalTab-2 .international-item:hover img {  
  transform: scale(1.2);  
}  
  
.ExploreTour #InternationalTab-2 .international-item .tour-offer {  
  position: absolute;  
  top: -1px;  
  left: -1px;  
  padding: 20px;  
  border-top-right-radius: 30px;  
  border-top-left-radius: 20px;  
  border-bottom-right-radius: 0;  
  border-bottom-left-radius: 80px;  
  background: orange; /* Mengubah warna latar belakang menjadi oranye */  
  color: var(--bs-white);  
}  
  
.ExploreTour #InternationalTab-2 .international-item .international-content {  
  position: absolute;  
  width: 100%;  
  height: 100%;  
  top: 0;  
  left: 0;  
  border-radius: 10px;  
  padding: 20px;  
  background: rgba(0, 0, 0, 0.3);  
  display: flex;  
  align-items: end;  
  justify-content: center;  
  transition: 0.5s;  
}  
  
.ExploreTour  
  #InternationalTab-2  
  .international-item:hover  
  .international-content {  
  background: rgba(19, 53, 123, 0.6); /* Tetap sama, jika ingin diubah, ganti dengan warna oranye */  
}  
  
.ExploreTour  
  #InternationalTab-2  
  .international-item  
  .international-content  
  .international-info  
  a {  
  font-size: 14px;  
}  
  
.ExploreTour #InternationalTab-2 .international-item .international-plus-icon {  
  position: absolute;  
  top: 50%;  
  left: 50%;  
  transform: translate(-50%, -50%);  
  transition: 0.5s;  
  opacity: 0;  
}  
  
.ExploreTour  
  #InternationalTab-2  
  .international-item:hover  
  .international-plus-icon {  
  opacity: 1;  
}  
  
/* carousel Start */  
.ExploreTour  
  #InternationalTab-2  
  .InternationalTour-carousel  
  .international-item {  
  position: relative;  
  overflow: hidden;  
}  
  
.ExploreTour #InternationalTab-2 .InternationalTour-carousel .owl-dots {  
  margin-top: 30px;  
  display: flex;  
  align-items: center;  
  justify-content: center;  
}  
  
.ExploreTour #InternationalTab-2 .InternationalTour-carousel .owl-dot {  
  position: relative;  
  display: inline-block;  
  margin: 0 5px;  
  width: 15px;  
  height: 15px;  
  background: var(--bs-light);  
  border: 1px solid orange; /* Mengubah warna border menjadi oranye */  
  border-radius: 10px;  
  transition: 0.5s;  
}  
  
.ExploreTour #InternationalTab-2 .InternationalTour-carousel .owl-dot.active {  
  width: 40px;  
  background: orange; /* Mengubah warna latar belakang aktif menjadi oranye */  
}  
/*** Explore Tour End ***/  


/*** Gallery Start ***/
.gallery .gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.gallery .gallery-item img {
  min-height: 300px;
  object-fit: cover;
}

.gallery .gallery-item .gallery-content {
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  padding: 15px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  transition: 0.5s;
}

.gallery .gallery-item .gallery-content .gallery-info {
  position: relative;
  margin-bottom: -100%;
  opacity: 0;
  transition: 0.5s;
}

.gallery .gallery-item .gallery-plus-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: 0.5s;
  opacity: 0;
}

.gallery .gallery-item:hover .gallery-content .gallery-info,
.gallery .gallery-item:hover .gallery-plus-icon {
  opacity: 1;
  margin: 0;
}

.gallery .gallery-item img {
  transition: 0.5s;
}

.gallery .gallery-item:hover img {
  transform: scale(1.2);
}

.gallery .gallery-item:hover .gallery-content {
  background: rgba(19, 53, 123, 0.8);
}

.gallery .tab-class .nav-item {
  padding: 0 0 20px 0;
}
.gallery .tab-class .nav-item a.active {
  background: var(--bs-primary) !important;
}

.gallery .tab-class .nav-item a.active span {
  color: var(--bs-white) !important;
}

/*** Gallery End ***/

/*** Tour Booking Start ***/
.booking {
  background: linear-gradient(rgba(19, 53, 123, 0.8), rgba(19, 53, 123, 0.8)),
    url(../img/tour-booking-bg.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}

.booking .container .section-booking-title {
  position: relative;
  display: inline-block;
  text-transform: uppercase;
  color: var(--bs-white);
}

.booking .container .section-booking-title::before {
  content: "";
  width: 50px;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  margin-right: -50px;
  border: 1px solid var(--bs-white) !important;
}

.booking .container form .btn.btn-primary {
  box-shadow: inset 0 0 0 0 var(--bs-primary);
}

.booking .container form .btn.btn-primary:hover {
  box-shadow: inset 800px 0 0 0 var(--bs-light) !important;
  color: var(--bs-primary) !important;
}

/*** Tour Booking end ***/

  body {  
    font-family: 'Arial', sans-serif;  
    color: #333;  
  }  
  
  .section-title {  
    font-size: 1.5rem;  
    font-weight: 600;  
    color: #da5b1c;  
    background-color: #f8f9fa;  
    padding: 0.5rem 1rem;  
    border-radius: 20px;  
    display: inline-block;  
  }  
  
  h2 {  
    font-size: 2.5rem;  
    font-weight: 700;  
    color: #212529;  
  }  
  
  .packages-item {  
    transition: transform 0.3s ease, box-shadow 0.3s ease;  
    margin-bottom: 2rem;  
  }  
  
  .packages-item:hover {  
    transform: translateY(-10px);  
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);  
  }  
  
  .packages-item img {  
    width: 100%;  
    height: 300px;  
    object-fit: cover;  
    border-top-left-radius: 1rem;  
    border-top-right-radius: 1rem;  
  }  
  
  .packages-content {  
    padding: 1rem;  
    border-bottom-left-radius: 1rem;  
    border-bottom-right-radius: 1rem;  
  }  
  
  .packages-content h5 {  
    font-size: 1.5rem;  
    font-weight: 600;  
    color: #212529;  
  }  
  
  .packages-content small {  
    font-size: 0.875rem;  
  }  
  
  .packages-content p {  
    font-size: 1rem;  
    line-height: 1.6;  
    color: #6c757d;  
  }  
  
  .packages-content .btn {  
    background-color: #da5b1c;  
    color: #fff;  
    border-color: #ff6f20;  
    transition: background-color 0.3s ease, color 0.3s ease;  
  }  
  
  .packages-content .btn:hover {  
    background-color: #ff6f20;  
    border-color: #073f77;  
  }  
  
  /* Responsive Styles */  
  @media (max-width: 992px) {  
    .packages-item {  
      margin-bottom: 1.5rem;  
    }  
  
    .packages-item img {  
      height: 250px;  
    }  
  
    .packages-content h5 {  
      font-size: 1.25rem;  
    }  
  
    .packages-content p {  
      font-size: 0.9rem;  
    }  
  }  
  
  @media (max-width: 768px) {  
    .packages-item {  
      margin-bottom: 1rem;  
    }  
  
    .packages-item img {  
      height: 200px;  
    }  
  
    .packages-content h5 {  
      font-size: 1.125rem;  
    }  
  
    .packages-content p {  
      font-size: 0.875rem;  
    }  
  }  
  
  @media (max-width: 576px) {  
    .packages-item {  
      margin-bottom: 0.5rem;  
    }  
  
    .packages-item img {  
      height: 150px;  
    }  
  
    .packages-content h5 {  
      font-size: 1rem;  
    }  
  
    .packages-content p {  
      font-size: 0.8rem;  
    }  
  }  

/*** Travel Guide Start ***/
.guide .guide-item .guide-img {
  position: relative;
}

.guide .guide-item .guide-img .guide-icon {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  margin-bottom: -50px;
  display: flex;
  justify-content: center;
  border: 1px solid var(--bs-primary);
  background: var(--bs-light);
  z-index: 9;
}

.guide .guide-item .guide-img .guide-img-efects {
  position: relative;
  overflow: hidden;
  border-top-right-radius: 10px;
  border-top-left-radius: 10px;
}

.guide .guide-item .guide-img .guide-img-efects::after {
  content: "";
  width: 100%;
  height: 0;
  position: absolute;
  top: 0;
  left: 0;
  transition: 0.5s;
}

.guide .guide-item:hover .guide-img-efects::after {
  height: 100%;
  border-top-right-radius: 10px;
  border-top-left-radius: 10px;
  background: rgba(19, 53, 123, 0.5);
}

.guide .guide-item .guide-img-efects img {
  transition: 0.5s;
}
.guide .guide-item:hover .guide-img-efects img {
  transform: scale(1.1);
}

.guide .guide-item .guide-title {
  position: relative;
  background: var(--bs-light);
  transition: 0.5s;
}

.guide .guide-item .guide-title::after {
  content: "";
  width: 100%;
  height: 0;
  position: absolute;
  bottom: 0;
  left: 0;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
  transition: 0.5s;
}

.guide .guide-item:hover .guide-title::after {
  height: 100%;
  background: var(--bs-primary) !important;
  color: var(--bs-white);
}

.guide .guide-item .guide-title .guide-title-inner,
.guide .guide-item:hover .guide-title .guide-title-inner h4 {
  transition: 0.5s;
}

.guide .guide-item:hover .guide-title .guide-title-inner {
  position: relative;
  color: var(--bs-white) !important;
  z-index: 2;
}

.guide .guide-item:hover .guide-title .guide-title-inner h4 {
  color: var(--bs-white);
}
/*** Travel Guide End ***/

/*** Blog Start ***/
.blog .blog-item .blog-img {
  position: relative;
}

.blog .blog-item .blog-img .blog-info {
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 0;
  display: flex;
  background: rgba(255, 255, 255, 0.2);
  color: var(--bs-white);
}

.blog .blog-item .blog-img .blog-img-inner {
  position: relative;
  border-top-right-radius: 10px;
  border-top-left-radius: 10px;
}

.blog .blog-item .blog-img .blog-img-inner .blog-icon {
  position: absolute;
  width: 100%;
  height: 0;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-top-right-radius: 10px;
  border-top-left-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.5s;
}

.blog .blog-item .blog-img .blog-img-inner .blog-icon a {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: 0.5s;
}

.blog .blog-item .blog-img:hover .blog-img-inner .blog-icon a {
  opacity: 1;
}

.blog .blog-item .blog-img:hover .blog-img-inner .blog-icon {
  height: 100%;
  background: rgba(19, 53, 123, 0.6);
  opacity: 1;
}

.blog .blog-item .blog-img .blog-img-inner {
  overflow: hidden;
}

.blog .blog-item .blog-img .blog-img-inner img {
  transition: 0.5s;
}

.blog .blog-item .blog-img:hover .blog-img-inner img {
  transform: scale(1.2);
}
/*** Blog End ***/

/*** Testimonial Start ***/
.testimonial .testimonial-carousel {
  position: relative;
}

.testimonial .testimonial-carousel .testimonial-item .testimonial-img {
  position: relative;
  width: 100px;
  height: 100px;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 3px solid var(--bs-primary);
  border-style: dotted;
  border-radius: 50%;
}

.testimonial .testimonial-carousel .owl-dots {
  margin-top: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial .testimonial-carousel .owl-dot {
  position: relative;
  display: inline-block;
  margin: 0 5px;
  width: 15px;
  height: 15px;
  background: var(--bs-light);
  border: 1px solid var(--bs-primary);
  border-radius: 10px;
  transition: 0.5s;
}

.testimonial .testimonial-carousel .owl-dot.active {
  width: 40px;
  background: var(--bs-primary);
}

.testimonial .testimonial-carousel .owl-nav .owl-prev {
  position: absolute;
  top: -55px;
  left: 0;
  padding: 5px 30px;
  border: 1px solid var(--bs-primary);
  border-radius: 30px;
  transition: 0.5s;
}

.testimonial .testimonial-carousel .owl-nav .owl-next {
  position: absolute;
  top: -55px;
  right: 0;
  padding: 5px 30px;
  border: 1px solid var(--bs-primary);
  border-radius: 30px;
  transition: 0.5s;
}

.testimonial .testimonial-carousel .owl-nav .owl-prev i,
.testimonial .testimonial-carousel .owl-nav .owl-next i {
  color: var(--bs-primary);
  font-size: 17px;
  transition: 0.5s;
}

.testimonial .testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial .testimonial-carousel .owl-nav .owl-next:hover {
  background: var(--bs-primary);
}

.testimonial .testimonial-carousel .owl-nav .owl-prev:hover i,
.testimonial .testimonial-carousel .owl-nav .owl-next:hover i {
  color: var(--bs-white);
}

.testimonial
  .testimonial-carousel
  .owl-item.center
  .testimonial-item
  .testimonial-comment {
  background: var(--bs-primary) !important;
  color: var(--bs-white);
  transition: 0.5s;
}

.testimonial
  .testimonial-carousel
  .owl-item.center
  .testimonial-item
  .testimonial-img {
  border: 3px solid var(--bs-white);
  border-style: dotted;
  transition: 0.5s;
}
/*** Testimonial End ***/

/*** Contact Start ***/
.contact .container form .btn.btn-primary {
  box-shadow: inset 0 0 0 0 var(--bs-primary);
}

.contact .container form .btn.btn-primary:hover {
  box-shadow: inset 1000px 0 0 0 var(--bs-light) !important;
  color: var(--bs-primary) !important;
}
/*** Contact End ***/

/*** Subscribe Start ***/
.subscribe {
  background: linear-gradient(rgba(19, 53, 123, 0.6), rgba(19, 53, 123, 0.6)),
    url(../img/subscribe-img.jpg);
  background-attachment: fixed;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.subscribe .subscribe-title {
  position: relative;
  display: inline-block;
  text-transform: uppercase;
  color: var(--bs-white);
}

.subscribe .subscribe-title::before {
  content: "";
  width: 50px;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  margin-right: -50px;
  border: 1px solid var(--bs-white) !important;
}

.subscribe .subscribe-title::after {
  content: "";
  width: 50px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  margin-left: -50px;
  border: 1px solid var(--bs-white) !important;
}
/*** Subscribe End ***/

/*** Footer Start ***/
/* CSS untuk Footer */
.footer {
  background-color: #1a1a1a; /* Warna latar belakang footer */
  color: #ffffff; /* Warna teks */
}

.footer-item h3 {
  font-size: 24px;
  margin-bottom: 15px;
}

.footer-item p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 10px;
}

.footer-item h4 {
  font-size: 18px;
  margin-bottom: 15px;
}

.footer-item ul {
  padding-left: 0;
}

.footer-item ul li {
  margin-bottom: 10px;
}

/* CSS untuk Tombol Media Sosial */
.btn-social {
  width: 50px; /* Ukuran tombol */
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%; /* Membuat tombol bulat */
  color: #ffffff; /* Warna ikon */
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.btn-social:hover {
  transform: translateY(-5px); /* Efek hover naik sedikit */
}

.btn-youtube {
  background-color: #ff0000; /* Warna YouTube */
}

.btn-youtube:hover {
  background-color: #cc0000; /* Warna hover YouTube */
}

.btn-instagram {
  background-color: #e4405f; /* Warna Instagram */
}

.btn-instagram:hover {
  background-color: #c13584; /* Warna hover Instagram */
}

.btn-tiktok {
  background-color: #000000; /* Warna TikTok */
}

.btn-tiktok:hover {
  background-color: #333333; /* Warna hover TikTok */
}

/* CSS untuk Logo */
.footer-item img {
  width: 80px; /* Sesuaikan ukuran logo */
  height: auto; /* Biarkan tinggi menyesuaikan proporsi */
  margin-bottom: 15px; /* Jarak antara logo dan teks di bawahnya */
}

.footer-item ul li a {
  color: #ffffff; /* Warna link */
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-item ul li a:hover {
  color: #1abc9c; /* Warna link saat hover */
}

@media (max-width: 768px) {
  .footer-item {
    text-align: center;
    margin-bottom: 30px;
  }

  .footer-item h4 {
    margin-bottom: 15px;
  }

  .footer-item ul li {
    margin-bottom: 8px;
  }
}
/*** Footer End ***/

/*** copyright Start ***/
.copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--bs-dark) !important;
}
/*** copyright end ***/
