:root {
  --bs-primary: #920c0a;
  --base-color: #920c0a;
  --base-color-rgb: 173, 4, 2;
  --second-color: #000000;
  --second-color-rgb: 0, 0, 0;
  --base-color-dark: #510100;
  --base-color-dark-rgb: 81, 1, 0;
  --third-color: #ffffff;
  --third-color-rgb: 255, 255, 255;
  --very-light-base-color: #f5fff9;
  --primary-font: "Poppins", sans-serif;
  --alt-font: "Poppins", sans-serif;
}
.bg-gradient-gold {
  background: linear-gradient(
    135deg,
    #920c0a 0%,
    #920c0a 18%,
    #000000 42%,
    #920c0a 68%,
    #510100 85%,
    #920c0a 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(--base-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(--base-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-section {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.hero-section__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-section__overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(
    135deg,
    rgba(var(--third-color-rgb), 0.94) 0%,
    rgba(var(--third-color-rgb), 0.85) 45%,
    rgba(var(--base-color-rgb), 0.15) 100%
  );
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(var(--base-color-rgb), 0.08);
  color: var(--base-color);
  font-family: var(--primary-font);
  font-weight: 600;
}

.hero-badge__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--base-color);
}

.hero-section__title {
  font-family: var(--alt-font);
  font-weight: 600;
  color: var(--second-color);
  margin-top: 16px;
}

.title-highlight__accent {
  color: var(--base-color);
}

.hero-section__desc {
  font-family: var(--primary-font);
  color: rgba(var(--second-color-rgb), 0.75);
  margin: 20px 0 28px;
}

.hero-section__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-section__media {
  position: relative;
  z-index: 1;
}
/* ===== Section wrapper + bg gambar ===== */
.fleet-section {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding-top: 80px;
}

.fleet-section__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.fleet-section__overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(rgba(255, 255, 255, 0.4));
}

/* ===== Header simple ===== */
.fleet-section__head {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 40px;
}

.fleet-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(var(--base-color-rgb), 0.08);
  color: var(--base-color);
  font-family: var(--primary-font);
  font-weight: 600;
  /* font-size: 0.85rem; */
  margin-bottom: 12px;
}

.fleet-badge__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--base-color);
}

.fleet-section__title {
  font-family: var(--alt-font);
  font-weight: 600;
  color: var(--second-color);
  /* margin: 0; */
}

.fleet-section__title-accent {
  color: var(--base-color);
}

.fleet-section__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--primary-font);
  font-weight: 600;
  color: var(--base-color);
  text-decoration: none;
  white-space: nowrap;
  transition: gap 0.2s ease;
}

.fleet-section__link:hover {
  gap: 12px;
  color: var(--base-color);
}

/* ===== Card ===== */
.fleet-card {
  position: relative;
  z-index: 1;
  background: var(--third-color);
  border-radius: 24px;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 30px rgba(var(--second-color-rgb), 0.07);
  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;
}

.fleet-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(var(--base-color-rgb), 0.2);
  border-color: rgba(var(--base-color-rgb), 0.25);
}

/* ===== Media (gambar) ===== */
.fleet-card__media {
  position: relative;
  background: linear-gradient(
    160deg,
    rgba(var(--base-color-rgb), 0.1) 0%,
    rgba(var(--base-color-rgb), 0.02) 100%
  );
  /* padding: 28px 20px 12px; */
  overflow: hidden;
}

.fleet-card__media::after {
  content: "";
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 24px;
  background: rgba(var(--second-color-rgb), 0.12);
  border-radius: 50%;
  filter: blur(10px);
}
/* 
.fleet-card__badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--base-color);
  color: var(--third-color);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 999px;
  box-shadow: 0 4px 10px rgba(var(--base-color-rgb), 0.35);
} */

.fleet-card__img {
  position: relative;
  z-index: 1;
  width: 100%;
  /* height: 140px;
  object-fit: contain; */
  display: block;
  margin: 0 auto;
  transition: transform 0.35s ease;
}

.fleet-card:hover .fleet-card__img {
  /* transform: scale(1.06) translateY(-4px); */
}

/* ===== Body ===== */
.fleet-card__body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  text-align: center;
  justify-content: center;
}

.fleet-card__title {
  font-family: var(--primary-font);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--second-color);
  margin: 0 0 8px;
  line-height: 1.3;
}

.fleet-card__transmisi {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  width: fit-content;
  /* font-size: 0.78rem; */
  font-weight: 600;
  color: var(--base-color);
  /* background: rgba(var(--base-color-rgb), 0.08); */
  /* padding: 4px 10px; */
  border-radius: 999px;
  /* margin-bottom: 16px; */
}

.fleet-price {
  /* display: flex; */
  align-items: baseline;
  gap: 6px;
  padding-top: 14px;
  border-top: 1px dashed rgba(var(--second-color-rgb), 0.15);
  margin-bottom: 16px;
}

.fleet-price__amount {
  font-family: var(--primary-font);
  font-weight: 700;
  color: var(--base-color);
  font-size: 1rem;
  line-height: 1;
}

.fleet-price__unit {
  font-size: 0.7rem;
  font-weight: 500;
  color: rgba(var(--second-color-rgb), 0.55);
}

.fleet-include {
  /* display: flex; */
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 18px;
}

.fleet-include:empty {
  margin-bottom: 0;
}

.fleet-include__badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(var(--base-color-rgb), 0.07);
  border: 1px solid rgba(var(--base-color-rgb), 0.15);
  color: var(--base-color);
  transition:
    background 0.2s ease,
    border-color 0.2s ease;
}

.fleet-include__badge:hover {
  background: rgba(var(--base-color-rgb), 0.12);
  border-color: rgba(var(--base-color-rgb), 0.3);
}

.fleet-include__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.fleet-include__icon svg {
  width: 100%;
  height: 100%;
}

.fleet-include__label {
  font-family: var(--primary-font);
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
}

/* ===== CTA ===== */
.fleet-card__cta {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--base-color);
  color: var(--third-color);
  font-family: var(--primary-font);
  font-weight: 600;
  font-size: 0.8rem;
  padding: 8px 12px;
  border-radius: 999px;
  text-decoration: none;
  transition:
    gap 0.2s ease,
    background 0.25s ease,
    box-shadow 0.25s ease;
  box-shadow: 0 6px 16px rgba(var(--base-color-rgb), 0.3);
}

.fleet-card__cta:hover {
  gap: 12px;
  background: var(--second-color);
  color: var(--third-color);
  box-shadow: 0 8px 22px rgba(var(--second-color-rgb), 0.35);
}

.fleet-card__cta svg {
  flex-shrink: 0;
}
/* ===== Section wrapper + bg ===== */
.tour-section {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.tour-section__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.tour-section__overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(
    180deg,
    rgba(var(--third-color-rgb), 0.97) 0%,
    rgba(var(--third-color-rgb), 0.93) 40%,
    rgba(var(--second-color-rgb), 0.92) 100%
  );
}

/* ===== Header ===== */
.tour-section__head {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 40px;
}

.tour-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(var(--base-color-rgb), 0.08);
  color: var(--base-color);
  font-family: var(--primary-font);
  font-weight: 600;
  /* font-size: 0.85rem; */
  margin-bottom: 12px;
}

.tour-badge__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--base-color);
}

.tour-section__title {
  font-family: var(--alt-font);
  font-weight: 600;
  color: var(--second-color);
  /* margin: 0; */
}

.tour-section__title-accent {
  color: var(--base-color);
}

.tour-section__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--primary-font);
  font-weight: 600;
  color: var(--base-color);
  text-decoration: none;
  white-space: nowrap;
  transition: gap 0.2s ease;
}

.tour-section__link:hover {
  gap: 12px;
  color: var(--base-color);
}

/* ===== Card wrapper ===== */
.tour-card {
    display: flex;
    flex-direction: column;
    background: var(--third-color);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 28px rgba(var(--second-color-rgb), 0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tour-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(var(--base-color-rgb), 0.28);
}

/* ===== Link gambar (potrait) ===== */
.tour-card__link {
    position: relative;
    display: block;
    width: 100%;
    /*aspect-ratio: 3 / 4;*/
    overflow: hidden;
    text-decoration: none;
}

.tour-card__img {
    /*position: absolute;*/
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.tour-card:hover .tour-card__img {
    /*transform: scale(1.08);*/
}

.tour-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(var(--second-color-rgb), 0) 45%,
        rgba(var(--second-color-rgb), 0.8) 100%
    );
    z-index: 1;
}

.tour-card__caption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    padding: 16px;
}

.tour-card__title {
    font-family: var(--primary-font);
    font-size: 1rem;
    font-weight: 700;
    color: var(--third-color);
    margin: 0;
    line-height: 1.3;
}

.tour-card__detail {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 2;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--base-color);
    color: var(--third-color);
    box-shadow: 0 6px 16px rgba(var(--base-color-rgb), 0.4);
    transform: translateX(6px) rotate(-45deg);
    opacity: 0.9;
    transition: transform 0.3s ease, opacity 0.3s ease, background 0.3s ease;
}

.tour-card:hover .tour-card__detail {
    transform: translateX(0) rotate(0deg);
    opacity: 1;
    background: var(--second-color);
}

/* ===== Footer: harga + booking ===== */
.tour-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 12px 14px;
    border-top: 1px solid rgba(var(--second-color-rgb), 0.08);
}

.tour-card__price {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.tour-card__price-label {
    font-family: var(--primary-font);
    font-size: 0.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    color: rgba(var(--second-color-rgb), 0.5);
    margin-bottom: 5px;
}

.tour-card__price-amount {
    font-family: var(--primary-font);
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--base-color);
}

.tour-card__cta {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    flex-shrink: 0;
    background: var(--base-color);
    color: var(--third-color);
    font-family: var(--primary-font);
    font-weight: 600;
    font-size: 0.78rem;
    padding: 8px 14px;
    border-radius: 999px;
    text-decoration: none;
    box-shadow: 0 6px 14px rgba(var(--base-color-rgb), 0.3);
    transition: background 0.25s ease, box-shadow 0.25s ease, transform 0.2s ease;
}

.tour-card__cta i {
    font-size: 0.85rem;
}

.tour-card__cta:hover {
    background: var(--second-color);
    color: var(--third-color);
    box-shadow: 0 8px 18px rgba(var(--second-color-rgb), 0.35);
    transform: translateY(-2px);
}

/* ===== Header ===== */
.advantage-section__head {
  margin-bottom: 48px;
}

.advantage-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(var(--third-color-rgb), 0.08);
  color: var(--third-color);
  font-family: var(--primary-font);
  font-weight: 600;
  /* font-size: 0.85rem; */
  margin-bottom: 12px;
}

.advantage-badge__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--base-color);
}

.advantage-section__title {
  font-family: var(--alt-font);
  font-weight: 600;
  color: var(--third-color);
  margin: 0 0 16px;
}

.advantage-section__title-accent {
  color: var(--third-color);
}

.advantage-section__lead {
  font-family: var(--primary-font);
  color: rgba(var(--third-color-rgb), 0.8);
  margin: 0;
}

/* ===== Card ===== */
.advantage-card {
  position: relative;
  height: 100%;
  background: var(--third-color);
  border: 1px solid rgba(var(--second-color-rgb), 0.08);
  border-radius: 20px;
  padding: 32px 24px;
  overflow: hidden;
  text-align: left;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.advantage-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(var(--base-color-rgb), 0.18);
  border-color: rgba(var(--base-color-rgb), 0.3);
}

/* Nomor urut jadi watermark besar */
.advantage-card__num {
  position: absolute;
  top: -6px;
  right: 12px;
  font-family: var(--alt-font);
  font-weight: 700;
  font-size: 4rem;
  line-height: 1;
  color: rgba(var(--base-color-rgb), 0.07);
  z-index: 0;
  transition: color 0.3s ease;
  user-select: none;
}

.advantage-card:hover .advantage-card__num {
  color: rgba(var(--base-color-rgb), 0.14);
}

/* Icon lingkaran gradient */
.advantage-card__icon {
  position: relative;
  z-index: 1;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    var(--base-color) 0%,
    var(--base-color-dark) 100%
  );
  box-shadow: 0 8px 20px rgba(var(--base-color-rgb), 0.35);
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}

.advantage-card:hover .advantage-card__icon {
  transform: scale(1.08) rotate(-6deg);
}

.advantage-card__icon img {
  filter: brightness(0) invert(1);
}

.advantage-card__title {
  position: relative;
  z-index: 1;
  font-family: var(--primary-font);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--second-color);
  margin: 0 0 10px;
}

.advantage-card__desc {
  position: relative;
  z-index: 1;
  font-family: var(--primary-font);
  /* font-size: 0.88rem; */
  color: rgba(var(--second-color-rgb), 0.65);
  line-height: 1.6;
  margin: 0;
}

/* Garis aksen bawah saat hover */
.advantage-card::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3px;
  background: var(--base-color);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.advantage-card:hover::after {
  transform: scaleX(1);
}
/* ===== Section wrapper + bg gambar ===== */
.advantage-section {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.advantage-section__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.advantage-section__overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(
    180deg,
    rgba(var(--third-color-rgb), 0.96) 0%,
    rgba(var(--third-color-rgb), 0.9) 50%,
    rgba(var(--second-color-rgb), 0.88) 100%
  );
}
/* ===== Ornamen dekoratif ===== */
/* ===== Section wrapper + bg gambar ===== */
.destination-section {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.destination-section__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.destination-section__overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(
    180deg,
    rgba(var(--third-color-rgb), 0.96) 0%,
    rgba(var(--third-color-rgb), 0.9) 45%,
    rgba(var(--third-color-rgb), 1) 100%
  );
}

.destination-section__ornament {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  color: rgba(var(--base-color-rgb), 0.25);
}

.destination-ornament__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.18;
}

.destination-ornament__blob--one {
  width: 320px;
  height: 320px;
  top: -80px;
  left: -60px;
  background: var(--base-color);
}

.destination-ornament__blob--two {
  width: 260px;
  height: 260px;
  bottom: -100px;
  right: -60px;
  background: var(--second-color);
}

.destination-ornament__dots {
  position: absolute;
  top: 24px;
  right: 8%;
  width: 90px;
  height: 90px;
  background-image: radial-gradient(
    rgba(var(--base-color-rgb), 0.35) 2px,
    transparent 2px
  );
  background-size: 14px 14px;
  opacity: 0.6;
}

.destination-ornament__ring {
  position: absolute;
  bottom: 6%;
  left: 4%;
  opacity: 0.5;
}

/* ===== Header ===== */
.destination-section__head {
  margin-bottom: 40px;
  position: relative;
  z-index: 2;
}

.destination-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(var(--base-color-rgb), 0.08);
  color: var(--base-color);
  font-family: var(--primary-font);
  font-weight: 600;
  /* font-size: 0.85rem; */
  margin-bottom: 12px;
}

.destination-badge__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--base-color);
}

.destination-section__title {
  font-family: var(--alt-font);
  font-weight: 600;
  color: var(--second-color);
  margin: 0 0 14px;
}

.destination-section__title-accent {
  color: var(--base-color);
}

.destination-section__lead {
  font-family: var(--primary-font);
  color: rgba(var(--second-color-rgb), 0.65);
  margin: 0;
}

/* ===== Marquee wrapper (full-bleed) ===== */
.destination-marquee {
  position: relative;
  z-index: 2;
  width: 100%;
  overflow: hidden;
  padding: 6px 0 10px;
}

.destination-swiper {
  width: 100%;
}

/* Autoplay linear tanpa "loncat" tiap ganti slide */
.destination-swiper .swiper-wrapper {
  transition-timing-function: linear !important;
}

/* ===== Fade gradasi kiri-kanan ===== */
.destination-marquee__fade {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 90px;
  max-width: 12%;
  z-index: 2;
  pointer-events: none;
}

.destination-marquee__fade--left {
  left: 0;
  background: linear-gradient(
    90deg,
    var(--third-color) 0%,
    rgba(var(--third-color-rgb), 0.85) 40%,
    rgba(var(--third-color-rgb), 0) 100%
  );
}

.destination-marquee__fade--right {
  right: 0;
  background: linear-gradient(
    270deg,
    var(--third-color) 0%,
    rgba(var(--third-color-rgb), 0.85) 40%,
    rgba(var(--third-color-rgb), 0) 100%
  );
}

/* ===== Card (gambar + judul + area) ===== */
.destination-card {
  background: var(--third-color);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(var(--second-color-rgb), 0.1);
  border: 1px solid rgba(var(--second-color-rgb), 0.06);
  padding: 12px;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.destination-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 38px rgba(var(--base-color-rgb), 0.22);
}

.destination-card__img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  border-radius: 16px;
  transition: transform 0.4s ease;
}

.destination-card:hover .destination-card__img {
  /* transform: scale(1.06); */
}

.destination-card__body {
  padding: 14px 6px 4px;
}

.destination-card__title {
  font-family: var(--primary-font);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--second-color);
  margin: 0 0 6px;
  line-height: 1.3;
  margin-bottom: 10px !important;
}

.destination-card__area {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: var(--primary-font);
  font-size: 0.6rem;
  font-weight: 500;
  color: var(--base-color);
}
.destination-marquee + .destination-marquee {
  position: relative;
}
.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(81, 1, 0, 0.85) 55%,
      rgba(81, 1, 0, 0.75) 80%,
      rgba(173, 4, 2, 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(173, 4, 2, 0.95) 0%,
    rgba(173, 4, 2, 0.75) 28%,
    rgba(173, 4, 2, 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-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-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(--third-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-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-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-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-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-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-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-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-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 {
  position: relative;
}

.contact-info-card {
  height: 100%;
  background: var(--third-color);
  border: 1px solid rgba(var(--second-color-rgb), 0.08);
  border-radius: 20px;
  padding: 32px 28px;
  text-align: center;
  box-shadow: 0 10px 28px rgba(var(--second-color-rgb), 0.08);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.contact-info-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(var(--base-color-rgb), 0.2);
  border-color: rgba(var(--base-color-rgb), 0.25);
}

.contact-info-card__icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    var(--base-color) 0%,
    var(--base-color-dark) 100%
  );
  color: var(--third-color);
  font-size: 1.6rem;
  box-shadow: 0 8px 20px rgba(var(--base-color-rgb), 0.35);
}

.contact-info-card__title {
  font-family: var(--primary-font);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--second-color);
  margin: 0 0 16px;
}

.contact-info-card__link {
  display: inline-block;
  font-family: var(--primary-font);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--base-color);
  text-decoration: none;
  padding: 8px 18px;
  border-radius: 999px;
  background: rgba(var(--base-color-rgb), 0.07);
  transition:
    background 0.25s ease,
    color 0.25s ease;
}

.contact-info-card__link:hover {
  background: var(--base-color);
  color: var(--third-color);
}

.contact-info-card__text {
  font-family: var(--primary-font);
  /* font-size: 0.92rem; */
  color: rgba(var(--second-color-rgb), 0.7);
  line-height: 1.7;
  margin: 0;
}
/* ===== Wrapper 2 floating WA ===== */
.floating-wa-group {
  position: fixed;
  left: 24px;
  bottom: 24px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;
}

/* ===== Button floating WA ===== */
.floating-wa {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
  text-decoration: none;
  cursor: pointer;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.floating-wa:hover {
  transform: scale(1.08);
  box-shadow: 0 10px 26px rgba(37, 211, 102, 0.55);
}

/* Icon di dalam button */
.floating-wa__icon {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--third-color);
  font-size: 1.6rem;
  line-height: 1;
}

/* Efek pulse (denyut) */
.floating-wa__pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25d366;
  opacity: 0.6;
  z-index: 1;
  animation: floating-wa-pulse 2.2s ease-out infinite;
}

.floating-wa__pulse--delay {
  animation-delay: 1.1s;
}

@keyframes floating-wa-pulse {
  0% {
    transform: scale(1);
    opacity: 0.55;
  }
  100% {
    transform: scale(1.9);
    opacity: 0;
  }
}

/* Tooltip label saat hover */
.floating-wa__tooltip {
  position: absolute;
  left: calc(100% + 14px);
  top: 50%;
  transform: translateY(-50%) translateX(6px);
  background: var(--second-color);
  color: var(--third-color);
  font-family: var(--primary-font);
  font-weight: 600;
  font-size: 0.5rem;
  white-space: nowrap;
  padding: 7px 14px;
  border-radius: 8px;
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
  z-index: 3;
}

.floating-wa__tooltip::after {
  content: "";
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: var(--second-color);
}

.floating-wa:hover .floating-wa__tooltip {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

/* ===== Responsif mobile ===== */
@media (max-width: 576px) {
  .floating-wa-group {
    left: 16px;
    bottom: 16px;
    gap: 10px;
  }

  .floating-wa {
    width: 50px;
    height: 50px;
  }

  .floating-wa__icon {
    font-size: 1.4rem;
  }

  .floating-wa__tooltip {
    display: none;
  }
}
/* ===== Detail: media ===== */
.tour-detail__media {
  position: relative;
  width: 100%;
  /* aspect-ratio: 3 / 4; */
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(var(--second-color-rgb), 0.15);
}

.tour-detail__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ===== Detail: content ===== */
.tour-detail__content {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.tour-detail__title {
  font-family: var(--alt-font);
  font-weight: 600;
  font-size: 2rem;
  color: var(--second-color);
  margin: 0 0 16px;
  line-height: 1.25;
}

.tour-detail__price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 20px;
}

.tour-detail__price-amount {
  font-family: var(--primary-font);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--base-color);
  line-height: 1;
}

.tour-detail__price-unit {
  font-family: var(--primary-font);
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(var(--second-color-rgb), 0.55);
}

.tour-detail__divider {
  height: 1px;
  background: rgba(var(--second-color-rgb), 0.1);
  margin-bottom: 24px;
}

.tour-detail__desc {
  font-family: var(--primary-font);
  /* font-size: 0.98rem; */
  color: rgba(var(--second-color-rgb), 0.72);
  line-height: 1.85;
  /* margin-bottom: 32px; */
}

.tour-detail__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: fit-content;
  background: var(--base-color);
  color: var(--third-color);
  font-family: var(--primary-font);
  font-weight: 600;
  /* font-size: 0.95rem; */
  padding: 14px 26px;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(var(--base-color-rgb), 0.35);
  transition:
    gap 0.2s ease,
    background 0.25s ease,
    box-shadow 0.25s ease;
  margin-bottom: 32px;
}

.tour-detail__cta:hover {
  gap: 12px;
  background: var(--second-color);
  color: var(--third-color);
  box-shadow: 0 10px 24px rgba(var(--second-color-rgb), 0.35);
}

/* ===== Share ===== */
.tour-detail__share {
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px dashed rgba(var(--second-color-rgb), 0.15);
}

.tour-detail__share-label {
  display: block;
  font-family: var(--primary-font);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--second-color);
  margin-bottom: 12px;
}

.tour-detail__share .social {
  display: flex;
  justify-content: flex-start;
  gap: 7px;
  padding: 0;
  margin: 0;
}

.tour-detail__share .social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(var(--base-color-rgb), 0.08);
  color: var(--base-color);
  font-size: 1rem;
  cursor: pointer;
  transition:
    background 0.25s ease,
    color 0.25s ease,
    transform 0.25s ease;
}

.tour-detail__share .social a:hover {
  background: var(--base-color);
  color: var(--third-color);
  transform: translateY(-3px);
}

.tour-breadcrumb {
  background: rgba(var(--base-color-rgb), 0.03);
  border-bottom: 1px solid rgba(var(--second-color-rgb), 0.06);
}

.tour-breadcrumb__list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.tour-breadcrumb__item {
  display: flex;
  align-items: center;
  font-family: var(--primary-font);
  /* font-size: 0.85rem; */
  color: rgba(var(--second-color-rgb), 0.55);
}

.tour-breadcrumb__item:not(:last-child)::after {
  content: "";
  width: 5px;
  height: 5px;
  border-top: 2px solid rgba(var(--second-color-rgb), 0.35);
  border-right: 2px solid rgba(var(--second-color-rgb), 0.35);
  transform: rotate(45deg);
  margin: 0 12px;
}

.tour-breadcrumb__item a {
  color: rgba(var(--second-color-rgb), 0.55);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.tour-breadcrumb__item a:hover {
  color: var(--base-color);
}

.tour-breadcrumb__item--active {
  color: var(--base-color);
  font-weight: 600;
  max-width: 260px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
