:root {
  --bs-primary: #01bf64;
  --base-color: #01bf64;
  --base-color-rgb: 1, 191, 100;
  --second-color: #000000;
  --second-color-rgb: 0, 0, 0;
  --base-color-dark: #019850;
  --third-color: #ffffff;
  --third-color-rgb: 255, 255, 255;
  --very-light-base-color: #f5fff9;
  --primary-font: "Poppins", sans-serif;
  --alt-font: "Inter", sans-serif;
}
.bg-gradient-gold {
  background: linear-gradient(
    135deg,
    #01bf64 0%,
    #008f4b 18%,
    #000000 42%,
    #01bf64 68%,
    #004d29 85%,
    #01bf64 100%
  );
}
.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) !important;
}
.bg-overlay {
  position: relative;
  z-index: 1;
}
.bg-overlay2 {
  position: relative;
  z-index: 1;
}

.bg-overlay2 > * {
  position: relative;
  z-index: 2;
}

.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: var(--bs-white);
  --bs-btn-bg: var(--base-color);
  --bs-btn-border-color: var(--base-color);
  --bs-btn-hover-color: var(--bs-white);
  --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: var(--bs-white);
  --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: var(--bs-white);
  --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);
}

.btn-second-color {
  --bs-btn-color: #fff;
  --bs-btn-bg: var(--second-color);
  --bs-btn-border-color: var(--second-color);
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: var(--second-color);
  --bs-btn-hover-border-color: var(--second-color);
  --bs-btn-focus-shadow-rgb: 92, 140, 229;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: var(--second-color);
  --bs-btn-active-border-color: var(--second-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(--second-color);
  --bs-btn-disabled-border-color: var(--second-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;
}

/*==========================================================================
* 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::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 1px;
  background-color: var(--second-color);
}

@media (max-width: 576px) {
  .navbar-nav .nav-link.active::before {
    width: 100%;
    height: 1px;
    background-color: var(--base-color);
    display: none;
  }
}
@media (min-width: 992px) {
  .navbar-expand-lg.navbar-light
    .dropdown:not(.dropdown-submenu)
    > .dropdown-toggle::after {
    color: var(--bs-primary);
  }

  .navbar-expand-lg.navbar-light
    .dropdown:not(.dropdown-submenu)
    > .dropdown-toggle.active::after {
    color: var(--second-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 SECTION
     ========================================================= */
.welcome {
  position: relative;
  overflow: hidden;
  background: linear-gradient(
    180deg,
    var(--very-light-base-color) 0%,
    #ffffff 72%
  );
}

/* --- ornamen batik parang, sudut kiri-atas & kanan-bawah --- */
.batik-corner {
  position: absolute;
  width: clamp(220px, 26vw, 380px);
  height: clamp(220px, 26vw, 380px);
  opacity: 0.16;
  pointer-events: none;
  z-index: 0;
}
.batik-corner--tl {
  top: -60px;
  left: -70px;
}
.batik-corner--br {
  bottom: -90px;
  right: -80px;
  transform: rotate(180deg);
}

/* --- dot grid halus, kesan peta rute --- */
.dot-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    circle,
    rgba(var(--second-color-rgb), 0.09) 1.4px,
    transparent 1.4px
  );
  background-size: 26px 26px;
  -webkit-mask-image: radial-gradient(
    ellipse 70% 60% at 78% 40%,
    #000 10%,
    transparent 72%
  );
  mask-image: radial-gradient(
    ellipse 70% 60% at 78% 40%,
    #000 10%,
    transparent 72%
  );
  z-index: 0;
}

/* ---------------- HEADER / TEKS ---------------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--alt-font);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--base-color-dark);
  background: rgba(var(--base-color-rgb), 0.1);
  padding: 8px 16px 8px 12px;
  border-radius: 999px;
  margin-bottom: 22px;
  opacity: 0;
  animation: rise 0.7s ease forwards;
}
.eyebrow__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--base-color);
  box-shadow: 0 0 0 4px rgba(var(--base-color-rgb), 0.22);
}

.welcome h1 {
  font-family: var(--primary-font);
  font-weight: 700;
  font-size: clamp(1.4rem, 2vw, 1.5rem);
  line-height: 1.2;
  /* letter-spacing: -0.01em; */
  color: var(--second-color);
  opacity: 0;
  animation: rise 0.75s ease 0.08s forwards;
}
.welcome h1 .accent {
  color: var(--base-color);
}
.welcome h1 .underline-wrap {
  position: relative;
}

.welcome__lead {
  font-family: var(--alt-font);
  /* font-size: clamp(0.98rem, 1.15vw, 1.08rem); */
  line-height: 1.7;
  color: var(--ink-soft);
  margin: 22px 0 32px;
  opacity: 0;
  animation: rise 0.75s ease 0.16s forwards;
}

.welcome__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  animation: rise 0.75s ease 0.24s forwards;
}

/* ---------------- KEYFRAMES ---------------- */
@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes floaty {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
@keyframes morph {
  0% {
    border-radius: 44% 56% 61% 39% / 46% 40% 60% 54%;
  }
  100% {
    border-radius: 58% 42% 40% 60% / 55% 60% 40% 45%;
  }
}
@keyframes draw {
  to {
    stroke-dashoffset: 0;
  }
}
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(var(--base-color-rgb), 0.55);
  }
  100% {
    box-shadow: 0 0 0 9px rgba(var(--base-color-rgb), 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.001s !important;
    animation-iteration-count: 1 !important;
  }
}
/* =========================================================
     RENTAL MOBIL JOGJA
     ========================================================= */
.rental {
  position: relative;
  /* padding: clamp(56px, 8vw, 108px) 0 clamp(70px, 9vw, 120px); */
  background: var(--third-color);
  overflow: hidden;
}

/* --- header kiri + CTA kanan --- */
.rental__headrow {
  position: relative;
  margin-bottom: clamp(36px, 5vw, 56px);
}

.rental__ornament {
  position: absolute;
  top: -34px;
  left: -10px;
  width: 108px;
  height: 108px;
  opacity: 0.9;
  z-index: 0;
  pointer-events: none;
}

.rental__header {
  position: relative;
  z-index: 1;
}

.rental h2 {
  font-family: var(--primary-font);
  font-weight: 700;
  font-size: clamp(1.4rem, 2vw, 1.5rem);
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--second-color);
  /* max-width: 15ch; */
}
.rental h2 .accent {
  color: var(--base-color);
}

.rental__lead {
  font-family: var(--alt-font);
  color: var(--ink-soft);
  line-height: 1.7;
  /* max-width: 46ch; */
  margin-top: 16px;
}

.rental__armada {
  font-family: var(--primary-font);
  font-weight: 600;
  font-size: 0.8rem;
  color: var(--second-color);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 6px;
  border-bottom: 2px solid var(--base-color);
  transition:
    gap 0.2s ease,
    color 0.2s ease;
}
.rental__armada svg {
  transition: transform 0.2s ease;
}
.rental__armada:hover {
  gap: 15px;
  color: var(--base-color-dark);
}
.rental__armada:hover svg {
  transform: translateX(3px);
}

/* --- kartu rental --- */
.rental-card {
  background: var(--third-color);
  border-radius: 24px;
  overflow: hidden;
  box-shadow:
    0 12px 30px rgba(0, 0, 0, 0.12),
    0 24px 60px rgba(0, 0, 0, 0.18),
    0 2px 8px rgba(0, 0, 0, 0.08);
  height: 100%;
  display: flex;
  flex-direction: column;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.rental-card:hover {
  transform: translateY(-8px);
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.18),
    0 35px 80px rgba(0, 0, 0, 0.25),
    0 4px 12px rgba(0, 0, 0, 0.12);
}

/* wrapper ini satu-satunya yang perlu z-index, supaya berada di atas
     pola titik dekoratif. Di dalamnya judul & gambar murni flow biasa
     (bukan absolute), judul otomatis duduk di atas gambar. */
.rental-card__top-content {
  position: relative;
  z-index: 1;
}

.rental-card__badge {
  position: absolute;
  top: 12px;
  right: 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(2px);
  color: var(--third-color);
  font-family: var(--alt-font);
  font-weight: 600;
  font-size: 0.5rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 11px;
  border-radius: 999px;
  margin-bottom: 12px;
}

.rental-card__img {
  display: block;
  width: 100%;
  /* max-width: 300px; */
  /* margin: 4px auto -6px; */
  /* filter: drop-shadow(0 14px 16px rgba(0, 0, 0, 0.28)); */
}

.rental-card__body {
  position: relative;
  padding: 24px 15px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* harga1/per1 — harga2/per2 */
.rental-price {
  display: flex;
  align-items: stretch;
  gap: 10px;
}
.rental-price__item {
  flex: 1;
}
.rental-price__amount {
  display: block;
  font-family: var(--primary-font);
  font-weight: 700;
  font-size: 0.7rem;
  color: var(--second-color);
  letter-spacing: -0.01em;
}
.rental-price__unit {
  display: block;
  font-family: var(--alt-font);
  font-size: 0.5rem;
  color: var(--ink-soft);
  margin-top: 2px;
}
.rental-price__divider {
  width: 1px;
  background-image: linear-gradient(
    to bottom,
    rgba(var(--second-color-rgb), 0.14) 0 5px,
    transparent 5px 10px
  );
  background-size: 1px 10px;
}

.rental-divider {
  height: 1px;
  background: rgba(var(--second-color-rgb), 0.08);
  margin: 10px 0 10px;
}

/* include: input koma -> list sebaris 4 */
.rental-include {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 7px;
}
.rental-include__item {
  text-align: center;
}
.rental-include__icon {
  width: 40px;
  height: 40px;
  margin: 0 auto 0px;
  border-radius: 10px;
  background: var(--very-light-base-color);
  display: grid;
  place-items: center;
}
.rental-include__icon svg {
  width: 20px;
  height: 20px;
}
.rental-include__label {
  font-family: var(--alt-font);
  font-size: 0.5rem;
  font-weight: 500;
  color: var(--ink-soft);
  line-height: 1.25;
}

/* wave hijau penutup card */
.rental-card__wave {
  position: relative;
  margin-top: 10px;
  line-height: 0;
}
.rental-card__wave svg {
  display: block;
  width: 100%;
  height: auto;
}
.rental-card__wave-content {
  /*position: absolute;*/
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 15px;
}

@media (max-width: 420px) {
  .rental-include {
    grid-template-columns: repeat(4, 1fr);
    gap: 4px;
  }
  .rental-include__label {
    font-size: 0.6rem;
  }
  .rental-card__wave {
    margin-top: 20px;
  }
}
/* =========================================================
     KEUNGGULAN
     ========================================================= */
.keunggulan {
  position: relative;
  padding: clamp(30px, 5vw, 60px) 0;
  overflow: hidden;
  isolation: isolate;
  color: var(--third-color);

  background-image:
    linear-gradient(
      175deg,
      rgba(2, 10, 6, 0.86) 0%,
      rgba(1, 120, 63, 0.88) 58%,
      rgba(1, 191, 100, 0.82) 100%
    ),
    var(--bg-keunggulan);

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* tekstur titik halus + vignette, biar tetap enak dilihat walau
     foto belum ter-load / diganti nanti */
.keunggulan::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.14) 1.4px,
    transparent 1.4px
  );
  background-size: 24px 24px;
}
.keunggulan::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(
    120% 90% at 85% -10%,
    rgba(1, 191, 100, 0.35),
    transparent 60%
  );
}

.keunggulan__ornament {
  position: absolute;
  top: -40px;
  right: -40px;
  width: clamp(200px, 22vw, 320px);
  height: clamp(200px, 22vw, 320px);
  opacity: 0.16;
  pointer-events: none;
}

.keunggulan__head {
  position: relative;
  z-index: 1;
  text-align: center;
  /* max-width: 640px; */
  margin: 0 auto clamp(35px, 4.5vw, 50px);
}
.keunggulan__head .eyebrow {
  background: rgba(255, 255, 255, 0.12);
  color: var(--third-color);
}
.keunggulan__head .eyebrow .eyebrow__dot {
  background: var(--third-color);
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.22);
}
.keunggulan h2 {
  font-family: var(--primary-font);
  font-weight: 800;
  font-size: clamp(1.4rem, 2vw, 1.5rem);
  line-height: 1.18;
  letter-spacing: -0.01em;
  color: var(--third-color);
}
.keunggulan h2 .accent {
  color: #b6ffd8;
}
.keunggulan__lead {
  font-family: var(--alt-font);
  /* font-size: 0.98rem; */
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.78);
  margin-top: 14px;
}

/* garis rute penghubung antar-card, mengikuti motif situs */
.keunggulan__route {
  position: absolute;
  left: 0;
  right: 0;
  top: 108px;
  width: 100%;
  height: 4px;
  z-index: 0;
  opacity: 0.5;
}

.keunggulan-card {
  position: relative;
  z-index: 1;
  height: 100%;
  padding: 46px 20px 30px;
  text-align: center;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 22px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition:
    transform 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease;
}
.keunggulan-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.11);
  border-color: rgba(255, 255, 255, 0.3);
}

.keunggulan-card__icon {
  width: 74px;
  height: 74px;
  margin: -68px auto 20px;
  border-radius: 20px;
  display: grid;
  place-items: center;
  background: linear-gradient(
    145deg,
    #01e878 0%,
    var(--base-color) 55%,
    var(--base-color-dark) 100%
  );
  box-shadow:
    0 16px 28px -10px rgba(1, 191, 100, 0.6),
    0 0 0 6px rgba(255, 255, 255, 0.08);
  position: relative;
}
.keunggulan-card__icon::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: linear-gradient(
    160deg,
    rgba(255, 255, 255, 0.35),
    transparent 55%
  );
}
.keunggulan-card__icon svg {
  position: relative;
  z-index: 1;
  width: 32px;
  height: 32px;
  /* ikon sumber gambar putih polos -> tetap putih di atas background gradasi */
  fill: #ffffff;
}

.keunggulan-card__num {
  position: absolute;
  top: 14px;
  right: 18px;
  font-family: var(--primary-font);
  font-weight: 700;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 0.05em;
}

.keunggulan-card__title {
  font-family: var(--primary-font);
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--third-color);
  margin-bottom: 10px;
}
.keunggulan-card__desc {
  font-family: var(--alt-font);
  font-size: 0.6rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.72);
}

@media (max-width: 991.98px) {
  .keunggulan__route {
    display: none;
  }
}

/* =========================================================
     TESTIMONI
     ========================================================= */
.testimoni {
  position: relative;
  background: var(--third-color);
  overflow: hidden;
}

.testimoni__ornament-dots {
  position: absolute;
  top: 0;
  left: 0;
  width: min(46vw, 620px);
  height: 100%;
  z-index: 0;
  opacity: 0.6;
  background-image: radial-gradient(
    circle,
    rgba(var(--base-color-rgb), 0.16) 1.6px,
    transparent 1.6px
  );
  background-size: 22px 22px;
  -webkit-mask-image: radial-gradient(
    ellipse 60% 70% at 0% 50%,
    #000 20%,
    transparent 75%
  );
  mask-image: radial-gradient(
    ellipse 60% 70% at 0% 50%,
    #000 20%,
    transparent 75%
  );
}

.testimoni__batik {
  position: absolute;
  bottom: -50px;
  right: -50px;
  width: clamp(200px, 22vw, 300px);
  height: clamp(200px, 22vw, 300px);
  opacity: 0.14;
  z-index: 0;
}

.testimoni__head {
  position: relative;
  z-index: 1;
}
.testimoni h2 {
  font-family: var(--primary-font);
  font-weight: 700;
  font-size: clamp(1.4rem, 2vw, 1.5rem);
  line-height: 1.2;
  color: var(--second-color);
  /* max-width: 12ch; */
  margin-top: 6px;
}
.testimoni h2 .accent {
  color: var(--base-color);
}
.testimoni__lead {
  font-family: var(--alt-font);
  /* font-size: 0.98rem; */
  line-height: 1.7;
  color: var(--ink-soft);
  /* max-width: 40ch; */
  margin: 16px 0 30px;
}

.testimoni__rating {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 14px 20px;
  border-radius: 16px;
  background: var(--very-light-base-color);
  margin-bottom: 32px;
}
.testimoni__rating-num {
  font-family: var(--primary-font);
  font-weight: 800;
  font-size: 1rem;
  color: var(--second-color);
}
.testimoni__rating-stars svg {
  width: 13px;
  height: 13px;
}
.testimoni__rating-sub {
  font-family: var(--alt-font);
  font-size: 0.72rem;
  color: var(--ink-soft);
  margin-top: 2px;
}
/* --- stack kartu di kanan --- */
.testimoni-stack {
  position: relative;
  z-index: 1;
  min-height: 340px;
  display: flex;
  align-items: center;
}
.testimoni-ghost {
  position: absolute;
  inset: 0;
  border-radius: 24px;
  background: var(--very-light-base-color);
  border: 1px solid rgba(var(--base-color-rgb), 0.18);
}
.testimoni-ghost--1 {
  transform: rotate(-4deg) translateY(10px);
  opacity: 0.75;
}
.testimoni-ghost--2 {
  transform: rotate(4deg) translateY(18px);
  opacity: 0.45;
  background: rgba(var(--base-color-rgb), 0.08);
}

.testimoni-dots {
  display: flex;
  gap: 7px;
  margin-top: 24px;
}
.testimoni-dots span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(var(--second-color-rgb), 0.15);
  transition:
    background 0.2s ease,
    width 0.2s ease;
}
.testimoni-dots span.active {
  background: var(--base-color);
  width: 20px;
  border-radius: 4px;
}

/* =========================================================
     GALERI
     ========================================================= */
.galeri {
  position: relative;
  padding: clamp(15px, 1vw, 30px) 0;
  background: var(--very-light-base-color);
  overflow: hidden;
}
.galeri__ornament {
  position: absolute;
  top: -30px;
  left: -30px;
  width: clamp(160px, 18vw, 240px);
  height: clamp(160px, 18vw, 240px);
  opacity: 0.14;
  z-index: 0;
}

.galeri__head {
  position: relative;
  z-index: 1;
  margin-bottom: clamp(32px, 5vw, 48px);
}
.galeri h2 {
  font-family: var(--primary-font);
  font-weight: 800;
  font-size: clamp(1.4rem, 2vw, 1.5rem);
  line-height: 1.2;
  color: var(--second-color);
  /* max-width: 16ch; */
  margin: 6px auto 0;
}
.galeri h2 .accent {
  color: var(--base-color);
}
/* ---------- Bento grid ---------- */
.gl-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 170px;
  gap: 1rem;
}

.gl-item {
  position: relative;
  display: block;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 14px 30px -18px rgba(1, 152, 80, 0.35);
}

.gl-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.gl-item:hover img {
  transform: scale(1.09);
}

/* Bento placement (desktop) */
.gl-item:nth-child(1) {
  grid-column: 1 / 3;
  grid-row: 1 / 3;
}

.gl-item:nth-child(2) {
  grid-column: 3 / 4;
  grid-row: 1 / 2;
}

.gl-item:nth-child(3) {
  grid-column: 4 / 5;
  grid-row: 1 / 2;
}

.gl-item:nth-child(4) {
  grid-column: 3 / 4;
  grid-row: 2 / 3;
}

.gl-item:nth-child(5) {
  grid-column: 4 / 5;
  grid-row: 2 / 3;
}

.gl-item:nth-child(6) {
  grid-column: 1 / 2;
  grid-row: 3 / 4;
}

.gl-item:nth-child(7) {
  grid-column: 2 / 4;
  grid-row: 3 / 4;
}

.gl-item:nth-child(8) {
  grid-column: 4 / 5;
  grid-row: 3 / 4;
}

/* Overlay */
.gl-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background: linear-gradient(
    180deg,
    rgba(var(--second-color-rgb), 0) 40%,
    rgba(var(--second-color-rgb), 0.82) 100%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gl-item:hover .gl-overlay {
  opacity: 1;
}

.gl-zoom {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1.5px solid var(--base-color);
  color: var(--third-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  transform: translateY(8px);
  transition: transform 0.3s ease;
}

.gl-item:hover .gl-zoom {
  transform: translateY(0);
}

.gl-caption {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 12px;
  font-family: var(--primary-font);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--third-color);
  text-align: left;
  opacity: 0;
  transform: translateY(6px);
  transition:
    opacity 0.3s ease 0.05s,
    transform 0.3s ease 0.05s;
}

.gl-item:hover .gl-caption {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Responsive ---------- */
@media (max-width: 991px) {
  .gl-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 200px;
  }

  .gl-item:nth-child(n) {
    grid-column: auto;
    grid-row: auto;
  }

  .gl-item:nth-child(1) {
    grid-column: 1 / 3;
    grid-row: span 2;
  }
}

@media (max-width: 575px) {
  .gl-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 200px;
  }

  .gl-item:nth-child(1) {
    grid-column: auto;
    grid-row: auto;
  }
}
.background-footer > * {
  position: relative;
  z-index: 2;
}
.background-footer {
  position: relative;
  background:
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.92) 0%,
      rgba(3, 20, 12, 0.92) 25%,
      rgba(1, 70, 38, 0.85) 55%,
      rgba(1, 140, 74, 0.75) 80%,
      rgba(1, 191, 100, 0.55) 100%
    ),
    var(--footer-bg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.background-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at bottom,
    rgba(1, 191, 100, 0.95) 0%,
    rgba(1, 150, 80, 0.75) 28%,
    rgba(0, 70, 38, 0.55) 55%,
    rgba(0, 0, 0, 0.35) 80%,
    rgba(0, 0, 0, 0) 100%
  );
  z-index: 1;
  border-radius: 50px 50px 0 0;
}
.f-link-hover {
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  font-size: 14px;
}
.social-wrapper {
  display: flex;
  gap: 12px;
}
.social-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--base-color);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
}
/* ==== elemen tambahan banner Rental Mobil saja, tidak menyentuh style tema ==== */
.banner-rental__breadcrumb {
  font-family: var(--alt-font);
  /* font-size: 0.82rem; */
  color: #ffffff;
}

.banner-rental__breadcrumb a {
  color: #ffffff;
  opacity: 0.75;
}

.banner-rental__breadcrumb a:hover {
  opacity: 1;
}

.banner-rental__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.banner-rental__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--alt-font);
  font-weight: 600;
  /* font-size: 0.82rem; */
  color: #ffffff;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 8px 16px;
  border-radius: 999px;
}

.banner-rental__badge svg {
  width: 15px;
  height: 15px;
  color: var(--base-color);
  flex-shrink: 0;
}

@media (max-width: 991.98px) {
  .banner-rental__badges {
    margin-bottom: 8px;
    display: none;
  }
}
/* ---------- Masonry (CSS columns) ---------- */
.gp-masonry {
  column-count: 4;
  column-gap: 1.1rem;
}

.gp-item {
  position: relative;
  display: block;
  break-inside: avoid;
  -webkit-column-break-inside: avoid;
  margin-bottom: 1.1rem;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 14px 30px -18px rgba(33, 77, 59, 0.35);
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}

.gp-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s ease;
}

.gp-item:hover img {
  transform: scale(1.08);
}

/* Overlay */
.gp-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background: linear-gradient(
    180deg,
    rgba(20, 35, 28, 0) 45%,
    rgba(12, 24, 18, 0.82) 100%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gp-item:hover .gp-overlay {
  opacity: 1;
}

.gp-zoom {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid var(--second-color);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  transform: translateY(8px);
  transition: transform 0.3s ease;
}

.gp-item:hover .gp-zoom {
  transform: translateY(0);
}

.gp-caption {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 12px;
  font-family: var(--primary-font);
  font-size: 0.76rem;
  font-weight: 600;
  color: #fff;
  text-align: left;
  opacity: 0;
  transform: translateY(6px);
  transition:
    opacity 0.3s ease 0.05s,
    transform 0.3s ease 0.05s;
}

.gp-item:hover .gp-caption {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Responsive ---------- */
@media (max-width: 1199px) {
  .gp-masonry {
    column-count: 3;
  }
}

@media (max-width: 767px) {
  .gp-masonry {
    column-count: 2;
    column-gap: 0.8rem;
  }

  .gp-item {
    margin-bottom: 0.8rem;
  }
}
/* ---------- Blog / Artikel Card ---------- */
.blog-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: var(--third-color);
  border-radius: 18px;
  overflow: hidden;
  text-decoration: none;
  box-shadow: 0 10px 26px -16px rgba(var(--second-color-rgb), 0.18);
  border: 1px solid rgba(var(--second-color-rgb), 0.06);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 40px -18px rgba(var(--base-color-rgb), 0.35);
  border-color: rgba(var(--base-color-rgb), 0.25);
}

/* --- media / gambar --- */
.blog-card__media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.blog-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.blog-card:hover .blog-card__img {
  transform: scale(1.08);
}

.blog-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(var(--second-color-rgb), 0) 55%,
    rgba(var(--second-color-rgb), 0.55) 100%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.blog-card:hover .blog-card__media::after {
  opacity: 1;
}

.blog-card__date {
  position: absolute;
  left: 14px;
  bottom: 12px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--alt-font);
  font-weight: 600;
  font-size: 0.5rem;
  color: var(--third-color);
  background: rgba(var(--second-color-rgb), 0.45);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  padding: 6px 12px;
  border-radius: 999px;
}

.blog-card__date i {
  color: var(--base-color);
  font-size: 0.5rem;
}

/* --- body --- */
.blog-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 20px 15px 22px;
}

.blog-card__views {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--alt-font);
  font-size: 0.6rem;
  font-weight: 500;
  color: rgba(var(--second-color-rgb), 0.5);
  margin-bottom: 10px;
}

.blog-card__views i {
  color: var(--base-color);
  font-size: 0.6rem;
}

.blog-card__title {
  font-family: var(--primary-font);
  font-weight: 700;
  font-size: 0.8rem;
  line-height: 1.4;
  color: var(--second-color);
  margin-bottom: 10px;
  transition: color 0.25s ease;

  /* batasi 2 baris */
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  min-height: calc(1.4em * 2);
}

.blog-card:hover .blog-card__title {
  color: var(--base-color);
}

.blog-card__desc {
  font-family: var(--alt-font);
  font-size: 0.6rem;
  line-height: 1.65;
  color: rgba(var(--second-color-rgb), 0.62);
  margin-bottom: 18px;

  /* batasi 4 baris */
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
  min-height: calc(1.65em * 4);
}

.blog-card__more {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--primary-font);
  font-weight: 600;
  font-size: 0.6rem;
  color: var(--base-color);
  padding-top: 14px;
  border-top: 1px solid rgba(var(--second-color-rgb), 0.08);
}

.blog-card__more i {
  font-size: 0.8rem;
  transition: transform 0.25s ease;
}

.blog-card:hover .blog-card__more i {
  transform: translateX(4px);
}
/* ============================================================
   ARTICLE CONTENT (kolom kiri)
   ============================================================ */
.article-content {
  background: var(--third-color);
}

/* --- meta atas: penulis, tanggal, dilihat --- */
.article-content__meta-top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 22px;
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(var(--second-color-rgb), 0.08);
}

.article-content__author,
.article-content__date,
.article-content__views {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--alt-font);
  font-weight: 500;
  font-size: 0.6rem;
  color: rgba(var(--second-color-rgb), 0.58);
}

.article-content__author i,
.article-content__date i,
.article-content__views i {
  font-size: 0.7rem;
  color: var(--base-color);
}

.article-content__author-role {
  font-weight: 600;
  color: var(--second-color);
}

/* --- judul --- */
.article-content__title {
  font-family: var(--primary-font);
  font-weight: 800;
  font-size: clamp(1rem, 2vw, 2rem);
  line-height: 1.28;
  letter-spacing: -0.01em;
  color: var(--second-color);
  margin-bottom: 28px;
}

/* --- gambar utama --- */
.article-content__media {
  position: relative;
  margin-bottom: 32px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 44px -22px rgba(var(--second-color-rgb), 0.28);
}

.article-content__img {
  width: 100%;
  height: auto;
  /* max-height: 460px; */
  object-fit: cover;
  display: block;
}

.article-content__caption {
  display: block;
  font-family: var(--alt-font);
  font-style: italic;
  font-size: 0.6rem;
  color: rgba(var(--second-color-rgb), 0.55);
  padding: 10px 4px 0;
  text-align: center;
}

/* --- isi artikel (konten rich text dari CMS) --- */
.article-content__body {
  font-family: var(--alt-font);
  font-size: 0.7rem;
  line-height: 1.85;
  color: rgba(var(--second-color-rgb), 0.82);
}

.article-content__body p {
  margin-bottom: 1em;
}

.article-content__body h2,
.article-content__body h3,
.article-content__body h4 {
  font-family: var(--primary-font);
  font-weight: 700;
  color: var(--second-color);
  line-height: 1.35;
  margin: 0.8em 0 0.7em;
}
.article-content__body h2 {
  font-size: 1.4rem;
}
.article-content__body h3 {
  font-size: 1.18rem;
}

.article-content__body h2::before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 1.05em;
  background: var(--base-color);
  border-radius: 3px;
  margin-right: 10px;
  vertical-align: -0.15em;
}

.article-content__body a {
  color: var(--base-color-dark, var(--base-color));
  text-decoration: underline;
  text-decoration-color: rgba(var(--base-color-rgb), 0.35);
  text-underline-offset: 3px;
  transition: text-decoration-color 0.2s ease;
}
.article-content__body a:hover {
  text-decoration-color: currentColor;
}

.article-content__body strong {
  color: var(--second-color);
  font-weight: 700;
}

.article-content__body ul,
.article-content__body ol {
  margin: 0 0 1.3em;
  padding-left: 1.4em;
}
.article-content__body ul {
  list-style: none;
  padding-left: 0;
}
.article-content__body ul li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 0.6em;
}
.article-content__body ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--base-color);
}
.article-content__body ol li {
  margin-bottom: 0.6em;
  padding-left: 4px;
}

.article-content__body blockquote {
  margin: 1.2em 0;
  padding: 18px 18px;
  background: var(--very-light-base-color);
  border-left: 4px solid var(--base-color);
  border-radius: 4px 14px 14px 4px;
  font-family: var(--primary-font);
  font-weight: 500;
  font-style: normal;
  font-size: 0.8rem;
  color: var(--second-color);
}

.article-content__body img {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  margin: 1.6em 0;
  box-shadow: 0 16px 34px -20px rgba(var(--second-color-rgb), 0.3);
}

.article-content__body table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.6em 0;
  /* font-size: 0.92rem; */
}
.article-content__body table th,
.article-content__body table td {
  padding: 10px 14px;
  border: 1px solid rgba(var(--second-color-rgb), 0.1);
}
.article-content__body table th {
  background: var(--very-light-base-color);
  font-family: var(--primary-font);
  font-weight: 700;
  color: var(--second-color);
}

/* --- share artikel --- */
.article-content__share {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid rgba(var(--second-color-rgb), 0.08);
}

.article-content__share-label {
  font-family: var(--primary-font);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--second-color);
}

.article-content__share nav.social {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.article-content__share nav.social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--very-light-base-color);
  color: var(--second-color);
  font-size: 0.95rem;
  cursor: pointer;
  transition:
    background 0.22s ease,
    color 0.22s ease,
    transform 0.22s ease;
}

.article-content__share nav.social a:hover {
  background: var(--base-color);
  color: var(--third-color);
  transform: translateY(-3px);
}

/* ============================================================
   SIDEBAR (kolom kanan) — sticky
   ============================================================ */
.article-sidebar {
  position: sticky;
  top: 100px; /* sesuaikan dengan tinggi navbar-mu */
  background: var(--third-color);
  border: 1px solid rgba(var(--second-color-rgb), 0.07);
  border-radius: 22px;
  padding: 28px 24px;
  box-shadow: 0 18px 40px -26px rgba(var(--second-color-rgb), 0.22);
}

.article-sidebar__heading {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--primary-font);
  font-weight: 700;
  font-size: 1rem;
  color: var(--second-color);
  margin-bottom: 22px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(var(--second-color-rgb), 0.08);
}

.article-sidebar__heading i {
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: linear-gradient(
    145deg,
    var(--base-color),
    var(--base-color-dark, var(--base-color))
  );
  color: var(--third-color);
  font-size: 1rem;
}

/* --- list artikel populer --- */
.article-sidebar__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.article-sidebar__item {
  display: flex;
  gap: 14px;
  text-decoration: none;
  padding: 8px;
  margin: -8px;
  border-radius: 14px;
  transition: background 0.2s ease;
}
.article-sidebar__item:hover {
  background: var(--very-light-base-color);
}

.article-sidebar__item-media {
  flex-shrink: 0;
  width: 78px;
  height: 78px;
  border-radius: 12px;
  overflow: hidden;
}
.article-sidebar__item-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.article-sidebar__item:hover .article-sidebar__item-media img {
  transform: scale(1.08);
}

.article-sidebar__item-body {
  flex: 1;
  min-width: 0;
}

.article-sidebar__item-title {
  font-family: var(--primary-font);
  font-weight: 600;
  font-size: 0.8rem;
  line-height: 1.4;
  color: var(--second-color);
  margin-bottom: 8px;
  transition: color 0.2s ease;

  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.article-sidebar__item:hover .article-sidebar__item-title {
  color: var(--base-color);
}

.article-sidebar__item-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 12px;
  font-family: var(--alt-font);
  font-size: 0.7rem;
  color: rgba(var(--second-color-rgb), 0.5);
}
.article-sidebar__item-meta span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.article-sidebar__item-meta i {
  color: var(--base-color);
  font-size: 0.6rem;
}

/* --- CTA WhatsApp di bawah sidebar --- */
.article-sidebar__cta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 26px;
  padding: 18px;
  border-radius: 16px;
  background: linear-gradient(
    135deg,
    var(--base-color) 0%,
    var(--base-color-dark, var(--base-color)) 100%
  );
  color: var(--third-color);
}

.article-sidebar__cta > i {
  font-size: 1rem;
  flex-shrink: 0;
  opacity: 0.9;
}

.article-sidebar__cta > div {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.article-sidebar__cta-title {
  font-family: var(--primary-font);
  font-weight: 700;
  font-size: 0.8rem;
}

.article-sidebar__cta-desc {
  font-family: var(--alt-font);
  font-size: 0.7rem;
  opacity: 0.85;
}

.article-sidebar__cta-btn {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition:
    background 0.2s ease,
    transform 0.2s ease;
}
.article-sidebar__cta-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.06);
}

/* --- responsive: sidebar berhenti sticky di layar kecil --- */
@media (max-width: 991.98px) {
  .article-sidebar {
    position: static;
    margin-top: 8px;
  }
}
/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact-section {
  padding: clamp(25px, 5vw, 50px) 0;
  background: var(--very-light-base-color);
}

.contact-wrapper {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 40px 80px -36px rgba(var(--second-color-rgb), 0.35);
}

/* ============================================================
   KIRI — Panel gelap data kontak
   ============================================================ */
.contact-panel {
  position: relative;
  height: 100%;
  /* min-height: 480px; */
  padding: clamp(36px, 4vw, 56px) clamp(30px, 4vw, 48px);
  background:
    radial-gradient(
      120% 90% at 100% 0%,
      rgba(var(--base-color-rgb), 0.35),
      transparent 55%
    ),
    linear-gradient(155deg, #06120c 0%, var(--second-color) 55%, #081a11 100%);
  color: var(--third-color);
  overflow: hidden;
  display: flex;
  align-items: center;
}

.contact-panel__pattern {
  position: absolute;
  top: -10px;
  right: -10px;
  z-index: 0;
  pointer-events: none;
}

/* aksen garis hijau melengkung tipis, biar panel gelap tidak flat */
.contact-panel::after {
  content: "";
  position: absolute;
  left: -60px;
  bottom: -60px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(var(--base-color-rgb), 0.28) 0%,
    transparent 70%
  );
  z-index: 0;
  pointer-events: none;
}

.contact-panel__content {
  position: relative;
  z-index: 1;
  width: 100%;
}

.contact-panel__title {
  font-family: var(--primary-font);
  font-weight: 800;
  font-size: clamp(0.9rem, 2vw, 1.2rem);
  color: var(--third-color);
  margin-bottom: 12px;
}

.contact-panel__subtitle {
  font-family: var(--alt-font);
  font-size: 0.7rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 1);
  /* max-width: 34ch; */
  margin-bottom: 34px;
}

/* --- list kontak --- */
.contact-panel__list {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-bottom: 36px;
}

.contact-panel__item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-panel__icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--base-color);
  font-size: 1rem;
  transition:
    background 0.25s ease,
    transform 0.25s ease,
    border-color 0.25s ease;
}

.contact-panel__item:hover .contact-panel__icon {
  background: var(--base-color);
  border-color: var(--base-color);
  color: var(--second-color);
  transform: translateY(-2px);
}

.contact-panel__body {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}

.contact-panel__label {
  font-family: var(--alt-font);
  font-weight: 600;
  font-size: 0.6rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

.contact-panel__value {
  font-family: var(--primary-font);
  font-weight: 600;
  font-size: 0.8rem;
  color: var(--third-color);
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact-panel__value:hover {
  color: var(--base-color);
}

.contact-panel__value--text {
  font-family: var(--alt-font);
  font-weight: 400;
  font-size: 0.8rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 1);
  /* max-width: 32ch; */
}

/* ============================================================
   KANAN — Peta
   ============================================================ */
.contact-map {
  position: relative;
  height: 100%;
  min-height: 380px;
  background: var(--very-light-base-color);
}

.contact-map iframe,
.contact-map embed {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.15) contrast(1.02);
}

.contact-map__link {
  position: absolute;
  left: 22px;
  bottom: 22px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--primary-font);
  font-weight: 600;
  font-size: 0.86rem;
  color: var(--second-color);
  background: var(--third-color);
  padding: 13px 20px;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 16px 32px -14px rgba(var(--second-color-rgb), 0.4);
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    color 0.2s ease,
    box-shadow 0.2s ease;
}

.contact-map__link i {
  color: var(--base-color);
  font-size: 1rem;
  transition: color 0.2s ease;
}

.contact-map__link:hover {
  background: var(--base-color);
  color: var(--third-color);
  transform: translateY(-3px);
  box-shadow: 0 20px 38px -14px rgba(var(--base-color-rgb), 0.55);
}

.contact-map__link:hover i {
  color: var(--third-color);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 991.98px) {
  .contact-panel {
    min-height: auto;
    border-radius: 28px 28px 0 0;
  }
  .contact-map {
    min-height: 340px;
    border-radius: 0 0 28px 28px;
  }
}

@media (max-width: 575.98px) {
  .contact-panel__list {
    gap: 18px;
  }
  .contact-map__link {
    left: 14px;
    right: 14px;
    bottom: 14px;
    justify-content: center;
  }
}
.floating-wa {
  position: fixed;
  left: 24px;
  bottom: 24px;
  width: 64px;
  height: 64px;
  z-index: 9999;
  border-radius: 50%;
  background: linear-gradient(135deg, #25d366, #01bf64);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow:
    0 10px 30px rgba(1, 191, 100, 0.45),
    0 0 0 8px rgba(1, 191, 100, 0.08);
  transition: 0.35s ease;
}

.floating-wa:hover {
  transform: translateY(-6px) scale(1.08);
  box-shadow:
    0 18px 45px rgba(1, 191, 100, 0.55),
    0 0 0 12px rgba(1, 191, 100, 0.12);
}

.floating-wa__icon {
  position: relative;
  z-index: 3;
  color: #fff;
  font-size: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.floating-wa__pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.35);
  animation: waPulse 2.2s infinite;
}

.floating-wa__pulse--delay {
  animation-delay: 1.1s;
}

@keyframes waPulse {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }

  70% {
    transform: scale(1.8);
    opacity: 0;
  }

  100% {
    transform: scale(1.8);
    opacity: 0;
  }
}

.floating-wa__tooltip {
  position: absolute;
  left: 78px;
  top: 50%;
  transform: translateY(-50%);
  background: #051018;
  color: #fff;
  padding: 10px 16px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.floating-wa__tooltip::before {
  content: "";
  position: absolute;
  left: -6px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 12px;
  height: 12px;
  background: #051018;
}

.floating-wa:hover .floating-wa__tooltip {
  opacity: 1;
  visibility: visible;
  left: 84px;
}

/* Floating animation */
@keyframes waFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

.floating-wa {
  animation: waFloat 3s ease-in-out infinite;
}

/* Mobile */
@media (max-width: 768px) {
  .floating-wa {
    left: 18px;
    bottom: 18px;
    width: 58px;
    height: 58px;
  }

  .floating-wa__icon {
    font-size: 30px;
  }

  .floating-wa__tooltip {
    display: none;
  }
}/* ============================================================
   PAKET WISATA CARD
   ============================================================ */
.paket-card {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  background: var(--third-color);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 16px 36px -22px rgba(var(--second-color-rgb), 0.28);
  border: 1px solid rgba(var(--second-color-rgb), 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
 
.paket-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 50px -22px rgba(var(--base-color-rgb), 0.4);
  border-color: rgba(var(--base-color-rgb), 0.25);
}
 
/* --- gambar --- */
.paket-image {
  position: relative;
  /*aspect-ratio: 4 / 3;*/
  overflow: hidden;
}
 
.paket-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
 
.paket-card:hover .paket-image img {
  /*transform: scale(1.08);*/
}
 
/*.paket-image::after {*/
/*  content: "";*/
/*  position: absolute;*/
/*  inset: 0;*/
/*  background: linear-gradient(180deg, rgba(var(--second-color-rgb), 0) 55%, rgba(var(--second-color-rgb), 0.55) 100%);*/
/*}*/
 
.paket-badge {
  position: absolute;
  z-index: 1;
  left: 14px;
  bottom: 12px;
  font-family: var(--primary-font);
  font-weight: 600;
  font-size: 0.82rem;
  color: var(--third-color);
  background: rgba(var(--second-color-rgb), 0.4);
  backdrop-filter: blur(4px);
  padding: 7px 14px;
  border-radius: 999px;
}
 
/* --- body --- */
.paket-content {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 22px 22px 24px;
}
 
/* --- harga paket --- */
.paket-price {
  position: relative;
  margin: 0px 0 20px;
  padding: 16px 18px;
  border-radius: 16px;
  background:
    radial-gradient(120% 140% at 0% 0%, rgba(255,255,255,0.16) 0%, transparent 45%),
    linear-gradient(135deg, var(--base-color) 0%, var(--base-color-dark, #019850) 100%);
  box-shadow: 0 14px 28px -14px rgba(var(--base-color-rgb), 0.55);
}
 
.paket-price small {
  display: block;
  font-family: var(--alt-font);
  font-weight: 600;
  font-size: 0.6rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 4px;
}
 
.paket-price h2 {
  font-family: var(--primary-font);
  font-weight: 800;
  font-size: 1rem;
  line-height: 1.2;
  color: var(--third-color);
  margin: 0;
}
 
.paket-price h2 .fs-13 {
  font-family: var(--alt-font);
  font-weight: 500;
  font-size: 0.7rem !important;
  opacity: 0.85;
}
 
/* --- destinasi (rute) --- */
.paket-destination {
  margin-bottom: 20px;
}
 
.paket-destination h5 {
  font-family: var(--primary-font);
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--second-color);
  margin-bottom: 12px;
}
 
.paket-destination ul {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
}
 
.paket-destination ul::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 6px;
  bottom: 6px;
  width: 1px;
  background-image: linear-gradient(to bottom, rgba(var(--second-color-rgb), 0.18) 0 4px, transparent 4px 8px);
  background-size: 1px 8px;
}
 
.paket-destination li {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: var(--alt-font);
  font-size: 0.7rem;
  color: var(--ink-soft, rgba(var(--second-color-rgb), 0.68));
  padding: 2px 0;
}
 
.paket-destination li i {
  flex-shrink: 0;
  width: 13px;
  height: 13px;
  margin-top: 3px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  color: var(--third-color);
  background: var(--base-color);
  border-radius: 50%;
  box-shadow: 0 0 0 3px var(--third-color);
}
 
/* --- sudah termasuk --- */
.paket-include {
  margin-bottom: 6px;
  padding-top: 18px;
  border-top: 1px solid rgba(var(--second-color-rgb), 0.08);
}
 
.paket-include > small {
  display: block;
  font-family: var(--alt-font);
  font-weight: 600;
  font-size: 0.6rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(var(--second-color-rgb), 0.45);
}
 
.include-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-family: var(--alt-font);
    font-weight: 500;
    font-size: 0.6rem;
    color: var(--second-color);
    background: var(--very-light-base-color);
    border-radius: 10px;
    padding: 8px 10px;
}
 
.include-item i {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: var(--base-color-dark, var(--base-color));
  background: rgba(var(--base-color-rgb), 0.14);
  border-radius: 7px;
}
