:root {
  --bs-primary: #c8922a;
  --base-color: #c8922a;
  --very-light-base-color: #fbeee1;
  --second-color: #d96a6e;
  --third-color: #f8430a;
  --four-color: #3f78e0;
  --bs-primary-rgb: 200, 146, 42;
  --bs-secondary-rgb: 170, 176, 188;
  --primary-font: "Poppins", sans-serif;
  --alt-font: "Inter", sans-serif;
  --gold: #c9a84c;
  --gold-light: #e8c97a;
  --gold-dim: rgba(201, 168, 76, 0.12);
  --ink: #1a1a2e;
  --ink-soft: #3d3d5c;
  --stone: #f5f2ec;
  --stone-dark: #ede8df;
  --white: #ffffff;
  --shadow-sm: 0 2px 12px rgba(26, 26, 46, 0.07);
  --shadow-md: 0 8px 32px rgba(26, 26, 46, 0.12);
  --shadow-lg: 0 20px 60px rgba(26, 26, 46, 0.16);
  --radius: 16px;
  --radius-sm: 8px;
}
.bg-hitam {
  background-color: #000000;
}
.text-hitam {
  color: #000000;
}
.primary-font {
  font-weight: var(--primary-font);
}

.alt-font {
  font-weight: var(--alt-font);
}

.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);
}

.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.7); /* hitam transparan 50% */
  z-index: -1;
}
/*==========================================================================
* GENERAL
==========================================================================*/
.rounded-5 {
  border-radius: 1.5rem;
}

.bg-soft-primary {
  background-color: #f7f9fd !important;
}

/*--------------------------------------------------------------
# Font
--------------------------------------------------------------*/
.primary-font {
  font-family: "Open Sans", sans-serif;
}

.alt-font {
  font-family: "Open Sans", sans-serif;
}

/*==========================================================================
* 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);
}

.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(--base-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(--base-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(--base-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;
}

@media (min-width: 991.98px) {
  .offcanvas-header {
    padding-top: 0rem !important;
    padding-bottom: 0rem !important;
    display: flex;
    flex-direction: row;
  }
}
.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;
}
.contact-block {
  --ink: #0d0d0d;
  --cream: #f5f0e8;
  --gold: #c8922a;
  --gold-light: #e8b84b;
  --white: #ffffff;
  font-family: "DM Sans", sans-serif;
  background: var(--ink);
  position: relative;
  overflow: hidden;
}

/* Noise texture overlay */
.contact-block::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
  opacity: 0.4;
}

.contact-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
  padding: 50px 0;
}

/* ── LEFT: Map panel ── */
.contact-map-panel {
  position: relative;
  overflow: hidden;
}

.contact-map-panel iframe,
.contact-map-panel > * {
  width: 100%;
  height: 100%;
  min-height: 500px;
  display: block;
  filter: grayscale(40%) contrast(1.1);
  transition: filter 0.5s ease;
}

.contact-map-panel:hover iframe,
.contact-map-panel:hover > * {
  filter: grayscale(0%) contrast(1);
}

/* Gold diagonal slash between panels */
.contact-map-panel::after {
  content: "";
  position: absolute;
  top: 0;
  right: -30px;
  width: 60px;
  height: 100%;
  /* background: linear-gradient(135deg, transparent 0%, var(--ink) 50%, transparent 100%); */
  z-index: 2;
  pointer-events: none;
}

/* ── RIGHT: Info panel ── */
.contact-info-panel {
  background: var(--ink);
  padding: 4rem 3.5rem 4rem 4.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

/* Large decorative number */
.contact-info-panel::before {
  content: "HQ";
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  font-family: "Playfair Display", serif;
  font-size: 7rem;
  font-weight: 900;
  color: rgba(200, 146, 42, 0.06);
  line-height: 1;
  letter-spacing: -4px;
  pointer-events: none;
}

.contact-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.contact-eyebrow-line {
  width: 2.5rem;
  height: 2px;
  background: var(--gold);
}

.contact-eyebrow-text {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

.contact-heading {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 2.5rem;
}

.contact-heading em {
  font-style: italic;
  color: var(--gold-light);
}

/* Divider */
.contact-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, rgba(200, 146, 42, 0.5), transparent);
  margin-bottom: 2.5rem;
}

/* Info items */
.contact-items {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.contact-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  align-items: start;
  gap: 1rem;
  transition: transform 0.25s ease;
}

.contact-item:hover {
  transform: translateX(6px);
}

.contact-item-icon {
  width: 48px;
  height: 48px;
  background: rgba(200, 146, 42, 0.1);
  border: 1px solid rgba(200, 146, 42, 0.25);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--gold);
  flex-shrink: 0;
  transition:
    background 0.25s,
    border-color 0.25s;
}

.contact-item:hover .contact-item-icon {
  background: rgba(200, 146, 42, 0.2);
  border-color: rgba(200, 146, 42, 0.5);
}

.contact-item-label {
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  margin-bottom: 0.25rem;
}

.contact-item-value {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.5;
  margin: 0;
}

.contact-item-value a {
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
  transition: color 0.2s;
}

.contact-item-value a:hover {
  color: var(--gold-light);
}

/* Bottom strip */
.contact-bottom-strip {
  background: var(--gold);
  padding: 0.6rem 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.contact-bottom-strip span {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  opacity: 0.75;
}

.contact-bottom-strip strong {
  font-family: "Playfair Display", serif;
  font-size: 0.85rem;
  color: var(--ink);
  letter-spacing: 0.05em;
}

/* Fade-in animation */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.contact-info-panel > * {
  animation: fadeUp 0.6s ease both;
}

.contact-info-panel > *:nth-child(1) {
  animation-delay: 0.1s;
}

.contact-info-panel > *:nth-child(2) {
  animation-delay: 0.2s;
}

.contact-info-panel > *:nth-child(3) {
  animation-delay: 0.3s;
}

.contact-info-panel > *:nth-child(4) {
  animation-delay: 0.35s;
}

.contact-info-panel > *:nth-child(5) {
  animation-delay: 0.45s;
}

/* ── Responsive ── */
@media (max-width: 991px) {
  .contact-inner {
    grid-template-columns: 1fr;
  }

  .contact-map-panel::after {
    display: none;
  }

  .contact-map-panel iframe,
  .contact-map-panel > * {
    min-height: 300px;
  }

  .contact-info-panel {
    padding: 3rem 2rem;
  }

  .contact-bottom-strip {
    padding: 0.6rem 2rem;
    flex-wrap: wrap;
    gap: 0.25rem;
  }
}

@media (max-width: 575px) {
  .contact-info-panel {
    padding: 2.5rem 1.5rem;
  }

  .contact-item {
    grid-template-columns: 40px 1fr;
  }

  .contact-item-icon {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
}
/* ── PAGE WRAPPER ── */
.page-wrapper {
  max-width: 1180px;
  margin: 0 auto;
  padding: 48px 24px 80px;
}

/* ── BREADCRUMB ── */
.breadcrumb-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--ink-soft);
  margin-bottom: 36px;
  opacity: 0;
  animation: fadeSlideUp 0.5s ease 0.1s forwards;
}

.breadcrumb-bar a {
  color: var(--gold);
  text-decoration: none;
  font-weight: 500;
}

.breadcrumb-bar span {
  opacity: 0.4;
}

/* ── GRID ── */
.content-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 40px;
  align-items: start;
}

/* ── HERO IMAGE ── */
.hero-image-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--stone-dark);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  animation: fadeSlideUp 0.6s ease 0.2s forwards;
}

.hero-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.hero-image-wrap:hover img {
  transform: scale(1.03);
}

.hero-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: rgba(26, 26, 46, 0.75);
  backdrop-filter: blur(8px);
  color: var(--gold-light);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  border: 1px solid rgba(201, 168, 76, 0.3);
}

/* ── MAIN CARD ── */
.main-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  opacity: 0;
  animation: fadeSlideUp 0.6s ease 0.35s forwards;
}

.main-card-body {
  padding: 36px 40px;
}

/* ── TITLE ROW ── */
.title-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 10px;
}

.package-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.15;
  color: var(--ink);
  flex: 1;
}

.price-block {
  text-align: right;
  flex-shrink: 0;
}

.price-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
  opacity: 0.6;
  display: block;
  margin-bottom: 2px;
}

.price-value {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

/* ── CTA BUTTON ── */
.btn-book {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #25d366 0%, #1eb354 100%);
  color: var(--white);
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  font-weight: 600;
  padding: 12px 22px;
  border-radius: 100px;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
  margin-top: 12px;
}

.btn-book:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
  color: var(--white);
}

.btn-book i {
  font-size: 18px;
}

/* ── DIVIDER ── */
.ornament-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 24px 0;
}

.ornament-divider::before,
.ornament-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--stone-dark));
}

.ornament-divider::after {
  background: linear-gradient(to left, transparent, var(--stone-dark));
}

.ornament-diamond {
  width: 8px;
  height: 8px;
  background: var(--gold);
  transform: rotate(45deg);
  flex-shrink: 0;
  border-radius: 2px;
}

/* ── DESTINATION ── */
.destination-block {
  background: var(--stone);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--gold);
  padding: 16px 20px;
  margin-bottom: 28px;
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.8;
}

.destination-block strong {
  font-weight: 600;
  color: var(--ink);
  display: block;
  margin-bottom: 4px;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ── INCLUDE / EXCLUDE ── */
.incexc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 28px;
}

.incexc-box h5 {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 7px;
}

.incexc-box.inc h5 {
  color: #1b9e5e;
}

.incexc-box.exc h5 {
  color: #c04b3b;
}

.incexc-box h5::before {
  content: "";
  display: inline-block;
  width: 4px;
  height: 16px;
  border-radius: 4px;
}

.incexc-box.inc h5::before {
  background: #1b9e5e;
}

.incexc-box.exc h5::before {
  background: #c04b3b;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.tag {
  font-size: 12px;
  font-weight: 500;
  padding: 5px 12px;
  border-radius: 100px;
  line-height: 1.4;
}

.tag-inc {
  background: rgba(27, 158, 94, 0.1);
  color: #1b7c4b;
  border: 1px solid rgba(27, 158, 94, 0.2);
}

.tag-exc {
  background: rgba(192, 75, 59, 0.08);
  color: #a03428;
  border: 1px solid rgba(192, 75, 59, 0.18);
}

/* ── SHORT DESC ── */
.short-desc {
  font-style: italic;
  font-size: 14px;
  color: var(--ink-soft);
  opacity: 0.75;
  margin-bottom: 28px;
  padding: 0 4px;
}

/* ── UNIT PICKER ── */
.unit-section h5 {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 14px;
}

.unit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.unit-card {
  display: block;
  text-decoration: none;
  border: 1.5px solid var(--stone-dark);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  text-align: center;
  transition:
    border-color 0.2s,
    background 0.2s,
    transform 0.2s,
    box-shadow 0.2s;
  background: var(--white);
}

.unit-card:hover {
  border-color: var(--gold);
  background: var(--gold-dim);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201, 168, 76, 0.15);
}

.unit-name {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 4px;
}

.unit-price {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gold);
}

/* ── SHARE ── */
.share-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  padding-top: 24px;
  border-top: 1px solid var(--stone-dark);
  margin-top: 28px;
}

.share-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
  opacity: 0.6;
}

.share-icons {
  display: flex;
  gap: 8px;
}

.share-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  text-decoration: none;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  color: var(--white);
}

.share-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.share-btn.twitter {
  background: #1da1f2;
}

.share-btn.facebook {
  background: #1877f2;
}

.share-btn.messenger {
  background: #0084ff;
}

.share-btn.whatsapp {
  background: #25d366;
}

.share-btn.telegram {
  background: #2aabee;
}

.share-btn.email {
  background: var(--ink-soft);
}

/* ── SIDEBAR ── */
.sidebar {
  position: sticky;
  top: 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.sidebar-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  opacity: 0;
  animation: fadeSlideUp 0.6s ease 0.5s forwards;
}

.sidebar-card-head {
  padding: 18px 24px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.sidebar-card-head h4 {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.sidebar-card-head::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--stone-dark);
}

.popular-list {
  padding: 16px 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.popular-item {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--stone);
  align-items: center;
  text-decoration: none;
  transition: background 0.15s;
}

.popular-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.popular-thumb {
  width: 68px;
  height: 52px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}

.popular-info {
  flex: 1;
  min-width: 0;
}

.popular-title {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.4;
  margin-bottom: 5px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.15s;
}

.popular-item:hover .popular-title {
  color: var(--gold);
}

.popular-price {
  font-size: 12px;
  color: var(--gold);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
}

.popular-price i {
  font-size: 13px;
}

/* ── CONTACT CTA CARD ── */
.cta-card {
  background: linear-gradient(135deg, var(--bs-dark) 0%, #000 100%);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  opacity: 0;
  animation: fadeSlideUp 0.6s ease 0.6s forwards;
}

.cta-card .icon-wrap {
  width: 52px;
  height: 52px;
  background: rgba(201, 168, 76, 0.15);
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  font-size: 22px;
  color: var(--gold-light);
}

.cta-card h5 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}

.cta-card p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 18px;
  line-height: 1.5;
}

.btn-wa-full {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, #25d366, #1eb354);
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  padding: 12px 20px;
  border-radius: 100px;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}

.btn-wa-full:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  color: var(--white);
}

.btn-wa-full i {
  font-size: 18px;
}

/* ── ANIMATIONS ── */
@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .content-grid {
    grid-template-columns: 1fr;
  }

  .sidebar {
    position: static;
  }
}

@media (max-width: 600px) {
  .page-wrapper {
    padding: 24px 16px 60px;
  }

  .main-card-body {
    padding: 24px 20px;
  }

  .title-row {
    flex-direction: column;
    gap: 12px;
  }

  .price-block {
    text-align: left;
  }

  .incexc-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .unit-grid {
    grid-template-columns: 1fr 1fr;
  }

  .package-title {
    font-size: 1.8rem;
  }
}
