:root {
  --bs-primary: #0c294b;
  --base-color: #0c294b;
  --base-color-rgb: 12, 41, 75;
  --second-color: #c89b3c;
  --second-color-rgb: 200, 155, 60;
  --third-color: #8d6b18;
  --very-light-base-color: #f6f7f9;
  --primary-font: "Poppins", sans-serif;
  --alt-font: "Inter", sans-serif;
}
.bg-gradient-gold {
  background: linear-gradient(
    135deg,
    #0c294b 0%,
    #000000 18%,
    #111111 36%,
    #0c294b 55%,
    #000000 78%,
    #0c294b 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;
  }
}

.hero-simple {
  position: relative;
  overflow: hidden;
  background: #fff;
}

/* Ornamen dot pattern pojok kiri atas */
.hero-simple__dots {
  position: absolute;
  top: 2rem;
  left: 2rem;
  opacity: 0.5;
  z-index: 0;
}

/* Ornamen blob di pojok kanan bawah */
.hero-simple__blob {
  position: absolute;
  bottom: -4rem;
  right: -3rem;
  width: 320px;
  height: 320px;
  z-index: 0;
  opacity: 0.8;
}

.hero-simple .container {
  position: relative;
  z-index: 1;
}

.hero-simple__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--very-light-base-color);
  color: var(--base-color);
  font-family: var(--alt-font);
  font-weight: 600;
  font-size: 0.6rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.4rem 0.8rem;
  border-radius: 50px;
  margin-bottom: 1.25rem;
}
.hero-simple__badge i {
  color: var(--second-color);
  font-size: 1rem;
}

.hero-simple__title {
  font-family: var(--primary-font);
  font-size: clamp(1.5rem, 2.5vw, 1, 875rem);
  font-weight: 700;
  line-height: normal !important;
  margin-bottom: 1.1rem;
}
.hero-simple__title-accent {
  color: var(--second-color);
  /* display: block; */
}
.hero-simple__title-dark {
  color: var(--base-color);
  /* display: block; */
}

.hero-simple__desc {
  font-family: var(--alt-font);
  color: #5b6472;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.hero-simple__cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem;
}
.hero-simple__btn {
  display: inline-flex;
  align-items: center;
  background: var(--base-color);
  color: #fff;
  font-family: var(--alt-font);
  font-weight: 600;
  padding: 0.6rem 1.6rem;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(var(--base-color-rgb), 0.25);
}
.hero-simple__btn:hover {
  background: var(--second-color);
  color: var(--base-color);
  transform: translateY(-2px);
}
.hero-simple__service {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--alt-font);
  color: var(--base-color);
  font-weight: 500;
}
.hero-simple__dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--second-color);
  display: inline-block;
  box-shadow: 0 0 0 4px rgba(var(--second-color-rgb), 0.25);
}

/* Media */
.hero-simple__media {
  position: relative;
  display: flex;
  justify-content: center;
}
.hero-simple__media picture,
.hero-simple__media img {
  position: relative;
  z-index: 2;
  border-radius: 20px;
  /*box-shadow: 0 20px 45px rgba(var(--base-color-rgb), 0.18);*/
  width: 90%;
}
.hero-simple__ring {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 108%;
  height: 108%;
  transform: translate(-50%, -50%);
  z-index: 1;
  animation: heroSimpleSpin 30s linear infinite;
}

@keyframes heroSimpleSpin {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@media (max-width: 991px) {
  .hero-simple__dots,
  .hero-simple__blob {
    display: none;
  }
  .hero-simple__desc {
    max-width: 100%;
  }
}
.advantage-section {
  position: relative;
  background: #fff;
  /* overflow: hidden; */
}

.advantage-section__dots {
  position: absolute;
  top: 2.5rem;
  right: 3rem;
  opacity: 0.5;
  z-index: 0;
}
.advantage-section__ring {
  position: absolute;
  bottom: -3rem;
  left: -3rem;
  width: 200px;
  height: 200px;
  opacity: 0.5;
  z-index: 0;
}

.advantage-section .container {
  position: relative;
  z-index: 1;
}

/* List item */
.advantage-item {
  display: flex;
  gap: 1.5rem;
}
.advantage-item__marker {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}
.advantage-item__num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--very-light-base-color);
  color: var(--base-color);
  font-family: var(--primary-font);
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--second-color);
}
.advantage-item__connector {
  margin: 2px 0;
}

.advantage-item__body {
  display: flex;
  gap: 1rem;
  padding-bottom: 1.75rem;
}
.advantage-item__icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--base-color);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.advantage-item__title {
  font-family: var(--primary-font);
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--base-color);
  margin-bottom: 0.35rem !important;
}
.advantage-item__desc {
  font-family: var(--alt-font);
  /* font-size: 0.9rem; */
  line-height: 1.65;
  color: #5b6472;
  margin: 0;
}

/* Highlight card */
.advantage-highlight {
  position: relative;
  background: var(--base-color);
  border-radius: 22px;
  padding: 2.5rem 2rem;
  color: #fff;
  overflow: hidden;
}
.advantage-highlight__blob {
  position: absolute;
  top: -2rem;
  right: -2rem;
  width: 220px;
  height: 220px;
  z-index: 0;
}
.advantage-highlight__icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--second-color);
  color: var(--base-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
  position: relative;
  z-index: 1;
}
.advantage-highlight__title {
  font-family: var(--primary-font);
  font-weight: 700;
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
  position: relative;
  z-index: 1;
}
.advantage-highlight__desc {
  font-family: var(--alt-font);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.75);
  position: relative;
  z-index: 1;
}
.advantage-highlight__stats {
  display: flex;
  gap: 1.5rem;
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 1rem;
}
.advantage-highlight__stat-num {
  font-family: var(--primary-font);
  font-weight: 800;
  font-size: 1rem;
  color: var(--second-color);
}
.advantage-highlight__stat-num span,
.advantage-highlight__stat-num i {
  font-size: 1rem;
}
.advantage-highlight__stat-label {
  font-family: var(--alt-font);
  font-size: 0.6rem;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 0.2rem;
}

@media (max-width: 767px) {
  .advantage-section__dots,
  .advantage-section__ring {
    display: none;
  }
  .advantage-item__body {
    padding-bottom: 1.25rem;
  }
  .advantage-item__connector {
    height: 100px;
  }
}
.icon-white {
  filter: brightness(0) invert(1);
}
.fleet-hero {
  position: relative;
}

/* Background gambar cuma isi 50% tinggi SECTION (bagian atas) */
.fleet-hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 50%;
  overflow: hidden;
  z-index: 0;
}
.fleet-hero__bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.fleet-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(12, 41, 75, 0.9) 0%,
    rgba(12, 41, 75, 0.99) 100%
  );
}
.fleet-hero__road {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

/* Sisa 50% section bawah, polos */
.fleet-hero__plain {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: #fff;
  z-index: 0;
}

.fleet-hero__content {
  position: relative;
  z-index: 2;
}

.fleet-hero__header {
  padding-top: 1rem;
  margin-bottom: 2.5rem;
}
.fleet-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--alt-font);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--second-color);
  margin-bottom: 1rem;
}
.fleet-hero__eyebrow-line {
  width: 26px;
  height: 2px;
  background: var(--second-color);
}

.fleet-hero__title {
  font-family: var(--primary-font);
  font-weight: 700;
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  color: #fff;
  margin-bottom: 0;
}
.fleet-hero__title-accent {
  color: var(--second-color);
}

/* Cards overlap ke atas background */
.fleet-hero__cards {
  position: relative;
  /* margin-top: -110px; */
  z-index: 3;
}

.fleet-hero-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(var(--base-color-rgb), 0.18);
  height: 100%;
  display: flex;
  flex-direction: column;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
.fleet-hero-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 55px rgba(var(--base-color-rgb), 0.25);
}

.fleet-hero-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.7rem 1rem;
  background: black;
}
.fleet-hero-card__title {
  font-family: var(--primary-font);
  font-weight: 700;
  font-size: 0.7rem;
  color: white;
  margin: 0;
}
.fleet-hero-card__capacity {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  background: var(--very-light-base-color);
  color: var(--base-color);
  font-family: var(--alt-font);
  font-weight: 600;
  font-size: 0.5rem;
  padding: 0.35rem 0.7rem;
  border-radius: 50px;
  white-space: nowrap;
  position: absolute;
  top: 10px;
  right: 10px;
}
.fleet-hero-card__capacity i {
  color: var(--second-color);
}

.fleet-hero-card__media {
  /* height: 170px; */
  overflow: hidden;
  position: relative;
}
.fleet-hero-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
/* .fleet-hero-card:hover .fleet-hero-card__media img {
  transform: scale(1.07);
} */

.fleet-hero-card__body {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.fleet-hero-card__inex {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}
.fleet-hero-card__inex-label {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-family: var(--alt-font);
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.5rem;
  padding: 1px 15px;
  border-radius: 20px;
  background: var(--base-color);
}
.fleet-hero-card__inex-label--in {
  color: var(--second-color);
}
.fleet-hero-card__inex-label--in i {
  color: var(--second-color);
}
.fleet-hero-card__inex-label--ex {
  color: red;
}
.fleet-hero-card__inex-label--ex i {
  color: red;
}

.fleet-hero-card__inex-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.fleet-hero-card__inex-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.35rem;
  font-family: var(--alt-font);
  font-size: 0.6rem;
  color: var(--base-color);
  line-height: 1.35;
}
.fleet-hero-card__inex-list li svg {
  flex-shrink: 0;
  margin-top: 2px;
}

/* Scroll jika item > 4 */
.fleet-hero-card__inex-list--scroll {
  max-height: 96px;
  overflow-y: auto;
  padding-right: 4px;
}
.fleet-hero-card__inex-list--scroll::-webkit-scrollbar {
  width: 4px;
}
.fleet-hero-card__inex-list--scroll::-webkit-scrollbar-thumb {
  background: var(--second-color);
  border-radius: 4px;
}
.fleet-hero-card__inex-list--scroll::-webkit-scrollbar-track {
  background: transparent;
}

.fleet-hero-card__note {
  display: flex;
  flex-direction: column;
  align-items: center;
  /* gap: 0.5rem; */
  background: var(--base-color);
  border-radius: 10px;
  border: 1px solid var(--second-color);
  text-align: center;
  justify-content: start;
  padding: 0.6rem 0.9rem;
  /* margin-bottom: 1rem; */
}
.fleet-hero-card__note i {
  color: var(--third-color);
  font-size: 0.6rem;
  margin-top: 1px;
  flex-shrink: 0;
}
.fleet-hero-card__note span {
  font-family: var(--alt-font);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  color: #fff;
}

/* Harga kiri, tombol WA kanan */
.fleet-hero-card__footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid rgba(var(--base-color-rgb), 0.08);
}

.fleet-hero-card__btn {
  flex-shrink: 0;
  width: 100%;
  /* height: 46px; */
  border-radius: 20px;
  background: var(--second-color);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  /* font-size: 1.2rem; */
  text-decoration: none;
  transition: all 0.3s ease;
  padding: 10px;
}
.fleet-hero-card__btn:hover {
  border-color: 1px solid var(--base-color);
  background: transparent;
  color: var(--base-color);
  border: 1px solid var(--second-color);
  transform: scale(1.08);
}
@media (max-width: 767px) {
  .fleet-hero__bg {
    min-height: 300px;
  }
  .fleet-hero-card__inex {
    grid-template-columns: 1fr 1fr;
  }
  .fleet-hero-card__title {
    margin-bottom: 0 !important;
  }
}
.service-section {
  position: relative;
  background: #fff;
  overflow: hidden;
}
.service-section__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--very-light-base-color);
  color: var(--base-color);
  font-family: var(--alt-font);
  font-weight: 600;
  font-size: 0.6rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
  margin-bottom: 1.25rem;
}
.service-section__badge i {
  color: var(--second-color);
  font-size: 1rem;
}

.service-section__title {
  font-family: var(--primary-font);
  font-weight: 700;
  font-size: clamp(1.5rem, 2.5vw, 1.875rem);
  line-height: 1.25;
  margin-bottom: 1rem;
}
.service-section__title-accent {
  color: var(--second-color);
}
.service-section__title-dark {
  color: var(--base-color);
}

.service-section__subtitle {
  font-family: var(--alt-font);
  color: #5b6472;
  line-height: 1.7;
  margin: 0 auto;
}

/* Card */
.service-card {
  position: relative;
  display: block;
  aspect-ratio: 4 / 3;
  border-radius: 18px;
  overflow: hidden;
  text-decoration: none;
  box-shadow: 0 15px 35px rgba(var(--base-color-rgb), 0.12);
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(var(--base-color-rgb), 0.22);
}

.service-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.service-card:hover .service-card__img {
  transform: scale(1.08);
}

.service-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(12, 41, 75, 0.05) 0%,
    rgba(12, 41, 75, 0.55) 60%,
    rgba(12, 41, 75, 0.9) 100%
  );
  transition: background 0.4s ease;
}
.service-card:hover .service-card__overlay {
  background: linear-gradient(
    180deg,
    rgba(12, 41, 75, 0.1) 0%,
    rgba(12, 41, 75, 0.6) 55%,
    rgba(12, 41, 75, 0.95) 100%
  );
}

.service-card__content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.75rem 1.5rem;
  z-index: 2;
}

.service-card__rating {
  display: flex;
  gap: 0.2rem;
  margin-bottom: 0.2rem;
}
.service-card__rating i {
  color: var(--second-color);
  font-size: 0.95rem;
}

.service-card__title {
  font-family: var(--primary-font);
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
  margin-bottom: 0.2rem;
}

.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--alt-font);
  font-weight: 600;
  color: var(--second-color);
  opacity: 1;
  transform: translateY(6px);
  transition: all 0.35s ease;
}
.service-card:hover .service-card__link {
  opacity: 1;
  transform: translateY(0);
}
.service-card__link i {
  transition: transform 0.3s ease;
}
.service-card:hover .service-card__link i {
  transform: translateX(4px);
}

/* Garis emas tipis di tepi atas card saat hover */
.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--second-color), var(--third-color));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
  z-index: 3;
}
.service-card:hover::before {
  transform: scaleX(1);
}
.service-section__corner {
  position: absolute;
  z-index: 0;
  pointer-events: none;
}
.service-section__corner--tl {
  top: 1.5rem;
  left: 1.5rem;
}
.service-section__corner--br {
  bottom: 1.5rem;
  right: 1.5rem;
}
@media (max-width: 767px) {
  .service-section__corner {
    display: none;
  }
  .service-card {
    aspect-ratio: 3 / 2;
  }
  .service-card__link {
    opacity: 1;
    transform: translateY(0);
  }
}
.testi-section {
  position: relative;
  overflow: hidden;
}

/* Background gambar + overlay hitam + tint base-color */
.testi-section__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.testi-section__bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.testi-section__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.7) 100%),
    linear-gradient(
      120deg,
      rgba(var(--base-color-rgb), 0.85) 0%,
      rgba(var(--base-color-rgb), 0.55) 60%,
      rgba(var(--base-color-rgb), 0.85) 100%
    );
}

.testi-section__quote-mark {
  position: absolute;
  top: 2rem;
  left: 2rem;
  width: 90px;
  z-index: 1;
}
.testi-section__dots {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  z-index: 1;
}

.testi-section .container {
  position: relative;
  z-index: 2;
}

.testi-section__sticky {
  position: sticky;
  top: 2rem;
}

.testi-section__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(200, 155, 60, 0.4);
  color: var(--second-color);
  font-family: var(--alt-font);
  font-weight: 600;
  /* font-size: 0.8rem; */
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
}

.testi-section__title {
  font-family: var(--primary-font);
  font-weight: 700;
  font-size: clamp(1.5rem, 2.5vw, 1.875rem);
  line-height: 1.3;
  margin-bottom: 1.25rem;
}
.testi-section__title-accent {
  display: block;
  color: var(--second-color);
}
.testi-section__title-light {
  display: block;
  color: #fff;
}

.testi-section__desc {
  font-family: var(--alt-font);
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.75;
  margin-bottom: 2rem;
}

.testi-section__rating-box {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 14px;
  padding: 0.85rem 1.1rem;
}
.testi-section__rating-stars i {
  color: var(--second-color);
}
.testi-section__rating-text {
  font-family: var(--alt-font);
  color: rgba(255, 255, 255, 0.8);
  font-size: 12px;
}
.testi-section__rating-text strong {
  color: #fff;
}
.faq-section {
  position: relative;
  background: var(--very-light-base-color);
  /* overflow: hidden; */
}
.faq-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(var(--base-color-rgb), 0.06) 0%,
    rgba(var(--base-color-rgb), 0.02) 100%
  );
  z-index: 0;
}

.faq-section__dots {
  position: absolute;
  top: 2rem;
  right: 2rem;
  opacity: 0.6;
  z-index: 0;
}

.faq-section .container {
  position: relative;
  z-index: 1;
}

.faq-section__sticky {
  position: sticky;
  top: 100px;
}

.faq-section__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #fff;
  border: 1px solid rgba(var(--base-color-rgb), 0.1);
  color: var(--base-color);
  font-family: var(--alt-font);
  font-weight: 600;
  /* font-size: 0.8rem; */
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.5rem 1.1rem;
  border-radius: 50px;
  margin-bottom: 1.25rem;
}
.faq-section__badge i {
  color: var(--second-color);
}

.faq-section__title {
  font-family: var(--primary-font);
  font-weight: 700;
  font-size: clamp(1.5rem, 2.5vw, 1.875rem);
  line-height: 1.3;
  margin-bottom: 1.1rem;
}
.faq-section__title-accent {
  display: block;
  color: var(--second-color);
}
.faq-section__title-dark {
  display: block;
  color: var(--base-color);
}

.faq-section__desc {
  font-family: var(--alt-font);
  color: #5b6472;
  /* font-size: 0.95rem; */
  line-height: 1.75;
  margin-bottom: 2rem;
}

/* CTA di bawah header */
.faq-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--base-color);
  border-radius: 16px;
  padding: 1.25rem 1.5rem;
}
.faq-cta i:first-child {
  font-size: 1.6rem;
  color: var(--second-color);
  flex-shrink: 0;
}
.faq-cta__title {
  font-family: var(--primary-font);
  font-weight: 700;
  font-size: 16px;
  color: #fff;
}
.faq-cta__desc {
  font-family: var(--alt-font);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
}
.faq-cta__btn {
  margin-left: auto;
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--second-color);
  color: var(--base-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  text-decoration: none;
  transition: transform 0.3s ease;
}
.faq-cta__btn:hover {
  transform: scale(1.08);
}

/* Accordion FAQ */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  background: #fff;
  border: 1px solid rgba(var(--base-color-rgb), 0.08);
  border-radius: 14px;
  overflow: hidden;
}

.faq-item__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: none;
  border: none;
  text-align: left;
  padding: 0.8rem 1rem;
  font-family: var(--alt-font);
  font-weight: 600;
  font-size: 16px;
  color: var(--base-color);
  cursor: pointer;
}

.faq-item__icon {
  flex-shrink: 0;
  font-size: 1.2rem;
  color: var(--second-color);
  transition: transform 0.3s ease;
}
.faq-item__question:not(.collapsed) .faq-item__icon {
  transform: rotate(135deg);
}

.faq-item__answer {
  padding: 0 1.25rem 1.25rem;
  font-family: var(--alt-font);
  /* font-size: 0.87rem; */
  line-height: 1.7;
  color: #5b6472;
}

@media (max-width: 991px) {
  .faq-section__sticky {
    position: static;
  }
  .faq-section__dots {
    display: none;
  }
}
@media (max-width: 575px) {
  .faq-cta {
    flex-wrap: wrap;
  }
  .faq-cta__btn {
    margin-left: 0;
  }
}
.blog-section {
  position: relative;
  /* padding: 6rem 0; */
  background: #fff;
  overflow: hidden;
}

.blog-section__corner {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 0;
  pointer-events: none;
}

.blog-section .container {
  position: relative;
  z-index: 1;
}
.blog-section__title {
  font-family: var(--primary-font);
  font-weight: 700;
  font-size: clamp(1.5rem, 2.5vw, 1.875rem);
  line-height: 1.25;
  color: var(--base-color);
  margin: 0;
}
.blog-section__title-accent {
  color: var(--second-color);
}

.blog-section__desc {
  font-family: var(--alt-font);
  /* font-size: 0.92rem; */
  line-height: 1.7;
  color: #5b6472;
  margin-bottom: 1.1rem;
}

/* Card */
.blog-card {
  display: block;
  background: #fff;
  border: 1px solid rgba(var(--base-color-rgb), 0.08);
  border-radius: 18px;
  overflow: hidden;
  height: 100%;
  text-decoration: none;
  box-shadow: 0 10px 28px rgba(var(--base-color-rgb), 0.06);
  transition: all 0.35s ease;
}
.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(var(--base-color-rgb), 0.15);
  border-color: rgba(var(--second-color-rgb), 0.3);
}

.blog-card__media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.blog-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.blog-card:hover .blog-card__img {
  transform: scale(1.08);
}

.blog-card__date {
  position: absolute;
  bottom: 12px;
  left: 12px;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  background: rgba(255, 255, 255, 0.95);
  color: var(--base-color);
  font-family: var(--alt-font);
  font-weight: 600;
  font-size: 10px;
  padding: 0.35rem 0.7rem;
  border-radius: 50px;
}
.blog-card__date i {
  color: var(--second-color);
}

.blog-card__body {
  padding: 1rem;
}

.blog-card__views {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-family: var(--alt-font);
  /* font-size: 0.78rem; */
  font-weight: 600;
  color: var(--second-color);
  margin-bottom: 0.6rem;
}

.blog-card__title {
  font-family: var(--primary-font);
  font-weight: 700;
  font-size: 0.8rem;
  line-height: 1.4;
  color: var(--base-color);
  margin-bottom: 0.75rem !important;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2rem;
}

.blog-card__desc {
  font-family: var(--alt-font);
  /* font-size: 0.85rem; */
  line-height: 1.65;
  color: #5b6472;
  margin-bottom: 1.1rem;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card__more {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--alt-font);
  font-weight: 600;
  /* font-size: 0.85rem; */
  color: var(--base-color);
  transition:
    gap 0.3s ease,
    color 0.3s ease;
}
.blog-card:hover .blog-card__more {
  color: var(--second-color);
  gap: 0.65rem;
}

@media (max-width: 767px) {
  .blog-section__header {
    align-items: flex-start;
    flex-direction: column;
  }
  .blog-section__header-right {
    max-width: 100%;
  }
  .blog-section__corner {
    display: none;
  }
}

.site-footer {
  position: relative;
  background: var(--very-light-base-color);
  border-top: 1px solid rgba(var(--base-color-rgb), 0.08);
  padding: 3rem 0 0;
  overflow: hidden;
}

.site-footer__line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50px;
  z-index: 0;
  pointer-events: none;
}

.site-footer .container {
  position: relative;
  z-index: 1;
}

/* Logo */
.site-footer__logo {
  display: inline-block;
  margin-bottom: 1.25rem;
}
.site-footer__logo img {
  width: 50%;
}

.site-footer__desc {
  font-family: var(--alt-font);
  line-height: 1.75;
  color: #5b6472;
  margin-bottom: 1.5rem;
  max-width: 90%;
}

/* Sosial media */
.site-footer__social {
  display: flex;
  gap: 0.7rem;
}
.site-footer__social-item {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--base-color);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: all 0.3s ease;
}
.site-footer__social-item:hover {
  background: var(--second-color);
  color: var(--base-color);
  transform: translateY(-3px);
}

/* Heading kolom */
.site-footer__heading {
  font-family: var(--primary-font);
  font-weight: 700;
  font-size: 1rem;
  color: var(--base-color);
  margin-bottom: 1rem;
  position: relative;
  padding-bottom: 0.75rem;
}
.site-footer__heading::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 32px;
  height: 2px;
  background: var(--second-color);
}

/* Menu links */
.site-footer__links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.site-footer__links a {
  font-family: var(--alt-font);
  /* font-size: 0.87rem; */
  color: #5b6472;
  text-decoration: none;
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.site-footer__links a::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--second-color);
  opacity: 0;
  transition: opacity 0.25s ease;
}
.site-footer__links a:hover {
  color: var(--base-color);
  padding-left: 2px;
}
.site-footer__links a:hover::before {
  opacity: 1;
}

/* Kontak */
.site-footer__contact {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.site-footer__contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
}
.site-footer__contact-icon {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--base-color);
  color: var(--second-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}
.site-footer__contact-label {
  display: block;
  font-family: var(--alt-font);
  /* font-size: 0.72rem; */
  /* text-transform: uppercase; */
  letter-spacing: 0.04em;
  margin-bottom: 0.15rem;
}
.site-footer__contact-value {
  display: block;
  font-family: var(--alt-font);
  font-weight: 600;
  /* font-size: 0.88rem; */
  color: var(--base-color);
  text-decoration: none;
  line-height: 1.5;
}
a.site-footer__contact-value:hover {
  color: var(--second-color);
}

/* Bottom bar */
.site-footer__bottom {
  margin-top: 2rem;
  font-size: 11px;
  background: var(--base-color);
  padding: 0.5rem 0;
}
.site-footer__bottom-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.site-footer__copy {
  font-family: var(--alt-font);
  /* font-size: 0.8rem; */
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}
.site-footer__bottom-links {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

@media (max-width: 767px) {
  .site-footer {
    padding-top: 3.5rem;
  }
  .site-footer__bottom-inner {
    flex-direction: column;
    text-align: center;
  }
  .site-footer__desc {
    max-width: 100%;
  }
}
.site-footer__menu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 1.5rem;
}

.site-footer__links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.site-footer__links li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.site-footer__links li i {
  /* font-size: 0.8rem; */
  color: var(--second-color);
  flex-shrink: 0;
}
.site-footer__links a {
  font-family: var(--alt-font);
  /* font-size: 0.87rem; */
  color: #5b6472;
  text-decoration: none;
  transition: all 0.25s ease;
}
.site-footer__links a:hover {
  color: var(--base-color);
  padding-left: 2px;
}

@media (max-width: 575px) {
  .site-footer__menu-grid {
    grid-template-columns: 1fr;
    gap: 0.5rem 0;
  }
}
.package-section {
  position: relative;
  /* padding: 6rem 0; */
  background: #fff;
  overflow: hidden;
}
.package-section__road {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}
.package-section .container {
  position: relative;
  z-index: 1;
}

/* Card */
.package-card {
  background: #fff;
  border: 1px solid rgba(var(--base-color-rgb), 0.08);
  border-radius: 18px;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 12px 30px rgba(var(--base-color-rgb), 0.07);
  transition: all 0.35s ease;
}
.package-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 42px rgba(var(--base-color-rgb), 0.14);
  border-color: rgba(var(--second-color-rgb), 0.3);
}

.package-card__media {
  /* height: 160px; */
  overflow: hidden;
}
.package-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
/* .package-card:hover .package-card__img {
  transform: scale(1.08);
} */

.package-card__body {
  padding: 0.7rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.package-card__title {
  font-family: var(--primary-font);
  font-weight: 700;
  font-size: 16px;
  line-height: 1.4;
  color: var(--base-color);
  margin-bottom: 0.5rem;
}

.package-card__meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding-bottom: 0.5rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid rgba(var(--base-color-rgb), 0.08);
}
.package-card__meta i {
  color: var(--second-color);
  font-size: 14px;
  margin-top: 2px;
  flex-shrink: 0;
}
.package-card__meta span {
  font-family: var(--alt-font);
  font-size: 13px;
  color: #5b6472;
  line-height: 1.5;
}

.package-card__block {
  margin-bottom: 0.5rem;
  /* border-bottom: 1px solid rgba(var(--base-color-rgb), 0.08); */
}
.package-card__block-label {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-family: var(--alt-font);
  font-weight: 700;
  font-size: 14px;
  /* text-transform: uppercase; */
  letter-spacing: 0.04em;
  color: var(--base-color);
  margin-bottom: 0.55rem;
}
.package-card__block-label i {
  color: var(--second-color);
}

.package-card__dest-list {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.package-card__dest-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--alt-font);
  font-size: 13px;
  color: #4b5563;
}
.package-card__dest-item svg {
  flex-shrink: 0;
}
.package-card__dest-item span {
  line-height: 1.4;
}

.package-card__dest-list--scroll {
  max-height: 108px;
  overflow-y: auto;
  padding-right: 6px;
  /* padding-bottom: 1rem; */
  border-bottom: 1px solid rgba(var(--base-color-rgb), 0.08);
}
.package-card__dest-list--scroll::-webkit-scrollbar {
  width: 4px;
}
.package-card__dest-list--scroll::-webkit-scrollbar-thumb {
  background: var(--second-color);
  border-radius: 4px;
}
.package-card__dest-list--scroll::-webkit-scrollbar-track {
  background: var(--very-light-base-color);
}

.package-card__dest-text {
  font-family: var(--alt-font);
  font-size: 0.8rem;
  line-height: 1.65;
  color: #4b5563;
  margin: 0;
}

.package-card__inex {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(var(--base-color-rgb), 0.08);
}
.package-card__inex-label {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-family: var(--alt-font);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 0.5rem;
}
.package-card__inex-label--in {
  color: var(--second-color);
}
.package-card__inex-label--in i {
  color: var(--second-color);
}
.package-card__inex-label--ex {
  color: red;
}
.package-card__inex-label--ex i {
  color: red;
}

.package-card__inex-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.package-card__inex-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.3rem;
  font-family: var(--alt-font);
  font-size: 13px;
  color: var(--base-color);
  line-height: 1.35;
}
.package-card__inex-list li svg {
  flex-shrink: 0;
  margin-top: 2px;
}

/* Pilihan unit */
.package-card__unit {
  margin-bottom: 1.1rem;
}
.package-card__unit-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.package-card__unit-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--very-light-base-color);
  border: 1.5px solid transparent;
  border-radius: 10px;
  padding: 0.55rem 0.75rem;
  cursor: pointer;
  transition: all 0.25s ease;
}
.package-card__unit-item:hover {
  border-color: rgba(var(--base-color-rgb), 0.3);
}

.package-card__unit-check {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1.5px solid #c8c8c8;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.2s ease;
}
.package-card__unit-check i {
  font-size: 0.65rem;
  color: #fff;
  opacity: 0;
  transition: opacity 0.2s ease;
}

/* Bg putih + border base-color saat aktif */
.package-card__unit-item--active {
  background: #fff;
  border-color: var(--base-color);
  box-shadow: 0 3px 10px rgba(var(--base-color-rgb), 0.12);
}
.package-card__unit-item--active .package-card__unit-check {
  background: var(--base-color);
  border-color: var(--base-color);
}
.package-card__unit-item--active .package-card__unit-check i {
  opacity: 1;
}
.package-card__unit-item--active .package-card__unit-name {
  color: var(--base-color);
  font-weight: 700;
}

.package-card__unit-name {
  flex: 1;
  font-family: var(--alt-font);
  font-size: 13px;
  color: #4b5563;
}
.package-card__unit-radio:checked ~ .package-card__unit-name {
  color: var(--base-color);
  font-weight: 700;
}
.package-card__unit-price {
  font-family: var(--alt-font);
  font-weight: 700;
  font-size: 13px;
  color: var(--second-color);
  flex-shrink: 0;
}

/* Footer harga + tombol */
.package-card__footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding-top: 0.5rem;
  border-top: 1px solid rgba(var(--base-color-rgb), 0.08);
}
.package-card__price {
  line-height: 1.15;
}
.package-card__price-amount {
  /* display: block; */
  font-family: var(--primary-font);
  font-weight: 800;
  font-size: 18px;
  color: var(--second-color);
}
.package-card__price-unit {
  /* display: block; */
  font-family: var(--alt-font);
  font-size: 12px;
  color: #9aa0a8;
}

.package-card__btn {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--base-color);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  text-decoration: none;
  transition: all 0.3s ease;
}
.package-card__btn:hover {
  background: var(--second-color);
  color: var(--base-color);
  transform: scale(1.08);
}

@media (max-width: 991px) {
  .package-card__inex {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .package-card__dest-list--scroll {
      max-height: none;
      overflow-y:none;
      padding-bottom:10px;
    }
}
.article-detail {
  padding: 3rem 0;
  background: #fff;
}

/* Meta atas */
.article-content__meta-top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1.25rem;
}
.article-content__author {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.article-content__author-name {
  display: block;
  font-family: var(--primary-font);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--base-color);
}
.article-content__author-role {
  display: block;
  font-family: var(--alt-font);
  font-size: 14px;
  color: #9aa0a8;
}

.article-content__date,
.article-content__views {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--alt-font);
  font-size: 14px;
  color: #5b6472;
}
.article-content__date i,
.article-content__views i {
  color: var(--second-color);
}

/* Judul */
.article-content__title {
  font-family: var(--primary-font);
  font-weight: 700;
  font-size: clamp(1rem, 2vw, 1.875rem);
  /* line-height: normal; */
  color: var(--base-color);
  margin-bottom: 1.75rem;
}

/* Gambar utama */
.article-content__media {
  margin-bottom: 2rem;
}
.article-content__img {
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
  /* max-height: 420px; */
}
.article-content__caption {
  display: block;
  font-family: var(--alt-font);
  font-size: 0.78rem;
  font-style: italic;
  color: #9aa0a8;
  text-align: center;
  margin-top: 0.6rem;
}

/* Isi artikel */
.article-content__body {
  font-family: var(--alt-font);
  font-size: 14px;
  line-height: 1.85;
  color: #374151;
  margin-bottom: 0.5rem;
}
.article-content__body p {
  margin-bottom: 1rem;
}
.article-content__body h2,
.article-content__body h3 {
  font-family: var(--primary-font);
  font-weight: 700;
  color: var(--base-color);
  margin: 1.75rem 0 1rem;
}
.article-content__body img {
  width: 100%;
  border-radius: 12px;
  margin: 1rem 0;
}
.article-content__body blockquote {
  border-left: 3px solid var(--second-color);
  padding-left: 1.1rem;
  font-style: italic;
  color: #5b6472;
  margin: 1.5rem 0;
}

/* Share */
.article-content__share {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(var(--base-color-rgb), 0.08);
}
.article-content__share-label {
  font-family: var(--alt-font);
  font-weight: 700;
  font-size: 16px;
  color: var(--base-color);
}
.article-content__share .nav.social {
  display: flex;
  gap: 0.3rem;
}
.article-content__share .nav.social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--very-light-base-color);
  color: var(--base-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
}
.article-content__share .nav.social a:hover {
  background: var(--second-color);
  color: var(--base-color);
  transform: translateY(-3px);
}

/* Sidebar */
.article-sidebar {
  position: sticky;
  top: 100px;
  background: var(--very-light-base-color);
  border-radius: 18px;
  padding: 1rem;
}

.article-sidebar__heading {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--primary-font);
  font-weight: 700;
  font-size: 1rem;
  color: var(--base-color);
  margin-bottom: 1.5rem;
}
.article-sidebar__heading i {
  color: var(--second-color);
}

.article-sidebar__list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.75rem;
}

.article-sidebar__item {
  display: flex;
  gap: 0.85rem;
  text-decoration: none;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(var(--base-color-rgb), 0.1);
}
.article-sidebar__item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.article-sidebar__item-media {
  width: 74px;
  height: 74px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
}
.article-sidebar__item-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.article-sidebar__item:hover .article-sidebar__item-media img {
  transform: scale(1.1);
}

.article-sidebar__item-title {
  font-family: var(--primary-font);
  font-weight: 600;
  font-size: 16px;
  line-height: 1.4;
  color: var(--base-color);
  margin-bottom: 0.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.article-sidebar__item-meta {
  display: flex;
  gap: 0.9rem;
}
.article-sidebar__item-meta span {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-family: var(--alt-font);
  font-size: 0.7rem;
  color: #9aa0a8;
}
.article-sidebar__item-meta i {
  color: var(--second-color);
  font-size: 0.75rem;
}

/* CTA sidebar */
.article-sidebar__cta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--base-color);
  border-radius: 14px;
  padding: 1.1rem 1.25rem;
}
.article-sidebar__cta i:first-child {
  font-size: 1.4rem;
  color: var(--second-color);
  flex-shrink: 0;
}
.article-sidebar__cta-title {
  display: block;
  font-family: var(--primary-font);
  font-weight: 700;
  font-size: 16px;
  color: #fff;
}
.article-sidebar__cta-desc {
  display: block;
  font-family: var(--alt-font);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
}
.article-sidebar__cta-btn {
  margin-left: auto;
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--second-color);
  color: var(--base-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  text-decoration: none;
  transition: transform 0.3s ease;
}
.article-sidebar__cta-btn:hover {
  transform: scale(1.08);
}

@media (max-width: 991px) {
  .article-sidebar {
    position: static;
  }
}
.contact-section {
  position: relative;
  padding: 3rem 0;
  background: #fff;
  /* overflow: hidden; */
}

.contact-wrapper {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(var(--base-color-rgb), 0.15);
}

/* Panel kiri gelap */
.contact-panel {
  position: relative;
  background: var(--base-color);
  height: 100%;
  min-height: 480px;
  overflow: hidden;
}
.contact-panel__pattern {
  position: absolute;
  top: -1rem;
  right: -1rem;
  z-index: 0;
  pointer-events: none;
}

.contact-panel__content {
  position: relative;
  z-index: 1;
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.contact-panel__title {
  font-family: var(--primary-font);
  font-weight: 700;
  font-size: 1rem;
  color: var(--second-color);
  margin-bottom: 0.75rem;
}
.contact-panel__subtitle {
  font-family: var(--alt-font);
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 1);
  margin-bottom: 1.25rem;
}

.contact-panel__list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 1.25rem;
}

.contact-panel__item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.contact-panel__item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.contact-panel__icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.contact-panel__body {
  flex: 1;
}
.contact-panel__label {
  display: block;
  font-family: var(--alt-font);
  font-size: 16px;
  color: var(--second-color);
  /* text-transform: uppercase; */
  letter-spacing: 0.06em;
  margin-bottom: 0.3rem;
}
.contact-panel__value {
  display: block;
  font-family: var(--alt-font);
  font-weight: 600;
  font-size: 14px;
  color: #fff;
  text-decoration: none;
  line-height: 1.5;
  transition: color 0.25s ease;
}
a.contact-panel__value:hover {
  color: rgba(255, 255, 255, 0.75);
}
.contact-panel__value--text {
  font-weight: 400;
  color: rgba(255, 255, 255, 1);
}

.contact-panel__btn {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: var(--base-color);
  font-family: var(--alt-font);
  font-weight: 700;
  font-size: 0.92rem;
  padding: 0.6rem 1.2rem;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.contact-panel__btn:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-2px);
}

/* Peta kanan */
.contact-map {
  position: relative;
  height: 100%;
  min-height: 480px;
  background: var(--very-light-base-color);
}
.contact-map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  filter: grayscale(20%) contrast(1.02);
}

.contact-map__link {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #fff;
  color: var(--base-color);
  font-family: var(--alt-font);
  font-weight: 600;
  font-size: 16px;
  padding: 0.6rem 1.2rem;
  border-radius: 12px;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  z-index: 1;
  border: 1px solid rgba(var(--base-color-rgb), 0.08);
}
.contact-map__link i {
  color: var(--base-color);
}
.contact-map__link:hover {
  background: var(--base-color);
  color: #fff;
}
.contact-map__link:hover i {
  color: #fff;
}

@media (max-width: 991px) {
  .contact-panel,
  .contact-map {
    min-height: 380px;
  }
  .contact-panel__content {
    padding: 2.5rem 1.75rem;
  }
}
.package-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--very-light-base-color);
  border-radius: 20px;
}

.package-empty__icon {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  box-shadow: 0 8px 20px rgba(var(--base-color-rgb), 0.08);
}
.package-empty__icon i {
  font-size: 2.2rem;
  color: var(--second-color);
}

.package-empty__title {
  font-family: var(--primary-font);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--base-color);
  margin-bottom: 0.6rem;
}

.package-empty__desc {
  font-family: var(--alt-font);
  font-size: 0.88rem;
  color: #5b6472;
  max-width: 360px;
  margin: 0;
}
.floating-wa {
    position: fixed;
    left: 1.5rem;
    bottom: 2.5rem;
    z-index: 999;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(var(--base-color-rgb), .35);
    transition: transform .3s ease, box-shadow .3s ease;
    animation: floatingWaBounce 2.5s ease-in-out infinite;
}
.floating-wa:hover {
    transform: scale(1.08);
    box-shadow: 0 14px 36px rgba(var(--base-color-rgb), .45);
}

.floating-wa__icon {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.6rem;
}

/* Pulse ring */
.floating-wa__pulse {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: #25D366;
    opacity: .5;
    animation: floatingWaPulse 2.2s ease-out infinite;
    z-index: 1;
}
.floating-wa__pulse--delay {
    animation-delay: 1.1s;
}

/* Tooltip */
.floating-wa__tooltip {
    position: absolute;
    left: calc(100% + 12px);
    top: 50%;
    transform: translateY(-50%) translateX(-8px);
    background: #25D366;
    color: #fff;
    font-family: var(--alt-font);
    font-weight: 600;
    font-size: .82rem;
    padding: .5rem 1rem;
    border-radius: 50px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: all .3s ease;
    box-shadow: 0 8px 20px rgba(var(--base-color-rgb), .2);
}
.floating-wa__tooltip::before {
    content: "";
    position: absolute;
    left: -5px;
    top: 50%;
    transform: translateY(-50%);
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-right: 6px solid #25D366;
}
.floating-wa:hover .floating-wa__tooltip {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}

@keyframes floatingWaPulse {
    0% {
        transform: scale(1);
        opacity: .5;
    }
    100% {
        transform: scale(1.9);
        opacity: 0;
    }
}

@keyframes floatingWaBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

@media (max-width: 767px) {
    .floating-wa {
        left: 1rem;
        bottom: 1.25rem;
        width: 52px;
        height: 52px;
    }
    .floating-wa__icon { font-size: 1.4rem; }
    .floating-wa__tooltip { display: none; }
}