@import url("https://fonts.googleapis.com/css2?family=Gabriela&family=Hanuman:wght@100..900&family=IBM+Plex+Sans+Condensed:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&family=Kantumruy+Pro:ital,wght@0,100..700;1,100..700&family=SN+Pro:ital,wght@0,200..900;1,200..900&display=swap");

:root {
  --base-color: #24288b;
  --base-color-rgb: 36, 40, 139;
  --second-color: #d4011f;
  --second-color-rgb: 212, 1, 31;
  --third-color: #1e2d3c;
  --third-color-rgb: 30, 45, 60;
  --very-light-base-color: #ecf2ff;
  --primary-font: "Plus Jakarta Sans", "Inter", sans-serif;
  --alt-font: "Poppins", "Plus Jakarta Sans", sans-serif;
}

.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);
  /* background-color: #11aed6; */
}

.text-base-color {
  color: var(--base-color);
}

@media (min-width: 992px) {
  .nav-link.active {
    background-color: var(--second-color);
    color: var(--white) !important;
    border-radius: 50px;
    padding: 5px 10px !important;
    display: inline-block;
    font-size: 14px;
  }
}
/* ===== Base Section ===== */
.rc-hero-section {
  font-family: var(--primary-font);
  position: relative;
  overflow: hidden;
}

.rc-bg-white {
  background: #ffffff;
}

/* ===== Background Ornamen ===== */
.rc-bg-orb {
  position: absolute;
  opacity: 0.06;
  z-index: 0;
  pointer-events: none;
}

.rc-bg-orb--tr {
  top: -60px;
  right: -80px;
}

.rc-bg-orb--bl {
  bottom: -40px;
  left: -60px;
}

.rc-deco-road {
  position: absolute;
  bottom: 40px;
  left: 0;
  width: 100%;
  opacity: 0.08;
  z-index: 0;
}

/* ===== Gambar ===== */
.rc-img-wrapper {
  position: relative;
  z-index: 1;
}

.rc-img-target {
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 30px rgba(var(--third-color-rgb), 0.2));
  border-radius: 12px;
}

/* ===== Badge Pill ===== */
.rc-pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--primary-font);
  font-size: 13px;
  font-weight: 600;
  color: var(--base-color);
  background: rgba(var(--base-color-rgb), 0.08);
  border: 1px solid rgba(var(--base-color-rgb), 0.2);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
}

/* ===== Judul Dua Warna ===== */
.rc-title-container {
  margin-bottom: 8px;
}

.rc-main-title {
  font-family: var(--alt-font);
  font-weight: 700;
  line-height: 1.25;
  margin: 0;
}

.rc-main-title .rc-title-line1 {
  color: var(--base-color);
}

.rc-main-title .rc-title-line2 {
  color: var(--second-color);
}

.fs-25 {
  font-size: 2.5rem;
}
.tp-title-bar {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--base-color), var(--second-color));
  border-radius: 4px;
  margin: 16px 0 20px;
}

/* ===== Paragraf ===== */
.rc-paragraph {
  font-family: var(--primary-font);
  font-size: 14px;
  line-height: 1.75;
  color: rgba(var(--third-color-rgb), 0.85);
  margin-bottom: 28px;
}

/* ===== CTA Button ===== */
.rc-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.rc-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--primary-font);
  font-weight: 600;
  font-size: 15px;
  padding: 12px 26px;
  border-radius: 8px;
  border: 2px solid transparent;
  text-decoration: none;
  transition: all 0.25s ease;
}

.rc-btn-primary {
  background: var(--base-color);
  border-color: var(--base-color);
  color: #ffffff;
}

.rc-btn-primary:hover {
  background: var(--second-color);
  border-color: var(--second-color);
  color: #ffffff;
  transform: translateY(-2px);
}

.rc-btn-outline {
  background: transparent;
  border-color: var(--third-color);
  color: var(--third-color);
}

.rc-btn-outline:hover {
  background: var(--third-color);
  color: #ffffff;
  transform: translateY(-2px);
}

/* ===== Kartu Keunggulan ===== */
.ku-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: #ffffff;
  border: 1px solid rgba(var(--third-color-rgb), 0.08);
  border-radius: 14px;
  padding: 20px;
  height: 100%;
  transition: all 0.25s ease;
  box-shadow: 0 4px 14px rgba(var(--third-color-rgb), 0.05);
}

.ku-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(var(--base-color-rgb), 0.12);
  border-color: rgba(var(--base-color-rgb), 0.25);
}

.ku-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(var(--base-color-rgb), 0.08);
  border-radius: 12px;
}

.ku-icon img {
  width: 26px;
  height: 26px;
  object-fit: contain;
}

.ku-title {
  font-family: var(--alt-font);
  font-weight: 600;
  font-size: 16px;
  color: var(--base-color);
  margin-bottom: 4px;
  margin-top: 0px;
}

.ku-desc {
  font-family: var(--primary-font);
  font-size: 14px;
  line-height: 1.6;
  color: rgba(var(--third-color-rgb), 0.7);
  margin: 0;
}

/* ===== Animasi Sederhana ===== */
.rc-anim-fade-up {
  animation: fadeUp 0.7s ease both;
}

.rc-anim-fade-right {
  animation: fadeRight 0.7s ease both;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeRight {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ===== Responsive ===== */
@media (max-width: 991px) {
  .fs-25 {
    font-size: 1.9rem;
  }
  .rc-cta-group {
    justify-content: center;
  }
  .ps-lg-4 {
    text-align: center !important;
  }
}
/* ===================================================
   ARMADA SECTION — BG soft base-color
=================================================== */
.rc-armada-section {
  position: relative;
  overflow: hidden;
  font-family: var(--primary-font);
  background: linear-gradient(
    180deg,
    rgba(var(--base-color-rgb), 0.07) 0%,
    rgba(var(--base-color-rgb), 0.04) 100%
  );
}

.rc-armada-orb {
  position: absolute;
  width: 280px;
  opacity: 0.5;
  z-index: 0;
  pointer-events: none;
  filter: blur(2px);
}
.rc-armada-orb--tl {
  top: -100px;
  left: -100px;
}
.rc-armada-orb--br {
  bottom: -100px;
  right: -100px;
}

/* Header */
.rc-armada-header {
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
}

.rc-pill-badge--armada {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--primary-font);
  font-size: 12px;
  font-weight: 600;
  background: rgba(var(--base-color-rgb), 0.12);
  color: var(--base-color);
  border: 1px solid rgba(var(--base-color-rgb), 0.25);
  padding: 7px 16px;
  border-radius: 999px;
  margin-bottom: 16px;
}

.rc-armada-title {
  font-family: var(--alt-font);
  font-weight: 800;
  font-size: 1.5rem;
  line-height: 1.25;
  color: var(--third-color);
  margin: 0 0 12px;
}

.rc-armada-subtitle {
  font-family: var(--primary-font);
  font-size: 14px;
  line-height: 1.75;
  color: rgba(var(--third-color-rgb), 0.72);
  margin: 0;
}

/* ===== Kartu Armada ===== */
.armada-card {
  position: relative;
  z-index: 1;
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  height: 100%;
  box-shadow: 0 4px 14px rgba(var(--third-color-rgb), 0.06);
  border: 1px solid rgba(var(--base-color-rgb), 0.06);
  transition: all 0.3s ease;
}

.armada-card:hover {
  transform: scale(1.08);
  box-shadow: 0 16px 28px rgba(var(--base-color-rgb), 0.16);
  border-color: rgba(var(--base-color-rgb), 0.2);
}

.armada-img-wrap {
  position: relative;
  overflow: hidden;
  /* aspect-ratio: 4 / 3; */
  background: rgba(var(--third-color-rgb), 0.04);
}

.armada-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.armada-card:hover .armada-img {
  transform: scale(1.08);
}

.armada-body {
  padding: 14px 14px 16px;
  text-align: center;
}

.armada-title {
  font-family: var(--alt-font);
  font-weight: 600;
  font-size: 14.5px;
  color: var(--third-color);
  margin: 0 0 4px;
  line-height: 1.3;
}

.armada-desc {
  font-family: var(--primary-font);
  font-size: 12px;
  line-height: 1.5;
  color: rgba(var(--third-color-rgb), 0.65);
  margin: 0;
}

/* Tombol CTA versi light (untuk bg soft) */
.rc-btn-light {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--primary-font);
  font-weight: 600;
  font-size: 15px;
  padding: 13px 28px;
  border-radius: 10px;
  border: 2px solid var(--base-color);
  background: #ffffff;
  color: var(--base-color);
  text-decoration: none;
  transition: all 0.25s ease;
}

.rc-btn-light:hover {
  background: var(--base-color);
  color: #ffffff;
  transform: translateY(-2px);
}

/* ===================================================
   RESPONSIVE
=================================================== */
@media (max-width: 991px) {
  .rc-armada-title {
    font-size: 1.2rem;
  }
}

@media (max-width: 576px) {
  .rc-armada-title {
    font-size: 1rem;
  }
  .armada-title {
    font-size: 13px;
  }
  .armada-desc {
    font-size: 11.5px;
  }
}
/* ===== Ornamen tambahan ===== */
.rc-armada-orb {
  position: absolute;
  width: 280px;
  opacity: 0.5;
  z-index: 0;
  pointer-events: none;
  filter: blur(2px);
}
.rc-armada-orb--tl {
  top: -100px;
  left: -100px;
}
.rc-armada-orb--br {
  bottom: -100px;
  right: -100px;
}

.rc-armada-dots {
  position: absolute;
  width: 70px;
  opacity: 0.35;
  z-index: 0;
  pointer-events: none;
}
.rc-armada-dots--left {
  top: 60px;
  left: 24px;
  display: none;
}
.rc-armada-dots--right {
  bottom: 60px;
  right: 24px;
  display: none;
}

.rc-armada-ring {
  position: absolute;
  top: 50%;
  right: 6%;
  width: 140px;
  transform: translateY(-50%);
  opacity: 0.25;
  z-index: 0;
  pointer-events: none;
  animation: spinSlow 30s linear infinite;
}

@keyframes spinSlow {
  from {
    transform: translateY(-50%) rotate(0deg);
  }
  to {
    transform: translateY(-50%) rotate(360deg);
  }
}

@media (min-width: 992px) {
  .rc-armada-dots--left,
  .rc-armada-dots--right {
    display: block;
  }
}
.armada-title-line1 {
  color: var(--base-color);
}

.armada-title-line2 {
  color: var(--second-color);
}

.armada-title-bar {
  width: 56px;
  height: 4px;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--base-color), var(--second-color));
  margin-bottom: 18px;
}
/* ===================================================
   LAYANAN SECTION
=================================================== */
.rc-layanan-section {
  background: #ffffff;
  font-family: var(--primary-font);
}

/* Badge */
.rc-pill-badge--layanan {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--primary-font);
  font-size: 13px;
  font-weight: 600;
  background: rgba(var(--second-color-rgb), 0.08);
  color: var(--second-color);
  border: 1px solid rgba(var(--second-color-rgb), 0.2);
  padding: 7px 16px;
  border-radius: 999px;
  margin-bottom: 18px;
}

/* Judul dua warna */
.rc-layanan-title {
  font-family: var(--alt-font);
  font-weight: 800;
  font-size: 1.5rem;
  line-height: 1.28;
  margin: 0 0 14px;
}

.layanan-title-line1 {
  color: var(--second-color);
}
.layanan-title-line2 {
  color: var(--base-color);
}

.layanan-title-bar {
  width: 56px;
  height: 4px;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--base-color), var(--second-color));
  margin-bottom: 20px;
}

.rc-layanan-desc {
  font-family: var(--primary-font);
  font-size: 14px;
  line-height: 1.8;
  color: rgba(var(--third-color-rgb), 0.75);
  margin-bottom: 28px;
}
.rc-layanan-desc ul {
  list-style: none;
  padding: 0;
  margin: 15px 0 0;
}

.rc-layanan-desc ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.rc-layanan-desc ul li::before {
  content: "";
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  border-radius: 50%;
  background: var(--base-color);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='13' height='13' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}
/* Gambar */
.rc-layanan-img-wrap {
  position: relative;
  width: 100%;
}

.layanan-deco-ring {
  position: absolute;
  top: -30px;
  right: -30px;
  width: 130px;
  opacity: 0.5;
  z-index: 0;
  pointer-events: none;
  animation: spinSlow 30s linear infinite;
}

@keyframes spinSlow {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.layanan-img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  border-radius: 22px;
  object-fit: cover;
  box-shadow: 0 20px 40px rgba(var(--third-color-rgb), 0.18);
}

.layanan-img-badge {
  position: absolute;
  z-index: 2;
  bottom: 20px;
  left: -20px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: #ffffff;
  padding: 14px 18px;
  border-radius: 14px;
  box-shadow: 0 14px 30px rgba(var(--third-color-rgb), 0.2);
}

.layanan-img-badge svg {
  color: var(--second-color);
  flex-shrink: 0;
}

.layanan-img-badge-title {
  display: block;
  font-family: var(--alt-font);
  font-weight: 700;
  font-size: 13.5px;
  color: var(--third-color);
}

.layanan-img-badge-sub {
  display: block;
  font-family: var(--primary-font);
  font-size: 11.5px;
  color: rgba(var(--third-color-rgb), 0.6);
}

/* ===================================================
   RESPONSIVE
=================================================== */
@media (max-width: 991px) {
  .rc-layanan-title {
    font-size: 1.2rem;
    /* text-align: center; */
  }
  .rc-layanan-desc {
    margin-left: auto;
    margin-right: auto;
  }
  .layanan-check-list {
    max-width: 440px;
    margin-left: auto;
    margin-right: auto;
  }
  .layanan-img-badge {
    left: 16px;
  }
}

@media (max-width: 576px) {
  .rc-layanan-title {
    font-size: 1rem;
  }
  .layanan-img-badge {
    flex-direction: row;
    padding: 12px 14px;
  }
}
/* ===================================================
   ALUR PEMESANAN SECTION
=================================================== */
.rc-alur-section {
  position: relative;
  overflow: hidden;
  background: var(--base-color);
  font-family: var(--primary-font);
}

/* Ornamen */
.rc-alur-orb {
  position: absolute;
  width: 300px;
  opacity: 0.08;
  z-index: 0;
  pointer-events: none;
}
.rc-alur-orb--tl {
  top: 0px;
  left: -100px;
}
.rc-alur-orb--br {
  bottom: -110px;
  right: 0px;
  opacity: 0.12;
}

.rc-alur-dots {
  position: absolute;
  top: 50%;
  right: 4%;
  width: 90px;
  opacity: 0.15;
  z-index: 0;
  pointer-events: none;
  display: none;
}

@media (min-width: 992px) {
  .rc-alur-dots {
    display: block;
  }
}

/* Header */
.rc-pill-badge--alur {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--primary-font);
  font-size: 13px;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 7px 16px;
  border-radius: 999px;
  margin-bottom: 18px;
}

.rc-alur-title {
  font-family: var(--alt-font);
  font-weight: 800;
  font-size: 1.5rem;
  line-height: 1.28;
  margin: 0 0 14px;
  position: relative;
  z-index: 1;
}

.alur-title-line1 {
  color: #ffffff;
}
.alur-title-line2 {
  color: #ffffff;
}

.alur-title-bar {
  width: 56px;
  height: 4px;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--second-color), #ffffff);
  margin-bottom: 18px;
}

.rc-alur-subtitle {
  font-family: var(--primary-font);
  font-size: 14px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
  position: relative;
  z-index: 1;
}

/* ===== Steps ===== */
.alur-steps-row {
  position: relative;
  z-index: 1;
}

.alur-step-col {
  position: relative;
}

.alur-step {
  position: relative;
  z-index: 1;
  padding: 8px 16px;
  text-align: center;
  cursor: default;
}

/* Nomor step: lingkaran dengan hover interaktif */
.alur-step-number-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 76px;
  height: 76px;
  margin-bottom: 24px;
}

.alur-step-number-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px dashed rgba(255, 255, 255, 0.35);
  transition: all 0.5s ease;
}

.alur-step-number {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  font-family: var(--alt-font);
  font-weight: 800;
  font-size: 1.3rem;
  color: #ffffff;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Hover: lingkaran luar berputar, nomor scale-up dan berubah warna */
.alur-step:hover .alur-step-number-wrap::before {
  transform: rotate(180deg);
  border-color: var(--second-color);
}

.alur-step:hover .alur-step-number {
  background: var(--second-color);
  transform: scale(1.1);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
}

.alur-step-title {
  font-family: var(--alt-font);
  font-weight: 700;
  font-size: 18px;
  color: #ffffff;
  margin: 0 0 10px;
  transition: color 0.3s ease;
}

.alur-step:hover .alur-step-title {
  color: var(--very-light-base-color);
}

.alur-step-desc {
  font-family: var(--primary-font);
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
  max-width: 280px;
  margin-left: auto;
  margin-right: auto;
  transition: color 0.3s ease;
}

.alur-step:hover .alur-step-desc {
  color: rgba(255, 255, 255, 0.85);
}

/* ===== Garis penghubung — diperbaiki agar tidak menembus nomor ===== */
.alur-step-connector {
  position: absolute;
  top: 46px;
  left: calc(50% + 46px); /* mulai setelah tepi lingkaran kolom ini */
  right: calc(
    -50% + 46px
  ); /* berhenti sebelum tepi lingkaran kolom berikutnya */
  width: auto;
  height: 2px;
  background: rgba(255, 255, 255, 0.2);
  z-index: 0;
  overflow: hidden;
}

.alur-step-connector-fill {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    var(--second-color),
    transparent
  );
  animation: flowLine 3s ease-in-out infinite;
}

/* Mask solid di belakang nomor supaya garis tidak tembus meskipun overlap */
.alur-step-number-wrap {
  position: relative;
  z-index: 2; /* naikkan di atas garis */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 76px;
  height: 76px;
  margin-bottom: 24px;
}

.alur-step-number-wrap::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: var(
    --base-color
  ); /* sama dengan bg section, jadi menutup garis di belakangnya */
  z-index: 0;
}

.alur-step-number-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px dashed rgba(255, 255, 255, 0.35);
  transition: all 0.5s ease;
  z-index: 1;
}

.alur-step-number {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  font-family: var(--alt-font);
  font-weight: 800;
  font-size: 1.3rem;
  color: #ffffff;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ===================================================
   RESPONSIVE
=================================================== */
@media (max-width: 991px) {
  .rc-alur-title {
    font-size: 1.2rem;
  }
  .alur-step-connector {
    display: none;
  }
}

@media (max-width: 576px) {
  .rc-alur-title {
    font-size: 1rem;
  }
  .alur-step-number-wrap {
    width: 68px;
    height: 68px;
  }
  .alur-step-number {
    width: 56px;
    height: 56px;
    font-size: 1.15rem;
  }
}
/* ===================================================
   GALERI SECTION
=================================================== */
.rc-galeri-section {
  background: #ffffff;
  font-family: var(--primary-font);
}

.rc-pill-badge--galeri {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--primary-font);
  font-size: 13px;
  font-weight: 600;
  background: rgba(var(--second-color-rgb), 0.08);
  color: var(--second-color);
  border: 1px solid rgba(var(--second-color-rgb), 0.2);
  padding: 7px 16px;
  border-radius: 999px;
  margin-bottom: 18px;
}

.rc-galeri-title {
  font-family: var(--alt-font);
  font-weight: 800;
  font-size: 1.5rem;
  line-height: 1.28;
  margin: 0 0 14px;
}
.galeri-title-line1 {
  color: var(--second-color);
}
.galeri-title-line2 {
  color: var(--base-color);
}

.galeri-title-bar {
  width: 56px;
  height: 4px;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--base-color), var(--second-color));
  margin-bottom: 18px;
}

.rc-galeri-subtitle {
  font-family: var(--primary-font);
  font-size: 14px;
  line-height: 1.75;
  color: rgba(var(--third-color-rgb), 0.7);
  margin: 0;
}

/* ===================================================
   BENTO GRID — 8 gambar, ukuran bervariasi
   Grid: 6 kolom x 4 baris
=================================================== */
.galeri-bento {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(4, 130px);
  gap: 14px;
}

/* Item 1: besar, dominan kiri atas (2 kolom x 2 baris) */
.galeri-item--1 {
  grid-column: span 3;
  grid-row: span 2;
}

/* Item 2: kotak sedang kanan atas */
.galeri-item--2 {
  grid-column: span 2;
  grid-row: span 2;
}

/* Item 3: kecil vertikal paling kanan */
.galeri-item--3 {
  grid-column: span 1;
  grid-row: span 2;
}

/* Item 4: kecil */
.galeri-item--4 {
  grid-column: span 2;
  grid-row: span 1;
}

/* Item 5: sedang */
.galeri-item--5 {
  grid-column: span 2;
  grid-row: span 1;
}

/* Item 6: besar bawah kiri (lebar) */
.galeri-item--6 {
  grid-column: span 2;
  grid-row: span 1;
}

/* Item 7: sedang bawah tengah */
.galeri-item--7 {
  grid-column: span 3;
  grid-row: span 1;
}

/* Item 8: kecil bawah kanan */
.galeri-item--8 {
  grid-column: span 3;
  grid-row: span 1;
}

.galeri-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 6px 16px rgba(var(--third-color-rgb), 0.08);
}

.galeri-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.galeri-item:hover .galeri-img {
  transform: scale(1.08);
}

.galeri-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px;
  text-align: center;
  background: linear-gradient(
    180deg,
    rgba(var(--base-color-rgb), 0) 40%,
    rgba(var(--base-color-rgb), 0.85) 100%
  );
  opacity: 0;
  transition: opacity 0.35s ease;
}

.galeri-item:hover .galeri-overlay {
  opacity: 1;
}

.galeri-zoom-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  color: #ffffff;
  transform: translateY(10px);
  transition: transform 0.35s ease;
  flex-shrink: 0;
}

.galeri-item:hover .galeri-zoom-icon {
  transform: translateY(0);
}

.galeri-overlay-title {
  font-family: var(--primary-font);
  font-size: 12.5px;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.4;
  transform: translateY(10px);
  opacity: 0;
  transition: all 0.35s ease 0.05s;
}

.galeri-item:hover .galeri-overlay-title {
  transform: translateY(0);
  opacity: 1;
}

/* ===================================================
   LIGHTBOX
=================================================== */
.rc-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(10, 12, 24, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
}

.rc-lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-img {
  max-width: 90vw;
  max-height: 75vh;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  transition: opacity 0.15s ease;
  object-fit: contain;
}

.lightbox-caption {
  margin-top: 16px;
  font-family: var(--primary-font);
  font-size: 14px;
  font-weight: 500;
  color: #ffffff;
  text-align: center;
}

.lightbox-counter {
  margin-top: 6px;
  font-family: var(--primary-font);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  cursor: pointer;
  transition: all 0.25s ease;
}

.lightbox-close:hover {
  background: var(--second-color);
  border-color: var(--second-color);
  transform: rotate(90deg);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  cursor: pointer;
  transition: all 0.25s ease;
  z-index: 2;
}

.lightbox-nav:hover {
  background: var(--base-color);
  border-color: var(--base-color);
}

.lightbox-prev {
  left: 24px;
}
.lightbox-next {
  right: 24px;
}

/* ===================================================
   RESPONSIVE
=================================================== */
@media (max-width: 991px) {

  .rc-galeri-title {
    font-size: 1.2rem;
  }

  .galeri-bento {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 110px;
    gap: 10px;
  }

  .galeri-item--1 {
    grid-column: span 4;
    grid-row: span 2;
  }

  .galeri-item--2,
  .galeri-item--3,
  .galeri-item--4,
  .galeri-item--5,
  .galeri-item--6,
  .galeri-item--7 {
    grid-column: span 2;
    grid-row: span 1;
  }

  .galeri-item--8 {
    grid-column: span 4;
    grid-row: span 1;
  }

}
/* ===== MOBILE: 2 kolom rapat, tanpa grid & tanpa gap kosong ===== */
@media (max-width: 576px) {
  .rc-galeri-title {
    font-size: 1rem;
  }

  /* Matikan CSS Grid, ganti ke CSS Columns (masonry-like) */
  .galeri-bento {
    display: block;
    column-count: 2;
    column-gap: 10px;
    grid-template-columns: unset;
    grid-template-rows: unset;
  }

  /* Semua item lepas dari aturan span grid */
  .galeri-item--1,
  .galeri-item--2,
  .galeri-item--3,
  .galeri-item--4,
  .galeri-item--5,
  .galeri-item--6,
  .galeri-item--7,
  .galeri-item--8 {
    grid-column: unset;
    grid-row: unset;
  }

  .galeri-item {
    display: block;
    width: 100%;
    break-inside: avoid;
    margin-bottom: 10px;
    border-radius: 12px;
    aspect-ratio: 1/1;
  }

  /* Variasi tinggi natural per item agar terlihat menarik, bukan kotak rata semua */
  .galeri-item--1 .galeri-img,
  .galeri-item--4 .galeri-img,
  .galeri-item--7 .galeri-img {
    aspect-ratio: 3 / 4;
  }

  .galeri-item--2 .galeri-img,
  .galeri-item--5 .galeri-img,
  .galeri-item--8 .galeri-img {
    aspect-ratio: 1 / 1;
  }

  .galeri-item--3 .galeri-img,
  .galeri-item--6 .galeri-img {
    aspect-ratio: 4 / 5;
  }

  .galeri-overlay-title {
    font-size: 11px;
  }

  .lightbox-nav {
    width: 40px;
    height: 40px;
  }
  .lightbox-prev {
    left: 10px;
  }
  .lightbox-next {
    right: 10px;
  }
  .lightbox-close {
    top: 14px;
    right: 14px;
    width: 38px;
    height: 38px;
  }
}
/* ===================================================
   TESTIMONI SECTION
=================================================== */
.rc-testi-section {
  position: relative;
  overflow: hidden;
  background: #ffffff;
  font-family: var(--primary-font);
}

/* Ornamen blob */
.testi-blob {
  position: absolute;
  width: 340px;
  opacity: 0.05;
  z-index: 0;
  pointer-events: none;
}
.testi-blob--tl {
  top: -100px;
  left: -120px;
}
.testi-blob--br {
  bottom: -120px;
  right: -100px;
  transform: rotate(40deg);
}

/* Ornamen dots */
.testi-dots {
  position: absolute;
  top: 10%;
  right: 6%;
  width: 90px;
  opacity: 0.12;
  z-index: 0;
  pointer-events: none;
  display: none;
}

@media (min-width: 992px) {
  .testi-dots {
    display: block;
  }
}

/* Ornamen quote raksasa transparan */
.testi-quote-deco {
  position: absolute;
  top: -30px;
  left: 4%;
  font-family: Georgia, serif;
  font-size: 220px;
  line-height: 1;
  color: rgba(var(--base-color-rgb), 0.05);
  z-index: 0;
  pointer-events: none;
  user-select: none;
  display: none;
}

@media (min-width: 992px) {
  .testi-quote-deco {
    display: block;
  }
}

/* ===== Header (Kiri) ===== */
.testi-header-wrap {
  position: relative;
  z-index: 1;
}

.rc-pill-badge--testi {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--primary-font);
  font-size: 13px;
  font-weight: 600;
  background: rgba(var(--base-color-rgb), 0.08);
  color: var(--base-color);
  border: 1px solid rgba(var(--base-color-rgb), 0.2);
  padding: 7px 16px;
  border-radius: 999px;
  margin-bottom: 18px;
}

.rc-testi-title {
  font-family: var(--alt-font);
  font-weight: 800;
  font-size: 1.5rem;
  line-height: 1.28;
  margin: 0 0 14px;
}

.testi-title-line1 {
  color: var(--second-color);
}
.testi-title-line2 {
  color: var(--base-color);
}

.testi-title-bar {
  width: 56px;
  height: 4px;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--base-color), var(--second-color));
  margin-bottom: 20px;
}

.rc-testi-desc {
  font-family: var(--primary-font);
  font-size: 14px;
  line-height: 1.8;
  color: rgba(var(--third-color-rgb), 0.72);
  margin-bottom: 28px;
}

/* Rating Box */
.testi-rating-box {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--very-light-base-color);
  border-radius: 16px;
  padding: 16px 20px;
  margin-bottom: 28px;
  max-width: 340px;
}

.testi-rating-number {
  font-family: var(--alt-font);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--base-color);
  line-height: 1;
}

.testi-rating-stars {
  display: flex;
  gap: 2px;
  color: #ffb020;
  margin-bottom: 4px;
}

.testi-rating-label {
  font-family: var(--primary-font);
  font-size: 12.5px;
  font-weight: 500;
  color: rgba(var(--third-color-rgb), 0.65);
}

/* Navigasi */
.testi-nav {
  display: flex;
  gap: 12px;
}

.testi-nav-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 2px solid rgba(var(--base-color-rgb), 0.2);
  background: #ffffff;
  color: var(--base-color);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s ease;
}

.testi-nav-btn:hover {
  background: var(--base-color);
  border-color: var(--base-color);
  color: #ffffff;
  transform: translateY(-3px);
}

/* ===================================================
   RESPONSIVE
=================================================== */
@media (max-width: 991px) {
  .rc-testi-title {
    font-size: 1.2rem;
  }
  .testi-header-wrap,
  .testi-rating-box {
    text-align: left;
  }
}

@media (max-width: 576px) {
  .rc-testi-title {
    font-size: 1rem;
  }
}
.testimoni-stack {
  position: relative;
  z-index: 1;
  /* min-height: 340px; */
  display: flex;
  align-items: center;
}

.testimoni-ghost--1 {
  transform: rotate(-4deg) translateY(10px);
  opacity: 0.75;
}
.testimoni-ghost--2 {
  transform: rotate(4deg) translateY(18px);
  opacity: 0.45;
  background: rgba(var(--base-color-rgb), 0.08);
}
.testimoni-ghost {
  position: absolute;
  inset: 0;
  border-radius: 24px;
  background: var(--very-light-base-color);
  border: 1px solid rgba(var(--base-color-rgb), 0.18);
}
/* ===================================================
   KLIEN SECTION
=================================================== */
.rc-klien-section {
  position: relative;
  overflow: hidden;
  background: #ffffff;
  font-family: var(--primary-font);
}

/* Ornamen */
.klien-blob {
  position: absolute;
  width: 320px;
  opacity: 0.05;
  z-index: 0;
  pointer-events: none;
}
.klien-blob--tl {
  top: -110px;
  left: -110px;
}
.klien-blob--br {
  bottom: -110px;
  right: -110px;
}

.klien-grid-deco {
  position: absolute;
  top: 12%;
  right: 5%;
  width: 100px;
  opacity: 0.12;
  z-index: 0;
  pointer-events: none;
  display: none;
}

@media (min-width: 992px) {
  .klien-grid-deco {
    display: block;
  }
}

/* Header */
.rc-klien-header {
  position: relative;
  z-index: 1;
}

.rc-pill-badge--klien {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--primary-font);
  font-size: 13px;
  font-weight: 600;
  background: rgba(var(--base-color-rgb), 0.08);
  color: var(--base-color);
  border: 1px solid rgba(var(--base-color-rgb), 0.2);
  padding: 7px 16px;
  border-radius: 999px;
  margin-bottom: 18px;
}

.rc-klien-title {
  font-family: var(--alt-font);
  font-weight: 800;
  font-size: 1.5rem;
  line-height: 1.28;
  margin: 0 0 14px;
}

.klien-title-line1 {
  color: var(--second-color);
}
.klien-title-line2 {
  color: var(--base-color);
}

.klien-title-bar {
  width: 56px;
  height: 4px;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--base-color), var(--second-color));
  margin-bottom: 18px;
}

.rc-klien-subtitle {
  font-family: var(--primary-font);
  font-size: 14px;
  line-height: 1.75;
  color: rgba(var(--third-color-rgb), 0.7);
  margin: 0;
}

/* ===================================================
   MARQUEE
=================================================== */
.klien-marquee-wrap {
  position: relative;
  z-index: 1;
  width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0%,
    #000 8%,
    #000 92%,
    transparent 100%
  );
  mask-image: linear-gradient(
    90deg,
    transparent 0%,
    #000 8%,
    #000 92%,
    transparent 100%
  );
}

.klien-marquee {
  display: flex;
  align-items: center;
  gap: 28px;
  width: max-content;
}

.klien-marquee--left {
  animation: marqueeLeft 30s linear infinite;
}

.klien-marquee--right {
  animation: marqueeRight 30s linear infinite;
}

.klien-marquee-wrap:hover .klien-marquee {
  animation-play-state: paused;
}

@keyframes marqueeLeft {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes marqueeRight {
  from {
    transform: translateX(-50%);
  }
  to {
    transform: translateX(0);
  }
}

.klien-logo-item {
  flex: 0 0 auto;
  width: 180px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--very-light-base-color);
  border-radius: 16px;
  padding: 10px;
  border: 1px solid rgba(var(--third-color-rgb), 0.06);
  transition: all 0.3s ease;
}

.klien-logo-item:hover {
  background: #ffffff;
  border-color: rgba(var(--base-color-rgb), 0.25);
  box-shadow: 0 14px 30px rgba(var(--base-color-rgb), 0.14);
  transform: translateY(-4px);
}

.klien-logo-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: all 0.35s ease;
}

.klien-logo-item:hover .klien-logo-img {
  filter: grayscale(0%) opacity(1);
  transform: scale(1.05);
}

/* ===================================================
   RESPONSIVE
=================================================== */
@media (max-width: 991px) {
  .rc-klien-title {
    font-size: 1.2rem;
  }
  .klien-logo-item {
    width: 150px;
    height: 86px;
    padding: 10px;
  }
}

@media (max-width: 576px) {
  .rc-klien-title {
    font-size: 1rem;
  }
  .klien-marquee {
    gap: 18px;
  }
  .klien-logo-item {
    width: 130px;
    height: 74px;
    padding: 10px;
    border-radius: 12px;
  }
  .klien-marquee--left,
  .klien-marquee--right {
    animation-duration: 22s;
  }
}
.image-wrapper.bg-overlay:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  /* border-radius: 20px; */
  width: 100%;
  height: 100%;
  border-radius: 50px 50px 0 0;
  background: linear-gradient(to right, rgb(36, 40, 139), rgb(0 0 0 / 32%));
}
.card {
  background: white;
  border-radius: 50px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  text-align: center;
  width: 100%;
  /* padding: 10px; */
  transition: transform 0.3s ease;
}
.btn-base-color {
  --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:hover {
  color: var(--bs-btn-hover-color);
  background-color: var(--bs-btn-hover-bg);
  border-color: var(--bs-btn-hover-border-color);
}
/* ===================================================
   FOOTER
=================================================== */
.footer-floating-style {
  position: relative;
  overflow: hidden;
  font-family: var(--primary-font);
  background-image: var(--footer-bg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Overlay gelap elegan — gradasi kombinasi third-color & base-color */
.footer-overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(
    180deg,
    rgba(var(--third-color-rgb), 0.92) 0%,
    rgba(var(--base-color-rgb), 0.88) 55%,
    rgba(var(--third-color-rgb), 0.95) 100%
  );
}

/* Ornamen */
.footer-deco-orb {
  position: absolute;
  top: -80px;
  right: -80px;
  width: 320px;
  opacity: 0.12;
  z-index: 0;
  pointer-events: none;
  filter: blur(4px);
}

.footer-deco-dots {
  position: absolute;
  bottom: 10%;
  left: 3%;
  width: 90px;
  opacity: 0.1;
  z-index: 0;
  pointer-events: none;
  display: none;
}

@media (min-width: 992px) {
  .footer-deco-dots {
    display: block;
  }
}

/* Logo */
.footer-logo {
  filter: brightness(0) invert(1);
  opacity: 0.95;
}

.footer-desc-text {
  color: rgba(255, 255, 255, 1);
  font-family: var(--primary-font);
}

/* Heading kolom */
.footer-heading {
  font-family: var(--alt-font);
  font-weight: 700;
  color: #ffffff;
  position: relative;
  padding-bottom: 12px;
}

.footer-heading::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 32px;
  height: 3px;
  border-radius: 3px;
  background: linear-gradient(
    90deg,
    var(--second-color),
    rgba(255, 255, 255, 0.3)
  );
}

/* Quick Links */
.f-link-hover {
  color: rgba(255, 255, 255, 1);
  font-family: var(--primary-font);
  font-size: 14px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: all 0.25s ease;
}

.f-link-hover i {
  color: #fff;
  transition: transform 0.25s ease;
}

.f-link-hover:hover {
  color: #ffffff;
  transform: translateX(4px);
}

.f-link-hover:hover i {
  transform: translateX(2px);
}

/* Kontak Item */
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.footer-contact-icon {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #ffffff;
  transition: all 0.3s ease;
}

.footer-contact-icon--wa {
  color: #fff;
}

.footer-contact-item:hover .footer-contact-icon {
  background: var(--second-color);
  border-color: var(--second-color);
  color: #ffffff;
}

.footer-contact-label {
  display: block;
  font-family: var(--primary-font);
  font-size: 11px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 3px;
}

.footer-contact-value {
  font-family: var(--primary-font);
  font-size: 14.5px;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.5;
}

.footer-contact-link {
  text-decoration: none;
  transition: color 0.25s ease;
  color: #fff !important;
}

.footer-contact-link:hover {
  color: var(--second-color);
}

/* Social Buttons */
.social-wrapper {
  display: flex;
  gap: 10px;
}

.social-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #ffffff;
  transition: all 0.3s ease;
}

.social-btn:hover {
  background: var(--second-color);
  border-color: var(--second-color);
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(var(--second-color-rgb), 0.35);
}

/* Bottom Bar */
.footer-bottom-bar {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 1);
  font-family: var(--primary-font);
}

.footer-brand-name {
  color: #ffffff;
}

.footer-heart-icon {
  color: var(--second-color);
}

.footer-jmw-link {
  color: #ffffff;
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.25s ease;
}

.footer-jmw-link:hover {
  opacity: 1;
  color: var(--second-color);
}

/* ===================================================
   RESPONSIVE
=================================================== */
@media (max-width: 991px) {
  .footer-floating-style {
    border-radius: 30px 30px 0 0 !important;
  }
}

@media (max-width: 576px) {
  .footer-heading {
    font-size: 15px;
  }
  .footer-contact-value {
    font-size: 13.5px;
  }
}
/* ===================================================
   ABOUT HEADER (abh-)
=================================================== */
.abh-section {
  position: relative;
  overflow: hidden;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  font-family: var(--primary-font);
}

.abh-overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(
    115deg,
    rgba(var(--third-color-rgb), 0.94) 0%,
    rgba(var(--base-color-rgb), 0.85) 45%,
    rgba(var(--base-color-rgb), 0.55) 75%,
    rgba(var(--base-color-rgb), 0.3) 100%
  );
}

/* Ornamen */
.abh-orb {
  position: absolute;
  bottom: -120px;
  right: -100px;
  width: 320px;
  opacity: 0.15;
  z-index: 0;
  pointer-events: none;
  filter: blur(6px);
}

.abh-dots {
  position: absolute;
  top: 14%;
  right: 8%;
  width: 90px;
  opacity: 0.15;
  z-index: 0;
  pointer-events: none;
  display: none;
}

@media (min-width: 992px) {
  .abh-dots {
    display: block;
  }
}

/* ===== Konten Kiri (Glass Card) ===== */
.abh-content-box {
  position: relative;
  z-index: 1;
  /* background: rgba(255, 255, 255, 0.06); */
  /* border: 1px solid rgba(255, 255, 255, 0.12); */
  /* backdrop-filter: blur(10px); */
  border-radius: 24px;
  /* padding: 40px 36px; */
}

/* Breadcrumb */
.abh-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--primary-font);
  font-size: 13px;
}

.abh-bc-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.65);
}

.abh-bc-link {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  transition: color 0.25s ease;
}

.abh-bc-link:hover {
  color: #ffffff;
}

.abh-bc-sep {
  display: inline-flex;
  color: rgba(255, 255, 255, 0.4);
}

.abh-bc-active {
  color: var(--second-color);
  font-weight: 600;
}

/* Eyebrow */
.abh-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--primary-font);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 7px 16px;
  border-radius: 999px;
  margin-bottom: 20px;
}

.abh-eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--second-color);
  box-shadow: 0 0 0 4px rgba(var(--second-color-rgb), 0.25);
}

/* Judul */
.abh-title {
  font-family: var(--alt-font);
  font-weight: 800;
  font-size: 1.5rem;
  line-height: 1.2;
  color: #ffffff;
  margin: 0 0 20px;
}

.abh-divider {
  width: 64px;
  height: 4px;
  border-radius: 4px;
  background: linear-gradient(
    90deg,
    var(--second-color),
    rgba(255, 255, 255, 0.4)
  );
  margin-bottom: 20px;
}

.abh-desc {
  font-family: var(--primary-font);
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.75);
}

/* ===== Panel Statistik Kanan (Melayang) ===== */
.abh-stats-panel {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.abh-stat-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  border-radius: 18px;
  padding: 22px 20px;
  transition: all 0.35s ease;
}

.abh-stat-card:hover {
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.25);
}

.abh-stat-icon {
  width: 34px;
  height: 34px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.abh-stat-label {
  font-family: var(--primary-font);
  font-size: 13.5px;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.4;
}

/* ===== Stats Mobile (scroll horizontal) ===== */
.abh-stats-mobile {
  position: relative;
  z-index: 1;
  margin-top: 32px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.abh-stats-mobile::-webkit-scrollbar {
  display: none;
}

.abh-stats-mobile-track {
  display: flex;
  gap: 12px;
  padding: 0 16px;
}

.abh-stat-mobile-item {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  padding: 10px 18px;
  white-space: nowrap;
  font-family: var(--primary-font);
  font-size: 12.5px;
  font-weight: 600;
  color: #ffffff;
}

.abh-stat-mobile-icon {
  width: 20px;
  height: 20px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

/* ===================================================
   RESPONSIVE
=================================================== */
@media (max-width: 991px) {
  .abh-title {
    font-size: 1.2rem;
  }
}

@media (max-width: 576px) {
  .abh-title {
    font-size: 1rem;
  }
  .abh-desc {
    font-size: 14px;
  }
}
/* ===================================================
   GALERI SECTION (glr-)
=================================================== */
.glr-section {
  background: #ffffff;
  font-family: var(--primary-font);
}

/* Header */
.glr-pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--primary-font);
  font-size: 13px;
  font-weight: 600;
  background: rgba(var(--second-color-rgb), 0.08);
  color: var(--second-color);
  border: 1px solid rgba(var(--second-color-rgb), 0.2);
  padding: 7px 16px;
  border-radius: 999px;
  margin-bottom: 18px;
}

.glr-title {
  font-family: var(--alt-font);
  font-weight: 800;
  font-size: 2rem;
  line-height: 1.28;
  margin: 0 0 14px;
}
.glr-title-line1 {
  color: var(--third-color);
}
.glr-title-line2 {
  color: var(--base-color);
}

.glr-title-bar {
  width: 56px;
  height: 4px;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--base-color), var(--second-color));
  margin-bottom: 18px;
}

.glr-subtitle {
  font-family: var(--primary-font);
  font-size: 15px;
  line-height: 1.75;
  color: rgba(var(--third-color-rgb), 0.7);
  margin: 0;
}

/* ===== Card ===== */
.glr-wrap {
  display: block;
  text-decoration: none;
  cursor: pointer;
}

.glr-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(var(--third-color-rgb), 0.07);
  box-shadow: 0 6px 18px rgba(var(--third-color-rgb), 0.06);
  transition: all 0.35s ease;
}

.glr-wrap:hover .glr-card {
  transform: translateY(-8px);
  box-shadow: 0 22px 40px rgba(var(--base-color-rgb), 0.16);
  border-color: rgba(var(--base-color-rgb), 0.2);
}

/* Gambar */
.glr-img-box {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: rgba(var(--third-color-rgb), 0.04);
}

.glr-thumbnail {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.glr-wrap:hover .glr-thumbnail {
  transform: scale(1.1);
}

.glr-category-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  font-family: var(--primary-font);
  font-size: 11.5px;
  font-weight: 700;
  color: #ffffff;
  background: rgba(var(--base-color-rgb), 0.85);
  backdrop-filter: blur(4px);
  padding: 6px 12px;
  border-radius: 999px;
  letter-spacing: 0.3px;
}

.glr-img-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(var(--base-color-rgb), 0.35);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.glr-wrap:hover .glr-img-overlay {
  opacity: 1;
}

.glr-zoom-icon {
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: 1.5px solid rgba(255, 255, 255, 0.6);
  color: #ffffff;
  transform: scale(0.7);
  transition: transform 0.35s ease;
}

.glr-wrap:hover .glr-zoom-icon {
  transform: scale(1);
}

/* Body */
.glr-body {
  padding: 18px 18px 16px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.glr-title-card {
  font-family: var(--alt-font);
  font-weight: 700;
  font-size: 15px;
  line-height: 1.4;
  color: var(--third-color);
  margin: 0 0 14px;
  flex-grow: 1;
}

.glr-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px dashed rgba(var(--third-color-rgb), 0.14);
}

.glr-meta {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: var(--primary-font);
  font-size: 11.5px;
  font-weight: 500;
  color: rgba(var(--third-color-rgb), 0.55);
}

.glr-view-more {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: var(--primary-font);
  font-size: 12.5px;
  font-weight: 700;
  color: var(--base-color);
  transition: gap 0.25s ease;
}

.glr-wrap:hover .glr-view-more {
  gap: 7px;
  color: var(--second-color);
}

/* ===================================================
   LIGHTBOX
=================================================== */
.glr-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(10, 12, 24, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
}

.glr-lightbox.active {
  opacity: 1;
  visibility: visible;
}

.glr-lb-content {
  position: relative;
  max-width: 90vw;
  max-height: 88vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.glr-lb-category {
  font-family: var(--primary-font);
  font-size: 12px;
  font-weight: 700;
  color: var(--second-color);
  background: rgba(var(--second-color-rgb), 0.15);
  border: 1px solid rgba(var(--second-color-rgb), 0.3);
  padding: 5px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
  letter-spacing: 0.3px;
}

.glr-lb-img {
  max-width: 88vw;
  max-height: 68vh;
  border-radius: 14px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
  transition: opacity 0.15s ease;
  object-fit: contain;
}

.glr-lb-caption {
  margin-top: 18px;
  font-family: var(--alt-font);
  font-weight: 600;
  font-size: 16px;
  color: #ffffff;
  text-align: center;
}

.glr-lb-counter {
  margin-top: 6px;
  font-family: var(--primary-font);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
}

.glr-lb-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  cursor: pointer;
  transition: all 0.25s ease;
}

.glr-lb-close:hover {
  background: var(--second-color);
  border-color: var(--second-color);
  transform: rotate(90deg);
}

.glr-lb-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  cursor: pointer;
  transition: all 0.25s ease;
  z-index: 2;
}

.glr-lb-nav:hover {
  background: var(--base-color);
  border-color: var(--base-color);
}

.glr-lb-prev {
  left: 24px;
}
.glr-lb-next {
  right: 24px;
}

/* ===================================================
   RESPONSIVE
=================================================== */
@media (max-width: 991px) {
  .glr-title {
    font-size: 1.7rem;
  }
}

@media (max-width: 576px) {
  .glr-title {
    font-size: 1.5rem;
  }
  .glr-body {
    padding: 14px 14px 12px;
  }
  .glr-title-card {
    font-size: 13.5px;
  }
  .glr-lb-nav {
    width: 40px;
    height: 40px;
  }
  .glr-lb-prev {
    left: 10px;
  }
  .glr-lb-next {
    right: 10px;
  }
  .glr-lb-close {
    top: 14px;
    right: 14px;
    width: 38px;
    height: 38px;
  }
}
/* ===================================================
   KONTAK KAMI SECTION (ck-)
=================================================== */
.ck-section {
  background: #ffffff;
  overflow: hidden;
  font-family: var(--primary-font);
}

.ck-orb {
  position: absolute;
  top: -100px;
  left: -100px;
  width: 300px;
  opacity: 0.05;
  z-index: 0;
  pointer-events: none;
}

.ck-dots {
  position: absolute;
  bottom: 8%;
  right: 4%;
  width: 90px;
  opacity: 0.12;
  z-index: 0;
  pointer-events: none;
  display: none;
}

@media (min-width: 992px) {
  .ck-dots {
    display: block;
  }
}

/* ===== Peta ===== */
.ck-map-wrap {
  position: relative;
  height: 100%;
  min-height: 420px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 44px rgba(var(--third-color-rgb), 0.14);
}

.ck-map-iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
  display: block;
  filter: grayscale(15%) contrast(1.02);
}

/* ===== Stack Kartu Kontak ===== */
.ck-info-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
  height: 100%;
}

.ck-card-link {
  text-decoration: none;
  display: block;
}

.ck-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 18px;
  background: var(--very-light-base-color);
  border: 1px solid rgba(var(--third-color-rgb), 0.06);
  border-radius: 18px;
  padding: 22px 24px;
  transition: all 0.3s ease;
}

.ck-card-link:hover .ck-card,
.ck-card:hover {
  background: #ffffff;
  border-color: rgba(var(--base-color-rgb), 0.25);
  box-shadow: 0 14px 30px rgba(var(--base-color-rgb), 0.12);
  transform: translateY(-4px);
}

.ck-card-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: rgba(var(--base-color-rgb), 0.1);
  color: var(--base-color);
  font-size: 19px;
  transition: all 0.3s ease;
}

.ck-card:hover .ck-card-icon {
  background: var(--base-color);
  color: #ffffff;
}

.ck-card-icon--whatsapp {
  background: rgba(37, 211, 102, 0.1);
  color: #25d366;
}

.ck-card:hover .ck-card-icon--whatsapp {
  background: #25d366;
  color: #ffffff;
}

.ck-card-content {
  flex-grow: 1;
  min-width: 0;
}

.ck-card-label {
  font-family: var(--primary-font);
  font-size: 12px;
  font-weight: 600;
  color: rgba(var(--third-color-rgb), 0.55);
  text-transform: uppercase;
  letter-spacing: 0.4px;
  margin-bottom: 4px;
}

.ck-card-text {
  font-family: var(--primary-font);
  font-size: 14.5px;
  font-weight: 500;
  color: var(--third-color);
  line-height: 1.5;
  margin: 0;
}

.ck-card-text--strong {
  font-weight: 700;
  color: var(--third-color);
}

.ck-card-arrow {
  flex-shrink: 0;
  color: var(--base-color);
  opacity: 0.4;
  transition: all 0.3s ease;
}

.ck-card-link:hover .ck-card-arrow {
  opacity: 1;
  transform: translateX(4px);
}

/* ===== Sosial Media ===== */
.ck-sosmed-wrapper {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  background: var(--base-color);
  border-radius: 18px;
  padding: 22px 24px;
}

.ck-sosmed-title {
  font-family: var(--alt-font);
  font-weight: 700;
  font-size: 14.5px;
  color: #ffffff;
}

.ck-sosmed-list {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.ck-sosmed-link {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  font-size: 16px;
  transition: all 0.3s ease;
}

.ck-sosmed-link:hover {
  background: var(--second-color);
  border-color: var(--second-color);
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(var(--second-color-rgb), 0.35);
}

/* ===================================================
   ANIMASI
=================================================== */
.ck-anim-up {
  animation: ckFadeUp 0.7s ease both;
}

@keyframes ckFadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===================================================
   RESPONSIVE
=================================================== */
@media (max-width: 991px) {
  .ck-map-wrap {
    min-height: 320px;
  }
  .ck-map-iframe {
    min-height: 320px;
  }
}

@media (max-width: 576px) {
  .ck-card {
    padding: 18px 20px;
    gap: 14px;
  }
  .ck-card-icon {
    width: 44px;
    height: 44px;
    font-size: 16px;
  }
  .ck-card-text {
    font-size: 13.5px;
  }
  .ck-sosmed-wrapper {
    padding: 18px 20px;
    justify-content: flex-start;
  }
}
/* ===================================================
   FLOATING WHATSAPP BUTTON (fwa-)
=================================================== */
.fwa-wrapper {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 9998;
}

.fwa-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25d366, #1ebe5b);
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.45);
  text-decoration: none;
  animation:
    fwaBounceIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) both,
    fwaFloat 3s ease-in-out 0.6s infinite;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.fwa-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 14px 34px rgba(37, 211, 102, 0.55);
}

.fwa-icon {
  position: relative;
  z-index: 2;
  color: #ffffff;
  font-size: 28px;
  transition: transform 0.3s ease;
}

.fwa-btn:hover .fwa-icon {
  transform: rotate(-8deg) scale(1.1);
}

/* Ripple effect (efek gelombang menyebar) */
.fwa-ripple {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, 0.6);
  animation: fwaRipple 2.2s ease-out infinite;
  pointer-events: none;
}

.fwa-ripple--delay {
  animation-delay: 1.1s;
}

@keyframes fwaRipple {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }
  100% {
    transform: scale(1.9);
    opacity: 0;
  }
}

/* Bounce masuk saat halaman load */
@keyframes fwaBounceIn {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  60% {
    transform: scale(1.15);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

/* Melayang halus naik-turun */
@keyframes fwaFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

.fwa-btn:hover {
  animation-play-state: paused;
}

/* Badge notifikasi kecil */
.fwa-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  z-index: 3;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--second-color);
  border: 2px solid #ffffff;
  color: #ffffff;
  font-family: var(--primary-font);
  font-size: 11px;
  font-weight: 700;
  animation: fwaPulseBadge 1.8s ease-in-out infinite;
}

@keyframes fwaPulseBadge {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.15);
  }
}

/* Tooltip */
.fwa-tooltip {
  position: absolute;
  left: calc(100% + 14px);
  top: 50%;
  transform: translateY(-50%) translateX(-8px);
  display: flex;
  flex-direction: column;
  background: #ffffff;
  padding: 10px 16px;
  border-radius: 12px;
  box-shadow: 0 10px 26px rgba(var(--third-color-rgb), 0.18);
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.3s ease;
}

.fwa-tooltip::before {
  content: "";
  position: absolute;
  left: -6px;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  background: #ffffff;
  clip-path: polygon(100% 0, 0 50%, 100% 100%);
}

.fwa-btn:hover .fwa-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%) translateX(0);
}

.fwa-tooltip-title {
  font-family: var(--alt-font);
  font-weight: 700;
  font-size: 13px;
  color: var(--third-color);
}

.fwa-tooltip-sub {
  font-family: var(--primary-font);
  font-size: 11.5px;
  color: rgba(var(--third-color-rgb), 0.6);
  margin-top: 2px;
}

/* ===================================================
   RESPONSIVE
=================================================== */
@media (max-width: 576px) {
  .fwa-wrapper {
    bottom: 16px;
    left: 16px;
  }

  .fwa-btn {
    width: 54px;
    height: 54px;
  }

  .fwa-icon {
    font-size: 24px;
  }

  /* Tooltip disembunyikan di mobile agar tidak menutupi konten */
  .fwa-tooltip {
    display: none;
  }
}
/* Mobile: tampilkan hanya 4 keunggulan */
@media (max-width: 767.98px) {
    .ku-mobile-hide {
        display: none;
    }
}
/* ---------- Blog / Artikel Card ---------- */
.blog-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  text-decoration: none;
  box-shadow: 0 10px 26px -16px rgba(var(--third-color-rgb), 0.18);
  border: 1px solid rgba(var(--third-color-rgb), 0.08);
  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.28);
  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(--third-color-rgb), 0) 55%,
    rgba(var(--third-color-rgb), 0.55) 100%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}
.blog-card:hover .blog-card__media::after {
  opacity: 1;
}
.blog-card__date {
  position: absolute;
  left: 14px;
  bottom: 12px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--alt-font);
  font-weight: 600;
  font-size: 0.5rem;
  color: #ffffff;
  background: rgba(var(--base-color-rgb), 0.85);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  padding: 6px 12px;
  border-radius: 999px;
}
.blog-card__date i {
  color: #ffffff;
  font-size: 0.5rem;
}
/* --- body --- */
.blog-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 20px 15px 22px;
}
.blog-card__views {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--alt-font);
  font-size: 0.6rem;
  font-weight: 500;
  color: rgba(var(--third-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(--third-color);
  margin-bottom: 10px;
  transition: color 0.25s ease;
  /* batasi 2 baris */
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  min-height: calc(1.4em * 2);
}
.blog-card:hover .blog-card__title {
  color: var(--base-color);
}
.blog-card__desc {
  font-family: var(--alt-font);
  font-size: 0.6rem;
  line-height: 1.65;
  color: rgba(var(--third-color-rgb), 0.65);
  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(--third-color-rgb), 0.1);
}
.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: #ffffff;
}

/* --- 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(--third-color-rgb), 0.1);
}

.article-content__author,
.article-content__date,
.article-content__views {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--alt-font);
  font-weight: 500;
  font-size: 0.6rem;
  color: rgba(var(--third-color-rgb), 0.6);
}

.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(--third-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(--third-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(--third-color-rgb), 0.3);
}

.article-content__img {
  width: 100%;
  height: auto;
  /* max-height: 460px; */
  object-fit: cover;
  display: block;
}

.article-content__caption {
  display: block;
  font-family: var(--alt-font);
  font-style: italic;
  font-size: 0.6rem;
  color: rgba(var(--third-color-rgb), 0.55);
  padding: 10px 4px 0;
  text-align: center;
}

/* --- isi artikel (konten rich text dari CMS) --- */
.article-content__body {
  font-family: var(--alt-font);
  font-size: 0.7rem;
  line-height: 1.85;
  color: rgba(var(--third-color-rgb), 0.85);
}

.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(--third-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(--third-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(--third-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(--third-color-rgb), 0.32);
}

.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(--third-color-rgb), 0.12);
}
.article-content__body table th {
  background: var(--very-light-base-color);
  font-family: var(--primary-font);
  font-weight: 700;
  color: var(--third-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(--third-color-rgb), 0.1);
}

.article-content__share-label {
  font-family: var(--primary-font);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--third-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(--third-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: #ffffff;
  transform: translateY(-3px);
}

/* ============================================================
   SIDEBAR (kolom kanan) — sticky
   ============================================================ */
.article-sidebar {
  position: sticky;
  top: 100px; /* sesuaikan dengan tinggi navbar-mu */
  background: #ffffff;
  border: 1px solid rgba(var(--third-color-rgb), 0.08);
  border-radius: 22px;
  padding: 28px 24px;
  box-shadow: 0 18px 40px -26px rgba(var(--third-color-rgb), 0.24);
}

.article-sidebar__heading {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--primary-font);
  font-weight: 700;
  font-size: 1rem;
  color: var(--third-color);
  margin-bottom: 22px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(var(--third-color-rgb), 0.1);
}

.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: #ffffff;
  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(--third-color);
  margin-bottom: 8px;
  transition: color 0.2s ease;

  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.article-sidebar__item:hover .article-sidebar__item-title {
  color: var(--base-color);
}

.article-sidebar__item-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 12px;
  font-family: var(--alt-font);
  font-size: 0.7rem;
  color: rgba(var(--third-color-rgb), 0.52);
}
.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: #ffffff;
}

.article-sidebar__cta > i {
  font-size: 1rem;
  flex-shrink: 0;
  opacity: 0.9;
}

.article-sidebar__cta > div {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.article-sidebar__cta-title {
  font-family: var(--primary-font);
  font-weight: 700;
  font-size: 0.8rem;
}

.article-sidebar__cta-desc {
  font-family: var(--alt-font);
  font-size: 0.7rem;
  opacity: 0.85;
}

.article-sidebar__cta-btn {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition:
    background 0.2s ease,
    transform 0.2s ease;
}
.article-sidebar__cta-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.06);
}

/* --- responsive: sidebar berhenti sticky di layar kecil --- */
@media (max-width: 991.98px) {
  .article-sidebar {
    position: static;
    margin-top: 8px;
  }
}