:root {
  --bs-primary: #143e0e;
  --base-color: #143e0e;
  --second-color: #c8922a; /* Luxury Gold */
  --third-color: #e86b1c; /* Burnt Orange */
  --very-light-base-color: #f5f2ea;
  --bs-primary-rgb: 20, 62, 14;
  --bs-secondary-rgb: 200, 146, 42;
  --primary-font: "DM Sans", sans-serif;
  --alt-font: "Playball", cursive;
}
body,
html {
  height: auto;
}
.bg-hitam {
  background-color: #000000;
}
.text-hitam {
  color: #000000;
}
.primary-font {
  font-family: var(--primary-font) !important;
}

.alt-font {
  font-family: var(--alt-font) !important;
}

.bg-base-color {
  background-color: var(--base-color);
}

.bg-very-light-base-color {
  background-color: var(--very-light-base-color);
}

.bg-second-color {
  background-color: var(--second-color);
}
.swiper-pagination-bullet-active {
    background: var(--second-color) !important;
}
.text-base-color {
  color: var(--base-color);
}

.text-black {
  color: #000000;
}

.text-second-color {
  color: var(--second-color);
}
.bg-overlay {
  position: relative;
  z-index: 1;
}

.bg-overlay::before {
  content: "";
  position: absolute;
  inset: 0; /* sama dengan top:0; left:0; right:0; bottom:0 */
  background-color: rgba(0, 0, 0, 0.8); /* hitam transparan 50% */
  z-index: -1;
}
/*==========================================================================
* GENERAL
==========================================================================*/
.rounded-5 {
  border-radius: 1.5rem;
}

.bg-soft-primary {
  background-color: #f7f9fd !important;
}

/*==========================================================================
* BUTTON CSS
==========================================================================*/
.btn-base-color {
  --bs-btn-color: #000;
  --bs-btn-bg: var(--base-color);
  --bs-btn-border-color: var(--base-color);
  --bs-btn-hover-color: #000;
  --bs-btn-hover-bg: var(--base-color);
  --bs-btn-hover-border-color: var(--base-color);
  --bs-btn-focus-shadow-rgb: 92, 140, 229;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: var(--base-color);
  --bs-btn-active-border-color: var(--base-color);
  --bs-btn-active-shadow: 0rem 0.25rem 0.75rem rgba(30, 34, 40, 0.15);
  --bs-btn-disabled-color: #000;
  --bs-btn-disabled-bg: var(--base-color);
  --bs-btn-disabled-border-color: var(--base-color);
}

.btn-primary {
  --bs-btn-color: #fff;
  --bs-btn-bg: var(--base-color);
  --bs-btn-border-color: var(--base-color);
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: var(--base-color);
  --bs-btn-hover-border-color: var(--base-color);
  --bs-btn-focus-shadow-rgb: 92, 140, 229;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: var(--base-color);
  --bs-btn-active-border-color: var(--base-color);
  --bs-btn-active-shadow: 0rem 0.25rem 0.75rem rgba(30, 34, 40, 0.15);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: var(--base-color);
  --bs-btn-disabled-border-color: var(--base-color);
}

.gradient-1 {
  background-image: linear-gradient(
    90deg,
    rgba(24, 41, 87, 1) 0%,
    rgba(0, 146, 171, 1) 75%
  );
}
.gradient-1.btn-outline-gradient,
.gradient-1.btn-outline-gradient span {
  background-image:
    linear-gradient(rgba(var(--bs-white-rgb), 0), rgba(var(--bs-white-rgb), 0)),
    linear-gradient(120deg, var(--base-color) 10%, #ffa406 100%);
}

/* CUSTOM BUTTON */
.build_button {
  display: inline-flex;
  align-items: center;
  position: relative;
  z-index: 3;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  transition: 0.4s;
  font-family: var(--primary-font);
  font-size: 16px;
  font-weight: 600;
  line-height: 26px;
  text-transform: uppercase;
  color: white;
  background: var(--base-color);
  border-radius: 50px 50px 50px 50px;
  padding: 8px 8px 8px 30px;
  gap: 20px;
  &::before {
    content: "";
    z-index: -1;
    position: absolute;
    top: 50%;
    left: 100%;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--second-color);
    transform-origin: 100% 50%;
    transform: scale3d(1, 2, 1);
    transition:
      transform 0.4s,
      opacity 0.4s;
    transition-timing-function: cubic-bezier(0.7, 0, 0.9, 1);
  }
  i {
    position: relative;
    z-index: 2;
    transition: 0.4s;
    color: white;
    background: #017eb9;
    font-size: 26px;
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px 50px 50px 50px;
  }
  &:hover {
    color: white;
    i {
      color: var(--second-color);
      background: white;
      transform: rotate(45deg);
    }
    &::before {
      transform: scale3d(10, 9, 1);
      transform-origin: 110% 55%;
    }
  }
}

.build_button-wa {
  display: inline-flex;
  align-items: center;
  position: relative;
  z-index: 3;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  transition: 0.4s;
  font-family: var(--primary-font);
  font-size: 16px;
  font-weight: 600;
  line-height: 26px;
  text-transform: uppercase;
  color: var(--base-color);
  background: var(--bs-white);
  border-radius: 50px 50px 50px 50px;
  padding: 8px 8px 8px 30px;
  gap: 20px;
  &::before {
    content: "";
    z-index: -1;
    position: absolute;
    top: 50%;
    left: 100%;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--base-color);
    transform-origin: 100% 50%;
    transform: scale3d(1, 2, 1);
    transition:
      transform 0.4s,
      opacity 0.4s;
    transition-timing-function: cubic-bezier(0.7, 0, 0.9, 1);
  }
  i {
    position: relative;
    z-index: 2;
    transition: 0.4s;
    color: white;
    background: #017eb9;
    font-size: 26px;
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px 50px 50px 50px;
  }
  &:hover {
    color: white;
    i {
      color: var(--second-color);
      background: white;
      transform: rotate(45deg);
    }
    &::before {
      transform: scale3d(10, 9, 1);
      transform-origin: 110% 55%;
    }
  }
}

.build_button-detail {
  display: inline-flex;
  align-items: center;
  position: relative;
  z-index: 3;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  transition: 0.4s;
  font-family: var(--primary-font);
  font-size: 14px;
  font-weight: 600;
  line-height: 26px;
  text-transform: uppercase;
  color: white;
  background: var(--base-color);
  border-radius: 50px 50px 50px 50px;
  padding: 8px 8px 8px 30px;
  gap: 20px;
  &::before {
    content: "";
    z-index: -1;
    position: absolute;
    top: 50%;
    left: 100%;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--second-color);
    transform-origin: 100% 50%;
    transform: scale3d(1, 2, 1);
    transition:
      transform 0.4s,
      opacity 0.4s;
    transition-timing-function: cubic-bezier(0.7, 0, 0.9, 1);
  }
  i {
    position: relative;
    z-index: 2;
    transition: 0.4s;
    color: white;
    background: #017eb9;
    font-size: 17px;
    width: 27px;
    height: 27px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px 50px 50px 50px;
  }
  &:hover {
    color: white;
    i {
      color: var(--second-color);
      background: white;
      transform: rotate(45deg);
    }
    &::before {
      transform: scale3d(10, 9, 1);
      transform-origin: 110% 55%;
    }
  }
}

/*==========================================================================
* START WA/ APPO BTN / SCROLL TOP
==========================================================================*/
.showhide {
  visibility: hidden;
  opacity: 0;
}

.showhide.show {
  opacity: 1;
  visibility: visible;
}

.flt-btn {
  border-radius: 30px;
  display: flex;
  height: 45px;
  min-width: 45px;
  position: fixed;
  cursor: pointer;
  text-align: center;
  z-index: 100;
  align-items: center;
  justify-content: center;
  transition: all 0.8s;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
}

.appo-btn {
  position: fixed;
  left: 20px;
  bottom: 100px;
  line-height: 40px;
  color: #fff;
  background: var(--base-color);
  border: 2px solid #fff;
}

.appo-btn a {
  color: #fff !important;

  display: block;
}

.wa-btn {
  position: fixed;
  left: 20px;
  bottom: 40px;
  line-height: 48px;
  color: #fff;
  background: linear-gradient(to right, #61dc6a 0, #2bc911 100%, #61dc6a 200%);
}

.wa-btn a {
  color: #fff !important;
  height: 100%;
}

.flt-btn span {
  vertical-align: middle;
  font-size: 14px;
  letter-spacing: -15px;
  opacity: 0;
  line-height: 45px;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
}

.flt-btn:hover {
  color: #fff;
  padding: 0 20px;
}

.flt-btn:hover span {
  opacity: 1;
  letter-spacing: 0;
  padding-left: 5px;
}

.wa-btn::after {
  z-index: -1;
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 45px;
  height: 45px;
  animation: ripple 1.6s ease-out infinite;
  opacity: 1;
  background: #4bc75a;
  border-radius: 30px;
  -webkit-animation: ripple 1.6s ease-out infinite;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
}

.appo-btn::after {
  z-index: -1;
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 45px;
  height: 45px;
  animation: ripple 1.7s ease-out infinite;
  opacity: 1;
  background: var(--base-color);
  border-radius: 30px;
  -webkit-animation: ripple 1.7s ease-out infinite;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
}

button.scroll-top:focus {
  outline: none;
}

.scroll-top.open {
  bottom: 40px;
}

.scroll-top {
  width: 45px;
  height: 45px;
  line-height: 45px;
  position: fixed;
  bottom: 105%;
  right: 25px;
  font-size: 16px;
  border-radius: 50%;
  z-index: 99;
  color: #fff;
  text-align: center;
  cursor: pointer;
  background: var(--base-color);
  transition: 1s ease;
  border: none;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.scroll-top span {
  color: #fff;
}

.scroll-top:after {
  position: absolute;
  z-index: -1;
  content: "";
  top: 100%;
  left: 5%;
  height: 10px;
  width: 90%;
  opacity: 1;
  background: radial-gradient(
    ellipse at center,
    rgba(0, 0, 0, 0.25) 0%,
    rgba(0, 0, 0, 0) 80%
  );
  animation: ripple 1.7s ease-out infinite;
  -webkit-animation: ripple 1.7s ease-out infinite;
}

.wa-btn::after {
  z-index: -1;
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 45px;
  height: 45px;
  animation: ripple 1.6s ease-out infinite;
  opacity: 1;
  background: #4bc75a;
  border-radius: 50%;
  -webkit-animation: ripple 1.6s ease-out infinite;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

@keyframes ripple {
  0% {
    transform: scale(0);
    opacity: 1;
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
  }

  100% {
    transform: scale(1.5);
    opacity: 0;
    -webkit-transform: scale(1.5);
    -moz-transform: scale(1.5);
    -ms-transform: scale(1.5);
    -o-transform: scale(1.5);
  }
}
/* END WA/ APPO BTN / SCROLL TOP */

.btn-group-very-sm > .btn,
.btn-very-sm {
  --bs-btn-padding-y: 0.4rem;
  --bs-btn-padding-x: 1rem;
  --bs-btn-font-size: 0.7rem;
  --bs-btn-border-radius: 0.4rem;
}

.btn-group-very-sm > .btn-icon.btn,
.btn-icon.btn-very-sm {
  padding-top: 5px;
  padding-bottom: 5px;
}

.btn-group-very-sm > .btn-icon.btn i,
.btn-icon.btn-very-sm i {
  font-size: 0.8rem;
}

/*==========================================================================
* BACKGROUND SECTION
==========================================================================*/
.background-hero {
  position: relative;
  z-index: 1;
  /* overflow: hidden; */
}

.background-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    linear-gradient(90deg, rgb(24 41 87 / 85%) 0%, rgb(0 146 171 / 80%) 75%),
    url(../../../images/lain-lain/bg-layanan.webp);
  /* background: url("../../../images/lain-lain/bg-layanan.webp"); */
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom;
  z-index: -1;
  /* opacity: 1; */
}

@media (max-width: 991.98px) {
  .background-hero::before {
    width: 100%;
    height: 60%;
    background-position: right;
  }
}

.background-1 {
  position: relative;
  z-index: 1;
  /* overflow: hidden; */
}

.background-1::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../../../images/lain-lain/globe-1.png");
  /* background: linear-gradient(to bottom, rgb(255 255 255), rgb(0 0 0 / 0%)),
    url("../../../images/lain-lain/bg-welcome.webp"); */
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom;
  z-index: -1;
  opacity: 0.5;
}

.background-2 {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.background-2::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../../../images/lain-lain/bg-keunggulan.webp");
  background-attachment: fixed;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1;
  opacity: 0.2;
}

.background-3 {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.background-3::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    linear-gradient(
      90deg,
      rgb(255 255 255 / 90%) 0%,
      rgb(255 255 255 / 90%) 75%
    ),
    url(../../../images/lain-lain/bg-layanan.webp);
  /* background: url("../../../images/lain-lain/bg-layanan.webp"); */
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom;
  z-index: -1;
  /* opacity: 1; */
}

.background-cta {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.background-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgb(0 0 0 / 50%) 0%, rgb(0 0 0 / 50%) 75%);
  z-index: -1;
}

.background-4 {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.background-4::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../../../images/lain-lain/bg-artikel.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top;
  z-index: -1;
  opacity: 0.3;
}

.background-5 {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.background-5::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../../../images/lain-lain/bg-layanan-detail.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: -1;
  /* opacity: 0.05; */
}

/*==========================================================================
* Navbar
==========================================================================*/
.navbar-nav .nav-link.active,
.navbar-nav .nav-link.show {
  color: var(--second-color);
}

.navbar-nav .nav-link {
  position: relative;
}

.navbar-nav .nav-link.active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 3px;
  background-color: var(--second-color);
}

@media (max-width: 576px) {
  .navbar-nav .nav-link.active::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 2px;
    background-color: var(--base-color);
  }
}

.nav-link:focus,
.nav-link:hover {
  color: var(--second-color);
}

.navbar-text a,
.navbar-text a:focus,
.navbar-text a:hover {
  color: var(--base-color);
}

@media (max-width: 991.98px) {
  .navbar-expand-lg .navbar-brand {
    padding-top: 10px;
    padding-bottom: 10px;
  }
}

/* Welcome Text */
.bg-dot.primary {
  background-image: radial-gradient(var(--base-color) 2px, transparent 2.5px);
}

@keyframes floating {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0);
  }
}

.floating-image {
  animation: floating 3s ease-in-out infinite;
}

@media (min-width: 767px) {
  .bg-welcome-text {
    right: 0px;
    bottom: 15px;
    top: 15px;
    width: 33%;
  }
}

@media (max-width: 767px) {
  .bg-welcome-text {
    right: 0px;
    bottom: 15px;
    width: 80%;
  }
}

/* OUR PARTNER */
@media (min-width: 767px) {
  .img-our-partner {
    bottom: 0;
    left: 50%;
    opacity: 0.15;
    transform: translateX(-50%);
    width: 70%;
  }
}

@media (max-width: 767px) {
  .img-our-partner {
    bottom: 0px;
    left: 50%;
    opacity: 0.15;
    transform: scale(3);
  }
}

/* CKE Editor*/
.description-list a {
  color: var(--main-color);
}

.description-list ul li {
  list-style: initial;
}

.description-list p strong {
  color: var(--black);
}

.description-list hr {
  margin-top: 0.25rem !important;
  margin-bottom: 0.25rem !important;
}

.header-title p strong {
  /* font-style: italic; */
  text-decoration: underline;
}

.desc-cta p {
  margin-bottom: 0px;
}

/* Artikel */
article .artikel:hover .card-body a.btn-outline-primary {
  background-color: var(--bs-primary) !important;
  color: #ffffff !important;
}

.truncate-text {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  text-align: left;
  overflow: hidden;
  text-overflow: ellipsis;
}

.truncate-text-2 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  text-align: left;
  overflow: hidden;
  text-overflow: ellipsis;
}

.truncate-text p {
  line-height: 1.6;
}

/* header page */
/* .image-wrapper.bg-overlay:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background-color: #000000;
  opacity: 0.8;
  background: linear-gradient(to right, rgb(16 26 37), rgb(0 0 0 / 32%));
} */

/*--------------------------------------------------------------
  SCROLL
----------------------------------------------------------------*/
::-webkit-scrollbar {
  width: 5px;
  background: var(--theme_black);
  opacity: 0.2;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

::-webkit-scrollbar-track {
  box-shadow: none;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

::-webkit-scrollbar-thumb {
  background: var(--base-color);
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--base-color);
  -webkit-transition: all 0.4s ease-in-out !important;
  transition: all 0.4s ease-in-out !important;
}

.cs-icon20-0 {
  font-size: 20px;
  line-height: 0px;
}

/*--------------------------------------------------------------
# FOOTER SECTION
--------------------------------------------------------------*/
.cs_footer_widget_seperator {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
  margin-bottom: 15px;
}

.cs_footer_widget_seperator span {
  height: 5px;
  width: 80px;
  border-radius: 5px;
}

.cs_footer_widget_seperator span:nth-child(2) {
  width: 15px;
}

.cs_footer_widget_seperator span:nth-child(3) {
  width: 6px;
}

/* Sosmed */
.cs_footer_widget .cs_social_btns.cs_style_1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 10px;
}

.cs_social_btns.cs_style_1 a {
  width: 26px;
  height: 26px;
  font-size: 11px;
  /* border: 1px solid; */
  border-color: var(--medium-gray);
}

.cs_footer_widget .cs_social_btns.cs_style_1 a {
  height: 30px;
  width: 30px;
  border-radius: 6px;
  background-color: white;
  color: var(--base-color);
  font-size: 16px;
}

/* .cs_footer_widget .cs_social_btns.cs_style_1 a:hover {
  background-color: var(--base-color);
  background: linear-gradient(to right, #fb6905, #ffa506);
  -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  color: white;
} */

.cs_center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

/*--------------------------------------------------------------
# ARTIKEL
--------------------------------------------------------------*/
.services-four {
  position: relative;
  display: block;
  padding: 120px 0 90px;
  z-index: 1;
}

.services-four__single {
  position: relative;
  display: block;
  margin-bottom: 30px;
}

.services-four__img {
  position: relative;
  display: block;
  overflow: hidden;
  /* border-radius: 20px; */
  z-index: 1;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.services-four__img::after {
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(var(--elitecons-black-rgb), 0.3);
  position: absolute;
  bottom: 0;
  left: 0;
  visibility: hidden;
  opacity: 0;
  transition: all 0.4s ease-in-out;
  z-index: 1;
}

.services-four__single:hover .services-four__img::after {
  visibility: visible;
  opacity: 1;
}

.services-four__img img {
  width: 100%;
  transform: scale(1);
  transition: all 0.4s ease-in-out;
  object-fit: cover;
}

.services-four__single:hover .services-four__img img {
  transform: scale(1.1);
}

.services-four__content {
  position: relative;
  display: block;
  background-color: var(--bs-white);
  border-bottom: 2px solid var(--base-color);
  box-shadow: 0px 0px 60px rgba(0, 0, 0, 0.05);
  border-radius: 20px;
  margin: -60px 10px 10px;
  padding: 32px 30px 30px;
  z-index: 3;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.services-four__title {
  font-size: 26px;
  font-weight: 700;
  line-height: 26px;
}

.services-four__title a {
  color: var(--elitecons-black);
}

.services-four__title a:hover {
  color: var(--elitecons-base);
}

.services-four__text {
  margin-top: 6px;
  margin-bottom: 33px;
}

.services-four__btn-box {
  position: relative;
  display: block;
}

.services-four__btn {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.services-four__btn span {
  font-size: 14px;
}

.services-four__btn:hover {
  color: var(--elitecons-black);
}

/* Nav */
/* @media (max-width: 767px) {
  .homepage1-body,
  html {
    overflow-x: hidden !important;
  }
} */

/* Accordion */
.border-radius-none {
  border-radius: 0px !important;
}

/* Our Partner */
.our-partner img {
  filter: grayscale(100%) brightness(0.9) opacity(0.5);
  transition: filter 0.5s ease;
}

.our-partner img:hover {
  filter: grayscale(0%) brightness(1) opacity(1);
  transition: filter 0.5s ease;
}

/*  */
.text-line22 {
  position: relative;
  vertical-align: top;
  /* padding-left: 1.4rem; */
}

.text-line22:before {
  content: "";
  position: absolute;
  display: inline-block;
  bottom: -6px;
  /* transform: translateY(-60%); */
  left: 0;
  width: 100%;
  height: 1.5px;
  background: var(--bs-primary);
}

.accordion-wrapper .card-header button:before {
  right: 0.3rem !important;
}

/* =============================== */
.section-title-wrap {
  display: flex;
  align-items: center;
  gap: 30px;
  justify-content: space-between;
  position: relative;
  padding-bottom: 20px;
}
.section-title .title {
  margin-bottom: 0;
  font-size: 28px;
}
.section-title-line {
  width: 100%;
  height: 5px;
  position: absolute;
  left: 0;
  bottom: 0;
  border: 1px solid var(--bs-primary);
  border-left: none;
  border-right: none;
}
.section-title-line::before {
  content: "";
  position: absolute;
  left: 0;
  top: -1px;
  width: 40px;
  height: 5px;
  background: var(--bs-primary);
}
.section-title-line::after {
  content: "";
  position: absolute;
  left: 36px;
  top: -1.5px;
  width: 10px;
  height: 6px;
  background: var(--bs-white);
  clip-path: polygon(40% 0, 100% 0%, 60% 100%, 0 100%);
}

/* Sosmed Navbar */
.nav-sos > a {
  padding-left: 7px;
  padding-right: 7px;
  border-style: solid;
  border-width: 0 0 0 1px;
  border-color: var(--bs-border-color);
  margin: 0;
}

.nav-sos > a:last-child {
  border-right: 1px solid var(--bs-border-color);
}

/* Tentang Kami */
.img-tentang-kami {
  bottom: -75px;
  right: -25px;
}

@media (max-width: 991.98px) {
  .img-tentang-kami {
    bottom: -65px;
    right: -5px;
  }
}

/* Navbar */
/* .navbar-clone.active {
  transform: translateY(0%);
} */

.swiper-controls .swiper-navigation .swiper-button {
  background: var(--bs-primary);
  color: #ffffffcc;
  border: 0;
  box-shadow: 0 0.25rem 0.75rem rgba(30, 34, 40, 0.08);
  width: 2.2rem;
  height: 2.2rem;
  line-height: inherit;
  border-radius: 100%;
  text-shadow: none;
  transition: all 0.2s ease-in-out;

  /* Blur effect */
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);

  /* Optional biar efek blur lebih keliatan */
  background-color: rgba(var(--bs-primary-rgb), 0.6);
}

/*.swiper-controls .swiper-navigation .swiper-button:hover {*/
/*    background: rgba(var(--bs-white-rgb), .9)*/
/*}*/

/*CARD LAYANAN*/
.card-layanan {
  transition: all 0.3s ease-in-out;
}
.card-layanan:hover {
  background-color: #d9eff2;
  transform: scale(1.04);
  transition: all 0.3s ease-in-out;
}

/*FLOATING WA*/
.hidden {
  display: none;
}

@keyframes bounce {
  0%,
  25%,
  50%,
  75%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-20px);
  }
  60% {
    transform: translateY(-12px);
  }
}

@keyframes rotateBounceButton {
  0% {
    transform: rotate(0deg) scale(1) translateY(0);
  }

  20% {
    transform: rotate(0deg) scale(1) translateY(-20px); /* Bounce up */
  }

  40% {
    transform: rotate(0deg) scale(1) translateY(-12px); /* Bounce higher */
  }

  50% {
    transform: rotate(0deg) scale(1) translateY(0); /* Bounce back down */
  }

  60% {
    transform: rotate(0deg) scale(1) translateY(0); /* Continue neutral */
  }

  80% {
    transform: rotate(45deg) scale(1) translateY(0); /* Start rotating */
  }

  100% {
    transform: rotate(0deg) scale(1) translateY(0); /* Finish rotation */
  }
}

.sticky-button {
  position: fixed;
  background-color: #25d366;
  bottom: 20px;
  left: 20px;
  border-radius: 50px;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.1);
  z-index: 20;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 55px;
  height: 55px;
  -webkit-transition: all 0.1s ease-out;
  transition: all 0.1s ease-out;
  animation: rotateBounceButton 1s infinite ease-in-out;
}

.chat-menu:checked ~ .sticky-button {
  animation: none;
}

.sticky-button svg {
  margin: auto;
  fill: #fff;
  width: 35px;
  height: 35px;
}

.sticky-button a,
.sticky-button label {
  cursor: pointer;
  display: flex;
  align-items: center;
  width: 55px;
  height: 55px;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.sticky-button label svg.close-icon {
  display: none;
}

.sticky-chat {
  position: fixed;
  bottom: 25px;
  left: 20px;
  width: 200px;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  z-index: 21;
  opacity: 1; /* tampilkan */
  visibility: visible; /* tampilkan */
}
@media (max-width: 768px) {
  .sticky-chat .chat-button span {
    display: none;
  }

  .sticky-chat .chat-button {
    padding: 8px;
    border-radius: 50%;
    width: 55px;
    height: 55px;
    justify-content: center;
  }
}

/* Animasi goyang */
@keyframes shake {
  0%,
  100% {
    transform: rotate(0deg);
  }
  20% {
    transform: rotate(-15deg);
  }
  40% {
    transform: rotate(15deg);
  }
  60% {
    transform: rotate(-10deg);
  }
  80% {
    transform: rotate(10deg);
  }
}

.sticky-chat .chat-button .custom-icon {
  animation: shake 2s infinite;
  animation-delay: 2s;
}

.sticky-chat a {
  text-decoration: none;
  font-family: "Roboto", sans-serif;
  color: #505050;
}

.sticky-chat svg {
  width: 35px;
  height: 35px;
}

.sticky-chat .chat-content {
  border-radius: 10px;
  background-color: #fff;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.25);
  overflow: hidden;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
}

.sticky-chat .chat-header {
  position: relative;
  display: flex;
  align-items: center;
  padding: 15px 20px;
  background-color: #25d366;
  overflow: hidden;
}

.sticky-chat .chat-header:after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  right: 0;
  width: 80px;
  height: 75px;
  background: rgba(0, 0, 0, 0.04);
  border-radius: 70px 0 5px 0;
}

.sticky-chat .chat-header svg {
  width: 35px;
  height: 35px;
  flex: 0 0 auto;
  fill: #fff;
}

.sticky-chat .chat-header .title {
  padding-left: 15px;
  font-size: 14px;
  font-weight: 600;
  font-family: "Roboto", sans-serif;
  color: #fff;
}

.sticky-chat .chat-header .title span {
  font-size: 11px;
  font-weight: 400;
  display: block;
  line-height: 1.58em;
  margin: 0;
  color: #f4f4f4;
}

.sticky-chat .chat-text {
  display: flex;
  flex-wrap: wrap;
  margin: 30px 20px;
  font-size: 12px;
}

.sticky-chat .chat-text span {
  display: inline-block;
  margin-right: auto;
  padding: 10px;
  background-color: #f0f5fb;
  border-radius: 0px 15px 15px;
}

.sticky-chat .chat-text span:after {
  content: "just now";
  display: inline-block;
  margin-left: 2px;
  font-size: 9px;
  color: #989b9f;
}

.sticky-chat .chat-text span.typing {
  margin: 15px 0 0 auto;
  padding: 10px;
  border-radius: 15px 0px 15px 15px;
}

.sticky-chat .chat-text span.typing:after {
  display: none;
}

.sticky-chat .chat-text span.typing svg {
  height: 13px;
  fill: #505050;
}

.sticky-chat .chat-button {
  display: flex;
  align-items: center;
  margin-top: 15px;
  padding: 12px 20px;
  border-radius: 10px;
  background-color: #fff;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.25);
  overflow: hidden;
  font-size: 12px;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
}

.sticky-chat .chat-button .custom-icon {
  width: 35px;
  height: 35px;
  margin-left: auto;
  background-color: #25d366;
}

.sticky-chat .chat-button .custom-icon i {
  font-size: 20px;
}

.chat-menu:checked + .sticky-button label {
  -webkit-transform: rotate(360deg);
  transform: rotate(360deg);
}

.chat-menu:checked + .sticky-button label svg.chat-icon {
  display: none;
}

.chat-menu:checked + .sticky-button label svg.close-icon {
  display: table-cell;
}

.chat-menu:checked + .sticky-button + .sticky-chat {
  bottom: 90px;
  opacity: 1;
  visibility: visible;
}

.custom-icon {
  color: white;
  border-radius: 50%;
  width: 17px;
  height: 17px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 12px;
  flex-shrink: 0;
}

.card-artikel:hover {
  box-shadow: 0 3px 20px rgba(0, 0, 0, 0.33) !important;
  transition: all 0.3s ease-in-out;
}
.separator-line-2px {
  height: 2px;
}

.w-50px {
  width: 50px !important;
}
.about-ornament {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 100%;
  max-width: 1000px;
  opacity: 0.2;
  z-index: 1;
  transform: translateX(-50%);
}
.keunggulan-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 60%;
  background: #000000;
  z-index: 1;
}
.keunggulan-bg::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40%;
  /* background: var(--very-light-gray); */
  z-index: 1;
}
.truncate-text {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  text-align: left;
  overflow: hidden;
  text-overflow: ellipsis;
}

.truncate-text-2 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  text-align: left;
  overflow: hidden;
  text-overflow: ellipsis;
}
/* Tambahkan ke style/CSS site */

.paket-wisata {
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.paket-wisata:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.13) !important;
  border-color: rgba(0, 0, 0, 0.35) !important;
}

/* Zoom gambar saat hover */
.paket-wisata .card-img-wrap,
.paket-wisata > div:first-child {
  overflow: hidden;
}

.paket-wisata img {
  transition: transform 0.35s ease;
}

.paket-wisata:hover img {
  transform: scale(1.05);
}

/* Judul berubah warna */
.paket-wisata:hover .text-hitam {
  color: var(--base-color) !important;
}

/* Tombol hover */
.paket-wisata .btn-primary {
  transition:
    transform 0.15s,
    opacity 0.15s;
}
.paket-wisata .btn-primary:hover {
  transform: scale(1.02);
  opacity: 0.9;
}

.paket-wisata .btn-outline-primary {
  transition:
    transform 0.15s,
    background 0.2s,
    color 0.2s;
}
.paket-wisata .btn-outline-primary:hover {
  transform: scale(1.02);
}
/* ── Hover Card Rental ── */
.rental-mobil {
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.rental-mobil:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.13) !important;
  border-color: rgba(0, 0, 0, 0.35) !important;
}

/* Zoom gambar */
.rental-mobil .position-relative {
  overflow: hidden;
}

.rental-mobil img {
  transition: transform 0.35s ease;
}

.rental-mobil:hover img {
  transform: scale(1.05);
}

/* Judul berubah warna */
.rental-mobil:hover .text-hitam.fw-bold {
  color: var(--base-color) !important;
}

/* Price box highlight */
.rental-mobil .rounded-3 {
  transition:
    border-color 0.2s,
    background 0.2s;
}

.rental-mobil:hover .rounded-3 {
  border-color: rgba(255, 255, 255, 0) !important;
  background: #000 !important;
  color: #fff !important;
}

/* Tombol */
.rental-mobil .btn-primary {
  transition:
    transform 0.15s,
    opacity 0.15s;
}

.rental-mobil .btn-primary:hover {
  transform: scale(1.02);
  opacity: 0.9;
}
/* Hero */
.hero-section-custom {
  position: relative;
  color: white;
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
}

.hero-section-custom .background-video {
  position: absolute;
  inset: 0;
}

.hero-section-custom .background-video video {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.hero-section-custom .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(0, 0, 0, 0.88) 0%,
    rgba(0, 0, 0, 0.6) 45%,
    rgba(200, 146, 42, 0.18) 100%
  );
}
/* Section background */
.destinasi-section {
  background: #eeeae6;
  /* Or use a background image instead: */
  /* background: url('assets/images/bg-forest-pattern.jpg') center/cover no-repeat; */
}

/* Full-image card */
.destinasi-card {
  position: relative;
  height: 420px;
  border-radius: 14px;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}
.destinasi-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.35);
}

.destinasi-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  z-index: 1;
}
.destinasi-card:hover .destinasi-img {
  transform: scale(1.08);
}

/* Bottom-to-top black gradient overlay */
.destinasi-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.9) 0%,
    rgba(0, 0, 0, 0.55) 40%,
    rgba(0, 0, 0, 0.05) 75%,
    rgba(0, 0, 0, 0) 100%
  );
}

/* Content sits above the overlay */
.destinasi-content {
  position: relative;
  z-index: 3;
  height: 100%;
  padding: 1.5rem;
}

.destinasi-desc {
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
/* Section background */
.approach-section {
  background-color: var(--very-light-base-color);
}

/* ===== Sticky header (desktop only) ===== */
@media (min-width: 992px) {
  .approach-header-sticky {
    position: sticky;
    top: 100px; /* adjust based on your fixed navbar height */
  }
}

/* ===== Vertical timeline (both desktop & mobile) ===== */
.approach-timeline {
  position: relative;
}

.approach-step {
  display: flex;
  align-items: flex-start;
  text-align: left;
  position: relative;
  padding-bottom: 2rem;
}

.approach-step-last {
  padding-bottom: 0;
}

/* Dashed vertical connector between nodes */
.approach-step::before {
  content: "";
  position: absolute;
  top: 64px;
  left: 31px; /* center of the 64px node */
  width: 2px;
  height: calc(100% - 64px);
  background: repeating-linear-gradient(
    to bottom,
    var(--second-color) 0,
    var(--second-color) 6px,
    transparent 6px,
    transparent 12px
  );
  z-index: 1;
}

.approach-step-last::before {
  display: none;
}

/* Number node */
.approach-node {
  position: relative;
  z-index: 2;
  width: 64px;
  height: 64px;
  min-width: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--base-color);
  border: 3px solid var(--second-color);
  box-shadow: 0 8px 20px rgba(20, 62, 14, 0.2);
  margin-right: 1.5rem;
  transition:
    transform 0.3s ease,
    background-color 0.3s ease;
}
.approach-step:hover .approach-node {
  transform: scale(1.08);
  background-color: var(--third-color);
  border-color: var(--third-color);
}

.approach-number {
  font-family: var(--primary-font);
  font-weight: 700;
  font-size: 20px;
  color: var(--second-color);
  transition: color 0.3s ease;
}
.approach-step:hover .approach-number {
  color: #fff;
}

.approach-content {
  padding-top: 0.75rem;
}

/* Mobile fine-tuning */
@media (max-width: 991px) {
  .approach-node {
    width: 56px;
    height: 56px;
    min-width: 56px;
    margin-right: 1rem;
  }
  .approach-step::before {
    left: 27px;
    top: 56px;
    height: calc(100% - 56px);
  }
}
/* Section background */
.testimonial-section {
  background-color: #eeeae6;
}

.swiper-wrapper {
  align-items: stretch;
}

.swiper-slide {
  display: flex;
  height: auto;
}

.swiper-slide .item-inner {
  display: flex;
  width: 100%;
}

.swiper-slide .card {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.swiper-slide .card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.swiper-slide blockquote {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.swiper-slide .blockquote-details {
  margin-top: auto;
}
.keunggulan-card {
  padding: 2rem 1.5rem;
  border-radius: 16px;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    background-color 0.3s ease;
  background-color: rgb(20, 62, 14, 0.4);
}
.keunggulan-card:hover {
  transform: translateY(-6px);
  background-color: var(--very-light-base-color);
  box-shadow: 0 15px 30px rgba(20, 62, 14, 0.1);
  color: var(--second-color);
}

/* Icon circle */
.keunggulan-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--very-light-base-color);
  border: 2px solid var(--second-color);
  transition:
    background-color 0.3s ease,
    border-color 0.3s ease;
}
.keunggulan-icon i {
  font-size: 32px;
  color: var(--second-color);
  transition: color 0.3s ease;
}
.keunggulan-card:hover .keunggulan-icon {
  background-color: var(--third-color);
  border-color: var(--third-color);
}
.keunggulan-card:hover .keunggulan-icon i {
  color: #fff;
}
.keunggulan-card:hover p {
  color: var(--second-color) !important;
  opacity: 0.9;
}

/* Box container with rounded corners */
.cta-box {
  border-radius: 20px;
  min-height: 420px;
  display: flex;
  align-items: center;
  padding: 3rem 3rem;
}

/* Background image fills the box */
.cta-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

/* Gradient overlay: solid base-color on the left, transparent on the right */
.cta-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to right,
    var(--base-color) 0%,
    rgba(20, 62, 14, 0.85) 35%,
    rgba(20, 62, 14, 0.3) 65%,
    rgba(20, 62, 14, 0) 100%
  );
}

.cta-content {
  width: 100%;
}

/* Button hover */
.cta-box .btn {
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    background-color 0.3s ease;
}
.cta-box .btn:hover {
  transform: translateY(-3px);
}
.cta-box .btn[style*="var(--third-color)"]:hover {
  box-shadow: 0 10px 25px rgba(232, 107, 28, 0.4);
}
.cta-box .btn[style*="transparent"]:hover {
  background-color: #fff !important;
  color: var(--base-color) !important;
}

/* Responsive padding */
@media (max-width: 767px) {
  .cta-box {
    padding: 2rem 1.5rem;
    min-height: 500px;
  }
}
/* Footer background */
.footer-section {
  background-color: #eeeae6;
  /* border-top: 1px solid rgba(20, 62, 14, 0.1); */
}

/* Logo */
.footer-logo {
  /* max-width: 180px; */
  width: 30%;
  height: auto;
  filter: brightness(0) saturate(100%) invert(15%) sepia(28%) saturate(1800%)
    hue-rotate(70deg) brightness(90%);
  /* filter di atas memaksa logo (jika PNG putih/transparan) tampil dengan warna base-color */
}

/* Social icons */
.footer-social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--very-light-base-color);
  color: var(--base-color);
  font-size: 16px;
  transition:
    background-color 0.3s ease,
    color 0.3s ease,
    transform 0.3s ease;
}
.footer-social-icon:hover {
  background-color: var(--third-color);
  color: #fff;
  transform: translateY(-3px);
}

/* Contact icon */
.footer-icon {
  font-size: 16px;
  color: var(--second-color);
  margin-top: 3px;
  min-width: 18px;
}

/* Links */
.footer-link {
  color: var(--bs-body-color, #6c757d);
  text-decoration: none;
  font-size: 13px;
  transition: color 0.2s ease;
}
.footer-link:hover {
  color: var(--third-color);
}

.footer-links li a {
  font-size: 13px;
}

/* Bottom bar */
.footer-bottom {
  background-color: #eeeae6;
  /* border-top: 1px solid rgba(20, 62, 14, 0.08); */
}
/* Overlay gradient for readability */
.about-header {
  min-height: 380px;
  display: flex;
  align-items: center;
}

.about-header-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to right,
    rgba(20, 62, 14, 0.92) 0%,
    rgba(20, 62, 14, 0.75) 45%,
    rgba(20, 62, 14, 0.55) 100%
  );
}

/* Breadcrumb style */
.post-category.text-line {
  font-size: 13px;
  font-weight: 500;
}
.post-category.text-line a {
  text-decoration: none;
  transition: color 0.2s ease;
}
.post-category.text-line a:hover {
  color: var(--second-color) !important;
}

/* Right description with subtle left border accent */
.about-header-desc {
  border-left: 3px solid var(--second-color);
  padding-left: 1.5rem;
}

@media (max-width: 991px) {
  .about-header-desc {
    border-left: none;
    border-top: 3px solid var(--second-color);
    padding-left: 0;
    padding-top: 1rem;
    margin-top: 1rem;
  }
  .about-header {
    min-height: auto;
  }
}
/* Badge */
.ws-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 50px;
  background-color: var(--very-light-base-color);
  border: 1px solid var(--second-color);
  font-size: 13px;
  font-weight: 600;
  color: var(--base-color);
}

.ws-badge-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background-color: var(--second-color);
  color: var(--base-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
}

/* Heading */
h1 span {
  font-family: var(--alt-font);
  font-weight: 500;
}

/* Description */
.wrapper .fs-14.lh-lg {
  color: #6c757d;
}
/* Card container */
.journal-card {
  background-color: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(20, 62, 14, 0.08);
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
  display: flex;
  flex-direction: column;
}
.journal-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(20, 62, 14, 0.18);
}

/* Image wrapper */
.journal-img-wrapper {
  position: relative;
  height: 220px;
  overflow: hidden;
}
.journal-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.journal-card:hover .journal-img {
  transform: scale(1.1);
}

/* Subtle overlay on image for badge readability */
.journal-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.35) 0%,
    rgba(0, 0, 0, 0) 40%
  );
}

/* Date badge on image */
.journal-date-badge {
  position: absolute;
  bottom: 12px;
  left: 12px;
  z-index: 2;
  background-color: rgba(255, 255, 255, 0.95);
  color: var(--base-color);
  font-size: 12px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 50px;
}

/* Body content */
.journal-body {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.journal-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--base-color);
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.3s ease;
}
.journal-card:hover .journal-title {
  color: var(--third-color);
}

/* Description clamp to 5 lines */
.journal-desc {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex-grow: 1;
}

/* Footer: views & read more */
.journal-footer {
  border-top: 1px solid rgba(20, 62, 14, 0.08);
  padding-top: 1rem;
  margin-top: auto;
}

.journal-views {
  font-size: 12px;
  color: #6c757d;
  font-weight: 500;
}
.journal-views i {
  color: var(--second-color);
}

.journal-readmore {
  font-size: 12px;
  font-weight: 600;
  color: var(--third-color);
  display: flex;
  align-items: center;
  transition: gap 0.3s ease;
}
.journal-card:hover .journal-readmore {
  gap: 4px;
}
.journal-card:hover .journal-readmore i {
  transform: translateX(3px);
}
.journal-readmore i {
  transition: transform 0.3s ease;
}
/* Section background */
.contact-section {
  background-color: var(--very-light-base-color);
}

/* Outer box container */
.contact-box {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(20, 62, 14, 0.1);
  background-color: #fff;
}

/* Map */
.contact-map-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 400px;
}
.contact-map-wrapper iframe,
.contact-map-wrapper > div {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border: none;
}

/* Contact info panel */
.contact-info-wrapper {
  background-color: var(--base-color);
  height: 100%;
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Top icon accent */
.contact-icon-top {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: rgba(200, 146, 42, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-icon-top i {
  font-size: 26px;
  color: var(--second-color);
}

/* Contact item */
.contact-item-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 12px;
  background-color: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1.25rem;
  transition: background-color 0.3s ease;
}
.contact-item-icon i {
  font-size: 22px;
  color: var(--second-color);
}
.contact-item:hover .contact-item-icon {
  background-color: var(--second-color);
}
.contact-item:hover .contact-item-icon i {
  color: var(--base-color);
}

.contact-icon-whatsapp i {
  color: var(--second-color);
}
.contact-item:hover .contact-icon-whatsapp {
  background-color: var(--second-color);
}
.contact-item:hover .contact-icon-whatsapp i {
  color: var(--base-color);
}

.contact-item-text h6 {
  color: #fff;
  font-weight: 700;
  font-size: 14px;
}
.contact-item-text address,
.contact-item-text p {
  color: rgba(255, 255, 255, 0.75);
}

/* Responsive */
@media (max-width: 991px) {
  .contact-info-wrapper {
    padding: 2.5rem 1.75rem;
  }
  .contact-map-wrapper {
    min-height: 300px;
  }
}
/* Email icon */
.contact-icon-email i {
  color: var(--second-color);
}
.contact-item:hover .contact-icon-email {
  background-color: var(--second-color);
}
.contact-item:hover .contact-icon-email i {
  color: var(--base-color);
}

/* Email link */
.contact-email-link {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  transition: color 0.2s ease;
}
.contact-email-link:hover {
  color: var(--second-color);
}
/* Card wrapper */
.exp-card {
  position: relative;
  height: 100%;
}

/* Image */
.exp-img-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 280px;
}
.exp-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.exp-card:hover .exp-img {
  transform: scale(1.08);
}

/* Floating circular price badge */
.exp-price-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: var(--third-color);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 10px 25px rgba(232, 107, 28, 0.4);
  z-index: 2;
  transition: transform 0.3s ease;
}
.exp-card:hover .exp-price-badge {
  transform: scale(1.1) rotate(-5deg);
}
.exp-price-currency {
  font-size: 10px;
  font-weight: 600;
  opacity: 0.85;
  line-height: 1;
}
.exp-price-amount {
  font-size: 13px;
  font-weight: 800;
  line-height: 1.2;
}
.exp-price-per {
  font-size: 8px;
  opacity: 0.8;
  line-height: 1;
}

/* Overlapping content box */
.exp-content {
  background-color: #fff;
  border-radius: 16px;
  padding: 1rem;
  /* margin: -40px 24px 0; */
  position: relative;
  z-index: 3;
  box-shadow: 0 15px 35px rgba(20, 62, 14, 0.1);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  /* Tambahan */
  flex: 1;
  display: flex;
  flex-direction: column;
}
.exp-card:hover .exp-content {
  transform: translateY(-4px);
  box-shadow: 0 20px 45px rgba(20, 62, 14, 0.16);
}

.exp-title {
  font-weight: 700;
  color: var(--base-color);
  font-size: 16px;
  line-height: 1.5;
  /* Tinggi judul sama (2 baris) */
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 48px;
}
.exp-content .d-flex {
  margin-top: auto;
}
/* Buttons */
.exp-btn-detail {
  flex: 1;
  text-align: center;
  padding: 10px;
  border-radius: 50px;
  border: 2px solid var(--base-color);
  color: var(--base-color);
  font-weight: 600;
  font-size: 12px;
  text-decoration: none;
  transition:
    background-color 0.3s ease,
    color 0.3s ease;
}
.exp-btn-detail:hover {
  background-color: var(--base-color);
  color: #fff;
}

.exp-btn-book {
  flex: 1;
  text-align: center;
  padding: 10px;
  border-radius: 50px;
  background-color: var(--third-color);
  color: #fff;
  font-weight: 600;
  font-size: 12px;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background-color 0.3s ease,
    transform 0.3s ease;
}
.exp-btn-book:hover {
  background-color: var(--base-color);
  transform: translateX(2px);
}
.exp-btn-book i {
  transition: transform 0.3s ease;
}
.exp-btn-book:hover i {
  transform: translateX(3px);
}

/* Responsive */
@media (max-width: 767px) {
  .exp-content {
    margin: -30px 12px 0;
    padding: 1.5rem 1.25rem;
  }
  .exp-price-badge {
    width: 75px;
    height: 75px;
    top: 15px;
    right: 15px;
  }
}
.exp-detail-section {
  background-color: #fff;
}

/* Image wrapper */
.exp-detail-img-wrapper {
  position: relative;
  padding: 20px 20px 20px 0;
}

/* Decorative shape behind image */
.exp-detail-shape {
  position: absolute;
  top: 0;
  left: 0;
  width: 90%;
  height: 90%;
  background-color: var(--very-light-base-color);
  border-radius: 24px;
  z-index: 1;
}

.exp-detail-img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 20px 45px rgba(20, 62, 14, 0.15);
}

/* Floating price card */
.exp-detail-price-float {
  position: absolute;
  bottom: 40px;
  right: 0;
  z-index: 3;
  background-color: #fff;
  border-radius: 16px;
  padding: 1rem 1.5rem;
  box-shadow: 0 15px 35px rgba(20, 62, 14, 0.2);
  display: flex;
  flex-direction: column;
  border-left: 4px solid var(--third-color);
}
.exp-detail-price-label {
  font-size: 11px;
  color: #6c757d;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 2px;
}
.exp-detail-price-value {
  font-size: 22px;
  font-weight: 800;
  color: var(--third-color);
}
.exp-detail-price-value small {
  font-size: 12px;
  font-weight: 500;
  color: #6c757d;
}

/* Title */
.exp-detail-title {
  font-size: 34px;
  font-weight: 700;
  color: var(--base-color);
  line-height: 1.3;
}

/* Description */
.exp-detail-desc {
  position: relative;
  padding-left: 1.25rem;
  border-left: 3px solid var(--second-color);
}

/* Book button */
.exp-detail-btn-book {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border-radius: 50px;
  background-color: var(--third-color);
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(232, 107, 28, 0.35);
  transition:
    background-color 0.3s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
.exp-detail-btn-book:hover {
  background-color: var(--base-color);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(20, 62, 14, 0.3);
}
.exp-detail-btn-book i {
  transition: transform 0.3s ease;
}
.exp-detail-btn-book:hover i {
  transform: translateX(3px);
}

/* Share widget styling (struktur HTML tidak diubah) */
.widget .nav.social {
  gap: 1px;
}
.widget .nav.social a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-color: var(--very-light-base-color);
  color: var(--base-color);
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background-color 0.3s ease,
    color 0.3s ease,
    transform 0.3s ease;
}
.widget .nav.social a:hover {
  background-color: var(--second-color);
  color: #fff;
  transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 991px) {
  .exp-detail-img-wrapper {
    padding: 0;
  }
  .exp-detail-shape {
    display: none;
  }
  .exp-detail-img {
    height: 320px;
  }
  .exp-detail-price-float {
    bottom: -20px;
    left: 20px;
    right: 20px;
  }
  .exp-detail-title {
    font-size: 26px;
    /* margin-top: 2rem; */
  }
}
.background-video iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 177.77777778vh; /* 16:9 */
  height: 56.25vw;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.wa-floating {
    position: fixed;
    left: 20px;
    bottom: 20px;
    z-index: 9999;
}

.wa-floating-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px;
    background: #25D366;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(37, 211, 102, .35);
    animation: waPulse 1.5s infinite;
    transition: .3s;
}

.wa-floating-btn:hover {
    color: #fff;
    transform: scale(1.05);
    animation-play-state: paused;
}

@keyframes waPulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, .7);
    }
    50% {
        transform: scale(1.08);
    }
    70% {
        box-shadow: 0 0 0 16px rgba(37, 211, 102, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}
/* Section background */
.faq-section {
    background-color: #fff;
}

/* Sticky header (desktop only) */
@media (min-width: 992px) {
    .faq-header-sticky {
        position: sticky;
        top: 100px;
    }
}

.faq-contact-link {
    display: inline-flex;
    align-items: center;
    font-weight: 600;
    font-size: 13px;
    color: var(--third-color);
    text-decoration: none;
    transition: gap 0.3s ease;
}
.faq-contact-link:hover {
    color: var(--base-color);
}

/* FAQ list */
.faq-list {
    display: flex;
    flex-direction: column;
}

/* FAQ item */
.faq-item {
    position: relative;
    display: flex;
    gap: 1.5rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(20, 62, 14, 0.1);
    align-items:center;
}
.faq-item:first-child {
    padding-top: 0;
}

/* Big decorative number */
.faq-number {
    font-family: var(--alt-font);
    font-size: 40px;
    font-weight: 400;
    line-height: 1;
    color: var(--very-light-base-color);
    -webkit-text-stroke: 1.5px var(--second-color);
    min-width: 60px;
    transition: color 0.3s ease;
}
.faq-item.active .faq-number {
    color: var(--second-color);
    -webkit-text-stroke: 0;
}

/* Body */
.faq-body {
    flex: 1;
}

/* Question row */
.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    gap: 1rem;
}
.faq-question h6 {
    font-size: 16px;
    font-weight: 700;
    color: var(--base-color);
    transition: color 0.3s ease;
}
.faq-question:hover h6 {
    color: var(--third-color);
}

/* Toggle icon */
.faq-toggle-icon {
    width: 32px;
    height: 32px;
    min-width: 32px;
    border-radius: 50%;
    background-color: var(--very-light-base-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--base-color);
    transition: background-color 0.3s ease, transform 0.3s ease, color 0.3s ease;
}
.faq-toggle-icon i {
    font-size: 16px;
    transition: transform 0.3s ease;
}

/* Rotate icon + change color when expanded */
.faq-question[aria-expanded="true"] .faq-toggle-icon,
.faq-item.active .faq-toggle-icon {
    background-color: var(--third-color);
    color: #fff;
}
.faq-question[aria-expanded="true"] .faq-toggle-icon i,
.faq-item.active .faq-toggle-icon i {
    transform: rotate(45deg);
}


/* Responsive */
@media (max-width: 767px) {
    .faq-number {
        font-size: 34px;
        min-width: 42px;
    }
    .faq-item {
        gap: 1rem;
        padding: 1.25rem 0;
    }
    .faq-question h6 {
        font-size: 14px;
    }
}
/* Itinerary Card */
.exp-itinerary-card {
    background-color: #fff;
    border-radius: 20px;
    padding: 3rem 2.5rem;
    box-shadow: 0 15px 40px rgba(20, 62, 14, 0.08);
    border-left: 4px solid var(--second-color);
    position: relative;
}

/* Icon */
.exp-itinerary-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background-color: var(--very-light-base-color);
    display: flex;
    align-items: center;
    justify-content: center;
}
.exp-itinerary-icon i {
    font-size: 26px;
    color: var(--second-color);
}

/* Title */
.exp-itinerary-title {
    font-weight: 700;
    color: var(--base-color);
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Responsive */
@media (max-width: 767px) {
    .exp-itinerary-card {
        padding: 2rem 1.5rem;
    }
}