@import url("https://fonts.googleapis.com/css2?family=Mochiy+Pop+One&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
:root {
  --base-color: #af0705;
  --base-color-rgb: 175, 7, 5;
  --second-color: #19467a;
  --second-color-rgb: 25, 70, 122;
  --bs-third: #ffffff;
  --bs-third-rgb: 255, 255, 255;
  --bs-primary: #af0705;
  --bs-primary-rgb: 175, 7, 5;
  --primary-font: "Poppins", sans-serif;
  /* --alt-font: "Mochiy Pop One", sans-serif; */
  --alt-font: "Poppins", sans-serif;
}
.bg-gradient-gold {
  background: linear-gradient(
    135deg,
    #0c294b 0%,
    #000000 18%,
    #111111 36%,
    #0c294b 55%,
    #000000 78%,
    #0c294b 100%
  );
}
.bg-hitam {
  background-color: #000000;
}
.text-hitam {
  color: #000000;
}
.primary-font {
  font-family: var(--primary-font) !important;
}

.alt-font {
  font-family: var(--alt-font) !important;
}

.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;
}

/*==========================================================================
* 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);
}

/* =========================================================
   SWITCH BAHASA (ID / JP) - outline base-color, di samping socmed
   ========================================================= */
.lang-switch-wrapper {
  display: inline-flex;
  align-items: center;
  border: 2px solid var(--base-color, #af0705);
  border-radius: 999px;
  overflow: hidden;
  background: transparent;
  flex: 0 0 auto;
}

.lang-btn {
  border: none;
  background: transparent;
  color: var(--base-color, #af0705);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  line-height: 1;
  padding: 6px 14px;
  cursor: pointer;
  transition:
    background-color 0.25s ease,
    color 0.25s ease;
}

.lang-btn + .lang-btn {
  border-left: 2px solid var(--base-color, #af0705);
}

.lang-btn.active {
  background-color: var(--base-color, #af0705);
  color: #fff;
}

.lang-btn:not(.active):hover {
  background-color: rgba(var(--base-color-rgb, 175, 7, 5), 0.1);
}

.lang-btn:focus-visible {
  outline: 2px solid var(--second-color, #19467a);
  outline-offset: 2px;
}

/* Responsif */
@media (max-width: 991.98px) {
  .lang-switch-wrapper {
    margin-top: 2px;
  }
  .lang-btn {
    padding: 5px 12px;
    font-size: 11px;
  }
}

@media (max-width: 375px) {
  .lang-btn {
    padding: 4px 10px;
    font-size: 10px;
  }
}
/* Hide top banner */
.goog-te-banner-frame.skiptranslate {
  display: none !important;
}

/* Prevent body pushed down */
body {
  top: 0 !important;
}

/* Hide Google Translate widget */
.goog-te-gadget,
.goog-te-gadget span,
.goog-logo-link {
  display: none !important;
}

/* Hide popup tooltip */
.goog-te-balloon-frame {
  display: none !important;
}

/* Hide highlighted text */
.goog-text-highlight {
  background: none !important;
  box-shadow: none !important;
}

/* Hide translate iframe */
iframe.skiptranslate {
  display: none !important;
}
/*==========================================================================
* START WA/ APPO BTN / SCROLL TOP
==========================================================================*/
.showhide {
  visibility: hidden;
  opacity: 0;
}

.showhide.show {
  opacity: 1;
  visibility: visible;
}

.flt-btn {
  border-radius: 30px;
  display: flex;
  height: 45px;
  min-width: 45px;
  position: fixed;
  cursor: pointer;
  text-align: center;
  z-index: 100;
  align-items: center;
  justify-content: center;
  transition: all 0.8s;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
}

.appo-btn {
  position: fixed;
  left: 20px;
  bottom: 100px;
  line-height: 40px;
  color: #fff;
  background: var(--base-color);
}

.appo-btn a {
  color: #fff !important;
  display: block;
}

.wa-btn {
  position: fixed;
  left: 20px;
  bottom: 40px;
  line-height: 48px;
  color: #fff;
  background: linear-gradient(to right, #61dc6a 0, #2bc911 100%, #61dc6a 200%);
}

.wa-btn a {
  color: #fff !important;
  height: 100%;
}

.flt-btn span {
  vertical-align: middle;
  font-size: 14px;
  letter-spacing: -15px;
  opacity: 0;
  line-height: 45px;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
}

.flt-btn:hover {
  color: #fff;
  padding: 0 20px;
}

.flt-btn:hover span {
  opacity: 1;
  letter-spacing: 0;
  padding-left: 5px;
}

.wa-btn::after {
  z-index: -1;
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 45px;
  height: 45px;
  animation: ripple 1.6s ease-out infinite;
  opacity: 1;
  background: #4bc75a;
  border-radius: 30px;
  -webkit-animation: ripple 1.6s ease-out infinite;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
}

.appo-btn::after {
  z-index: -1;
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 45px;
  height: 45px;
  animation: ripple 1.7s ease-out infinite;
  opacity: 1;
  background: var(--base-color);
  border-radius: 30px;
  -webkit-animation: ripple 1.7s ease-out infinite;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
}

button.scroll-top:focus {
  outline: none;
}

.scroll-top.open {
  bottom: 40px;
}

.scroll-top {
  width: 45px;
  height: 45px;
  line-height: 45px;
  position: fixed;
  bottom: 105%;
  right: 25px;
  font-size: 16px;
  border-radius: 50%;
  z-index: 99;
  color: #fff;
  text-align: center;
  cursor: pointer;
  background: var(--base-color);
  transition: 1s ease;
  border: none;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.scroll-top span {
  color: #fff;
}

.scroll-top:after {
  position: absolute;
  z-index: -1;
  content: "";
  top: 100%;
  left: 5%;
  height: 10px;
  width: 90%;
  opacity: 1;
  background: radial-gradient(
    ellipse at center,
    rgba(0, 0, 0, 0.25) 0%,
    rgba(0, 0, 0, 0) 80%
  );
  animation: ripple 1.7s ease-out infinite;
  -webkit-animation: ripple 1.7s ease-out infinite;
}

.wa-btn::after {
  z-index: -1;
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 45px;
  height: 45px;
  animation: ripple 1.6s ease-out infinite;
  opacity: 1;
  background: #4bc75a;
  border-radius: 50%;
  -webkit-animation: ripple 1.6s ease-out infinite;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

@keyframes ripple {
  0% {
    transform: scale(0);
    opacity: 1;
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
  }

  100% {
    transform: scale(1.5);
    opacity: 0;
    -webkit-transform: scale(1.5);
    -moz-transform: scale(1.5);
    -ms-transform: scale(1.5);
    -o-transform: scale(1.5);
  }
}
/* END WA/ APPO BTN / SCROLL TOP */

.btn-group-very-sm > .btn,
.btn-very-sm {
  --bs-btn-padding-y: 0.4rem;
  --bs-btn-padding-x: 1rem;
  --bs-btn-font-size: 0.7rem;
  --bs-btn-border-radius: 0.4rem;
}

.btn-group-very-sm > .btn-icon.btn,
.btn-icon.btn-very-sm {
  padding-top: 5px;
  padding-bottom: 5px;
}

.btn-group-very-sm > .btn-icon.btn i,
.btn-icon.btn-very-sm i {
  font-size: 0.8rem;
}

/*==========================================================================
* Navbar
==========================================================================*/
.navbar-nav .nav-link.active,
.navbar-nav .nav-link.show {
  color: var(--second-color);
}

.navbar-nav .nav-link {
  position: relative;
  font-family: var(--alt-font);
}

.navbar-nav .nav-link.active::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 1px;
  background-color: var(--second-color);
}

@media (max-width: 576px) {
  .navbar-nav .nav-link.active::before {
    width: 100%;
    height: 1px;
    background-color: var(--base-color);
    display: none;
  }
}
@media (min-width: 992px) {
  .navbar-expand-lg.navbar-light
    .dropdown:not(.dropdown-submenu)
    > .dropdown-toggle::after {
    color: var(--bs-primary);
  }

  .navbar-expand-lg.navbar-light
    .dropdown:not(.dropdown-submenu)
    > .dropdown-toggle.active::after {
    color: var(--second-color);
  }
}
.nav-link:focus,
.nav-link:hover {
  color: var(--base-color);
}

.navbar-text a,
.navbar-text a:focus,
.navbar-text a:hover {
  color: var(--base-color);
}

@media (max-width: 991.98px) {
  .navbar-expand-lg .navbar-brand {
    padding-top: 10px;
    padding-bottom: 10px;
  }
}

/* Overlay tipis di atas background image agar teks tetap terbaca */
section[style*="background-image"].position-relative::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(255, 255, 255, 0.6);
  z-index: 0;
}

section[style*="background-image"].position-relative > .container {
  z-index: 1;
}

/* Tagline */
.welcome-tagline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--base-color, #af0705);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.welcome-tagline::before {
  content: "";
  display: inline-block;
  width: 30px;
  height: 2px;
  background-color: var(--base-color, #af0705);
}

/* Gambar kolom kanan */
.welcome-tagline + h2 + p + a img,
section img.img-fluid.rounded.shadow {
  /* max-height: 480px; */
  object-fit: cover;
}

@media (max-width: 991.98px) {
  section[style*="background-image"] {
    background-attachment: scroll !important;
  }
}

@media (max-width: 575.98px) {
  .welcome-tagline {
    font-size: 12px;
    letter-spacing: 1px;
  }
  .welcome-tagline::before {
    width: 20px;
  }
}
/* Judul dua warna: merah (base-color) + biru (second-color) */
.title-half-red {
  color: var(--base-color);
}

.title-half-blue {
  color: var(--second-color);
}

/* =========================================================
   SECTION STATISTIK - Background biru + ornamen sakura
   ========================================================= */
.section-statistik {
  isolation: isolate;
}

.statistik-angka {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--base-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.statistik-label {
  color: var(--second-color);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Ornamen sakura - posisi absolut, samar, tidak mengganggu teks */
.sakura-ornament {
  position: absolute;
  z-index: 0;
  opacity: 0.12;
  pointer-events: none;
}

.sakura-ornament svg {
  width: 100%;
  height: 100%;
  display: block;
}

.sakura-top-left {
  top: -30px;
  left: -30px;
  width: 140px;
  height: 140px;
  transform: rotate(-15deg);
}

.sakura-bottom-right {
  bottom: -40px;
  right: -20px;
  width: 180px;
  height: 180px;
  transform: rotate(25deg);
}

.sakura-mid-right {
  top: 20%;
  right: 8%;
  width: 70px;
  height: 70px;
  transform: rotate(45deg);
  opacity: 0.08;
}

.sakura-bottom-left {
  bottom: 10%;
  left: 6%;
  width: 60px;
  height: 60px;
  transform: rotate(10deg);
  opacity: 0.08;
}

/* Aksara kanji dekoratif raksasa di pojok (ciri khas desain Jepang) */
.jp-seal {
  position: absolute;
  top: 50%;
  right: 4%;
  transform: translateY(-50%);
  font-size: 9rem;
  font-weight: 700;
  color: rgba(25, 70, 122, 0.06);
  line-height: 1;
  z-index: 0;
  pointer-events: none;
  align-items: center;
}

/* =========================================================
   RESPONSIF
   ========================================================= */
@media (max-width: 991.98px) {
  .statistik-angka {
    font-size: 2.25rem;
  }
  .sakura-top-left {
    width: 100px;
    height: 100px;
  }
  .sakura-bottom-right {
    width: 130px;
    height: 130px;
  }
}

@media (max-width: 575.98px) {
  .statistik-angka {
    font-size: 1.75rem;
  }
  .statistik-label {
    font-size: 0.8rem;
  }
  .sakura-top-left {
    width: 70px;
    height: 70px;
    top: -15px;
    left: -15px;
  }
  .sakura-bottom-right {
    width: 90px;
    height: 90px;
    bottom: -20px;
    right: -10px;
  }
  .sakura-mid-right,
  .sakura-bottom-left {
    display: none;
  }
}

/* =========================================================
   SECTION KEUNGGULAN
   ========================================================= */

/* Overlay agar teks tetap terbaca di atas background gambar */
.section-keunggulan {
  isolation: isolate;
}

.keunggulan-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(255, 255, 255, 0.9);
  z-index: 0;
}

/* Icon dengan outline lingkaran 2 warna (90° kiri merah, sisanya biru) */
.keunggulan-icon-ring {
  width: 84px;
  height: 84px;
  flex: 0 0 auto;
  border-radius: 50%;
  padding: 5px;
  background: conic-gradient(
    from 225deg,
    var(--base-color, #af0705) 0deg 90deg,
    var(--second-color, #19467a) 90deg 360deg
  );
}

.keunggulan-icon-inner {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.keunggulan-icon {
  width: 50%;
  height: 50%;
  object-fit: contain;
}

/* Item horizontal: teks rata kiri, deskripsi sedikit lebih kecil biar rapi */
.keunggulan-item h5 {
  text-align: left;
}

.keunggulan-item p {
  text-align: left;
  /* font-size: 0.925rem; */
  /* color: rgba(0, 0, 0, 0.65); */
}

/* Garis pembatas kanan — hanya pada kolom kiri tiap baris (dari PHP: $key % 2 == 0) */
.keunggulan-col {
  position: relative;
  padding-right: 2rem;
}

.keunggulan-col::after {
  content: "";
  position: absolute;
  top: 0;
  right: 1rem;
  height: 100%;
  width: 1px;
  background-color: rgba(var(--base-color-rgb, 175, 7, 5), 0.25);
}

/* =========================================================
   RESPONSIF
   ========================================================= */

/* Mobile: hilangkan garis vertikal & padding kanan (stack 1 kolom), icon sedikit lebih kecil */
@media (max-width: 767.98px) {
  .keunggulan-col {
    padding-right: 0.75rem;
  }
  .keunggulan-col::after {
    display: none !important;
  }
  .keunggulan-icon-ring {
    width: 72px;
    height: 72px;
  }
}

/* =========================================================
   SECTION BERANGKAT & PULANG DARI JEPANG
   ========================================================= */
.jepang-col {
  position: relative;
  min-height: 420px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.jepang-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.45);
  z-index: 0;
}

.jepang-content {
  max-width: 420px;
  z-index: 1;
}

/* =========================================================
   RESPONSIF
   ========================================================= */
@media (max-width: 991.98px) {
  .jepang-col {
    min-height: 340px;
  }
}

@media (max-width: 575.98px) {
  .jepang-col {
    min-height: 280px;
  }
  .jepang-content h3 {
    font-size: 1.4rem;
  }
  .jepang-content p {
    font-size: 0.9rem;
  }
}
/* Overlay putih khusus untuk teks deskripsi */
.desc-overlay-white {
  backdrop-filter: blur(4px);
}

/* =========================================================
   SECTION PROGRAM
   ========================================================= */
.section-program {
  position: relative;
  isolation: isolate;
}
/* Overlay: base-color pekat di atas, memudar transparan ke bawah */
/* .program-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(var(--base-color-rgb, 175, 7, 5), 0.9) 35%,
    rgba(var(--base-color-rgb, 175, 7, 5), 0.3) 100%
  );
  z-index: 0;
} */

/* =========================================================
   CARD PROGRAM
   ========================================================= */
.program-card {
  background-color: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.program-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
}

/* Header judul - background base-color */
.program-card-header {
  background-color: var(--second-color, #19467a);
  color: #ffffff;
  font-weight: 700;
  font-size: 0.8rem;
  padding: 16px 20px;
  text-align: center;
  transition: background-color 0.25s ease;
}

.program-card:hover .program-card-header {
  background-color: color-mix(in srgb, var(--base-color, #af0705) 85%, black);
}

.program-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

/* Blok Pendaftaran / Mulai Kelas - 2 lapis: label second-color + isi data */
.program-item {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
}

.program-item-label {
  /* background-color: var(--second-color, #19467a); */
  color: var(--second-color);
  margin-bottom: 10px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  /* padding: 6px 14px; */
}

.program-item-value {
  /* background-color: #f8f9fa; */
  color: #212529;
  font-weight: 600;
  font-size: 12px;
  /* font-size: 0.95rem; */
  /* padding: 10px 14px; */
}

.program-card .btn {
  margin-top: auto;
}

/* =========================================================
   RESPONSIF
   ========================================================= */
@media (max-width: 991.98px) {
  .program-header {
    text-align: center;
  }
  .welcome-tagline {
    justify-content: center;
  }
}

@media (max-width: 575.98px) {
  .program-card-body {
    padding: 20px 18px;
  }
  .program-card-header {
    padding: 14px 16px;
    font-size: 1rem;
  }
}

/* =========================================================
   TAGLINE (dari section sebelumnya, dipertahankan)
   ========================================================= */
.welcome-tagline1 {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--bs-third);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.welcome-tagline1::before {
  content: "";
  display: inline-block;
  width: 30px;
  height: 2px;
  background-color: var(--bs-third);
}

/* =========================================================
   SECTION MITRA
   ========================================================= */
.section-mitra {
  background-color: #ffffff;
  /* color: var(--base-color, #af0705); */
}

/* Ornamen sakura */
.sakura-ornament {
  position: absolute;
  z-index: 0;
  opacity: 0.1;
  pointer-events: none;
}

.sakura-ornament svg {
  width: 100%;
  height: 100%;
  display: block;
}

.sakura-top-left {
  top: -20px;
  left: -20px;
  width: 120px;
  height: 120px;
  transform: rotate(-15deg);
}

.sakura-bottom-right {
  bottom: -30px;
  right: -10px;
  width: 150px;
  height: 150px;
  transform: rotate(20deg);
}

/* Kanji dekoratif raksasa samar */
.jp-seal-mitra {
  position: absolute;
  top: 50%;
  left: 3%;
  transform: translateY(-50%);
  font-size: 8rem;
  font-weight: 700;
  color: rgba(var(--base-color-rgb, 175, 7, 5), 0.05);
  line-height: 1;
  z-index: 0;
  pointer-events: none;
  align-items: center;
}

/* Ornamen gelombang seigaiha di bawah section */
.seigaiha-ornament {
  display: block;
  width: 100%;
  height: 30px;
  color: rgba(var(--second-color-rgb, 25, 70, 122), 0.15);
}

/* =========================================================
   RESPONSIF
   ========================================================= */
@media (max-width: 767.98px) {
  .sakura-top-left {
    width: 80px;
    height: 80px;
  }
  .sakura-bottom-right {
    width: 100px;
    height: 100px;
  }
  .jp-seal-mitra {
    display: none;
  }
}

/* =========================================================
   SECTION TESTIMONI
   ========================================================= */
.section-testimoni {
  background-color: #eaf4fe;
}

/* Card Testimoni */
.testimoni-card {
  background-color: #ffffff;
  border-radius: 16px;
  padding: 32px 28px;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
}

.testimoni-quote-icon {
  position: absolute;
  top: 22px;
  right: 24px;
  font-size: 2.2rem;
  color: rgba(var(--second-color-rgb, 25, 70, 122), 0.15);
}

.testimoni-stars i {
  color: #ffb400;
  font-size: 1.05rem;
  margin-right: 2px;
}

/* Ulasan dibatasi 5 baris */
.testimoni-ulasan {
  /* font-size: 0.95rem; */
  font-style: italic;
  /* color: #444; */
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.testimoni-ulasan-full {
  /* font-size: 1rem; */
  font-style: italic;
  color: #444;
  line-height: 1.7;
}

.testimoni-readmore {
  border: none;
  background: none;
  padding: 0;
  color: var(--base-color, #af0705);
  font-weight: 600;
  /* font-size: 0.85rem; */
  text-decoration: underline;
  align-self: flex-start;
}

.testimoni-readmore:hover {
  color: var(--second-color, #19467a);
}

.testimoni-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--base-color, #af0705);
}

.testimoni-penempatan {
  /* font-size: 0.8rem; */
  color: rgba(0, 0, 0, 0.55);
}

/* Modal Popup */
.testimoni-modal-content {
  border-radius: 16px;
  border: none;
  padding: 12px;
}

/* Panah navigasi custom */
.testimoni-nav-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--base-color, #af0705);
  background-color: transparent;
  color: var(--base-color, #af0705);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition:
    background-color 0.25s ease,
    color 0.25s ease;
}

.testimoni-nav-btn:hover {
  background-color: var(--base-color, #af0705);
  color: #ffffff;
}

/* Swiper: pastikan tiap slide tingginya sama */
.testimoni-swiper .swiper-wrapper {
  align-items: stretch;
}

/* =========================================================
   ORNAMEN SAKURA
   ========================================================= */
.sakura-ornament {
  position: absolute;
  z-index: 0;
  opacity: 0.12;
  pointer-events: none;
  color: var(--base-color, #af0705);
}

.sakura-ornament svg {
  width: 100%;
  height: 100%;
  display: block;
}

.sakura-top-right {
  top: -30px;
  right: -20px;
  width: 150px;
  height: 150px;
  transform: rotate(25deg);
}

.sakura-bottom-left {
  bottom: -30px;
  left: -20px;
  width: 130px;
  height: 130px;
  transform: rotate(-15deg);
}

.sakura-petal {
  position: absolute;
  width: 14px;
  height: 14px;
  background-color: rgba(var(--base-color-rgb, 175, 7, 5), 0.25);
  border-radius: 0 50% 50% 50%;
  z-index: 0;
  pointer-events: none;
}

.petal-1 {
  top: 18%;
  left: 10%;
  transform: rotate(45deg);
}

.petal-2 {
  top: 65%;
  left: 4%;
  width: 10px;
  height: 10px;
  transform: rotate(20deg);
}

.petal-3 {
  top: 35%;
  right: 6%;
  width: 12px;
  height: 12px;
  transform: rotate(-30deg);
}

/* =========================================================
   RESPONSIF
   ========================================================= */
@media (max-width: 991.98px) {
  .testimoni-header {
    text-align: center;
  }
  .welcome-tagline {
    justify-content: center;
  }
}

@media (max-width: 575.98px) {
  .testimoni-card {
    padding: 26px 20px;
  }
  .sakura-top-right,
  .sakura-bottom-left {
    width: 90px;
    height: 90px;
  }
  .sakura-petal {
    display: none;
  }
}

/* =========================================================
   SECTION BERITA
   ========================================================= */
.section-berita {
  background-color: #ffffff;
}

/* Card Berita */
.berita-card-link {
  text-decoration: none;
  display: block;
}

.berita-card {
  background-color: #ffffff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.berita-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.3);
}

.berita-thumb {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
}

.berita-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.berita-card:hover .berita-img {
  transform: scale(1.08);
}

.berita-date-badge {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background-color: var(--base-color, #af0705);
  color: #ffffff;
  /* font-size: 0.75rem; */
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 999px;
}

.berita-body {
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.berita-title {
  color: #1a1a1a;
  /* font-size: 1.05rem; */
  line-height: 1.4;
  transition: color 0.25s ease;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.berita-card:hover .berita-title {
  color: var(--base-color, #af0705);
}

/* Deskripsi maksimal 4 baris */
.berita-desc {
  color: #262b32;
  /* font-size: 0.9rem; */
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}

.berita-footer {
  border-top: 1px solid rgba(0, 0, 0, 0.07);
  padding-top: 14px;
  margin-top: auto;
}

.berita-readmore {
  color: var(--second-color, #19467a);
  font-weight: 600;
  /* font-size: 0.85rem; */
}

.berita-views {
  color: #262b32;
  /* font-size: 0.8rem; */
}

/* =========================================================
   ORNAMEN SAKURA
   ========================================================= */
.sakura-ornament {
  position: absolute;
  z-index: 0;
  opacity: 0.1;
  pointer-events: none;
  color: var(--base-color, #af0705);
}

.sakura-ornament svg {
  width: 100%;
  height: 100%;
  display: block;
}

.sakura-top-left {
  top: -30px;
  left: -30px;
  width: 140px;
  height: 140px;
  transform: rotate(-15deg);
}

.sakura-bottom-right {
  bottom: -40px;
  right: -20px;
  width: 170px;
  height: 170px;
  transform: rotate(20deg);
}

.jp-seal-berita {
  position: absolute;
  top: 8%;
  right: 4%;
  font-size: 8rem;
  font-weight: 700;
  color: rgba(var(--base-color-rgb, 175, 7, 5), 0.05);
  line-height: 1;
  z-index: 0;
  pointer-events: none;
  align-items: center;
}

/* =========================================================
   RESPONSIF
   ========================================================= */
@media (max-width: 575.98px) {
  .berita-body {
    padding: 18px 16px;
  }
  .sakura-top-left {
    width: 90px;
    height: 90px;
  }
  .sakura-bottom-right {
    width: 110px;
    height: 110px;
  }
  .jp-seal-berita {
    display: none;
  }
}
@media (max-width: 1000px) {
  .bg-end {
    background-position: right !important;
  }
}

/* =========================================================
   FOOTER
   ========================================================= */
.footer-lpk {
  background-image: var(--footer-bg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  isolation: isolate;
}

/* Overlay 2 warna: base-color -> merah gelap, arah diagonal */
.footer-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(var(--base-color-rgb, 175, 7, 5), 0.6) 0%,
    rgba(107, 4, 3, 0.96) 100%
  );
  z-index: 0;
}

.footer-lpk .container {
  z-index: 1;
}

.f-link-hover {
  transition:
    color 0.2s ease,
    padding-left 0.2s ease;
}

.f-link-hover:hover {
  color: #ffffff !important;
  padding-left: 4px;
}

/* List sosial media dengan icon + handle */
.footer-social-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-social-list a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 1);
  text-decoration: none;
  /* font-size: 0.9rem; */
  transition:
    color 0.2s ease,
    padding-left 0.2s ease;
}

.footer-social-list a i {
  width: 20px;
  text-align: center;
  color: var(--bs-third);
  font-size: 1rem;
}

.footer-social-list a:hover {
  color: #ffffff;
  padding-left: 4px;
}

.footer-link-hover {
  transition: opacity 0.2s ease;
}

.footer-link-hover:hover {
  opacity: 0.8;
}

/* =========================================================
   RESPONSIF
   ========================================================= */
@media (max-width: 991.98px) {
  .footer-social-list a {
    justify-content: center;
  }
}

/* =========================================================
   FLOATING BUTTONS
   ========================================================= */
.floating-buttons {
  position: fixed;
  left: 20px;
  bottom: 24px;
  z-index: 1050;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}

.fab-item {
  position: relative;
  display: flex;
  align-items: center;
}

.fab-btn {
  position: relative;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #ffffff;
  color: #ffffff;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
  z-index: 1;
}

.fab-btn:hover {
  transform: translateY(-4px) scale(1.06);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.3);
  color: #ffffff;
}

.fab-wa {
  background: linear-gradient(135deg, #25d366, #128c7e);
}

.fab-call {
  background: linear-gradient(135deg, var(--base-color, #af0705), #6b0403);
}

/* Efek pulse cincin di belakang tombol WA */
.fab-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background-color: rgba(37, 211, 102, 0.55);
  animation: fabPulse 2.2s ease-out infinite;
  z-index: -1;
}

@keyframes fabPulse {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }
  100% {
    transform: scale(1.9);
    opacity: 0;
  }
}

/* Tooltip di samping tombol (desktop only) */
.fab-tooltip {
  position: absolute;
  left: 68px;
  background-color: #212529;
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-8px);
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}

.fab-tooltip::after {
  content: "";
  position: absolute;
  top: 50%;
  left: -5px;
  transform: translateY(-50%);
  border-width: 5px 5px 5px 0;
  border-style: solid;
  border-color: transparent #212529 transparent transparent;
}

.fab-item:hover .fab-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

/* =========================================================
   RESPONSIF
   ========================================================= */
@media (max-width: 575.98px) {
  .floating-buttons {
    left: 14px;
    bottom: 16px;
    gap: 10px;
  }
  .fab-btn {
    width: 50px;
    height: 50px;
  }
  .fab-tooltip {
    display: none;
  }
}

/* =========================================================
   PAGE TITLE / BANNER - Tanpa Overlay
   ========================================================= */

/* Judul, breadcrumb, deskripsi tetap terbaca di atas gambar apa pun
   pakai text-shadow, bukan lapisan overlay */
.page-title-no-overlay h4,
.page-title-no-overlay .breadcrumb-item,
.page-title-no-overlay .breadcrumb-item a,
.page-title-no-overlay .page-title-desc {
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.55);
}

.page-title-no-overlay .page-title-desc {
  /* font-size: 0.95rem; */
  line-height: 1.7;
  max-width: 640px;
}

/* =========================================================
   RESPONSIF
   ========================================================= */
@media (max-width: 991.98px) {
  .page-title-no-overlay .page-title-desc {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}

/* =========================================================
   SECTION KONTAK
   ========================================================= */
.section-kontak {
  background-color: #ffffff;
}

.kontak-info-wrapper {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.kontak-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background-color: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 14px;
  padding: 16px 20px;
  text-decoration: none;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.kontak-item:hover {
  transform: translateX(6px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
  border-color: transparent;
}

.kontak-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.15rem;
}

.kontak-icon-1 {
  background: linear-gradient(135deg, var(--base-color, #af0705), #6b0403);
}

.kontak-icon-2 {
  background: linear-gradient(135deg, var(--second-color, #19467a), #0e2c4d);
}

.kontak-text {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.kontak-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
  color: var(--base-color);
}

.kontak-value {
  font-weight: 600;
  color: #1a1a1a;
  word-break: break-word;
}

/* Sosial Media */
.kontak-social {
  margin-top: 10px;
  padding: 18px 20px;
  background-color: #f8f9fa;
  border-radius: 14px;
}

.kontak-social-label {
  font-size: 0.8rem;
  font-weight: 700;
  color: #1a1a1a;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.kontak-social-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-color: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  color: var(--base-color, #af0705);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition:
    background-color 0.25s ease,
    color 0.25s ease,
    transform 0.25s ease;
}

.kontak-social-btn:hover {
  background-color: var(--base-color, #af0705);
  color: #ffffff;
  transform: translateY(-3px);
}

/* Map */
.kontak-map-frame {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
  border: 6px solid #ffffff;
  outline: 1px solid rgba(0, 0, 0, 0.06);
  min-height: 420px;
}

.kontak-map-frame iframe {
  display: block;
}

/* =========================================================
   RESPONSIF
   ========================================================= */
@media (max-width: 991.98px) {
  .kontak-map-frame {
    min-height: 320px;
  }
}

@media (max-width: 575.98px) {
  .kontak-item {
    padding: 14px 16px;
    gap: 12px;
  }
  .kontak-icon {
    width: 42px;
    height: 42px;
    font-size: 1rem;
  }
}
/* ============================================================
   ARTICLE CONTENT (kolom kiri)
   ============================================================ */
.article-content {
  background: var(--bs-third);
}

/* --- meta atas: penulis, tanggal, dilihat --- */
.article-content__meta-top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 22px;
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(var(--second-color-rgb), 0.08);
}

.article-content__author,
.article-content__date,
.article-content__views {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--alt-font);
  font-weight: 500;
  font-size: 0.6rem;
  /* color: rgba(var(--second-color-rgb), 0.58); */
}

.article-content__author i,
.article-content__date i,
.article-content__views i {
  font-size: 0.7rem;
  color: var(--base-color);
}

.article-content__author-role {
  /* font-weight: 600; */
  /* color: var(--second-color); */
}

/* --- judul --- */
.article-content__title {
  font-family: var(--primary-font);
  font-weight: 800;
  font-size: clamp(1rem, 2vw, 2rem);
  line-height: 1.28;
  letter-spacing: -0.01em;
  color: var(--base-color);
  margin-bottom: 28px;
}

/* --- gambar utama --- */
.article-content__media {
  position: relative;
  margin-bottom: 32px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 44px -22px rgba(var(--second-color-rgb), 0.28);
}

.article-content__img {
  width: 100%;
  height: auto;
  /* max-height: 460px; */
  object-fit: cover;
  display: block;
}

.article-content__caption {
  display: block;
  font-family: var(--alt-font);
  font-style: italic;
  font-size: 0.6rem;
  color: rgba(var(--second-color-rgb), 0.55);
  padding: 10px 4px 0;
  text-align: center;
}

/* --- isi artikel (konten rich text dari CMS) --- */
.article-content__body {
  /* font-family: var(--alt-font); */
  /* font-size: 0.7rem; */
  line-height: 1.85;
  /* color: rgba(var(--second-color-rgb), 0.82); */
}

.article-content__body p {
  margin-bottom: 1em;
}

.article-content__body h2,
.article-content__body h3,
.article-content__body h4 {
  font-family: var(--primary-font);
  font-weight: 700;
  color: var(--base-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 blockquote p {
  margin-bottom: 0;
}

.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(--bs-third);
  transform: translateY(-3px);
}

/* ============================================================
   SIDEBAR (kolom kanan) — sticky
   ============================================================ */
.article-sidebar {
  position: sticky;
  top: 100px; /* sesuaikan dengan tinggi navbar-mu */
  background: var(--bs-third);
  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(--bs-third);
  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.7rem;
  line-height: 1.4;
  color: var(--base-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.6rem;
  /* color: rgba(var(--second-color-rgb), 0.5); */
  color: #343f52;
}
.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(--bs-third);
}

.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;
  }
}
/* ---------- 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;
  }
}

/* =========================================================
   SECTION PROGRAM CTA (2 KOLOM)
   ========================================================= */
.program2 {
  isolation: isolate;
}

/* Overlay agar teks tetap terbaca di atas background gambar.
   Hapus blok ini kalau gambar background sudah cukup gelap/kontras. */
.program-cta-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(255, 255, 255, 0.9);
  z-index: 0;
}

.program2 .col-lg-6 {
  position: relative;
  z-index: 1;
}

.program-cta-box {
  background-color: #ffffff;
  border-left: 4px solid var(--base-color, #af0705);
  border-radius: 12px;
  padding: 32px 28px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

/* =========================================================
   RESPONSIF
   ========================================================= */
@media (max-width: 991.98px) {
  .program2 {
    text-align: center;
  }
  .welcome-tagline {
    justify-content: center;
  }
  .program-cta-box {
    border-left: none;
    border-top: 4px solid var(--base-color, #af0705);
    text-align: left;
  }
}

@media (max-width: 575.98px) {
  .program-cta-box {
    padding: 24px 20px;
  }
}
/* @media (min-width: 768px) {
  .position-lg-sticky {
    position: sticky !important;
    top: 0;
    z-index: 1020;
  }
} */

/* =========================================================
   SPLIT SECTION (Gambar + Teks selang-seling)
   ========================================================= */
.split-section-1 {
  background-color: #eaf4fe;
}

.split-section-2 {
  background-color: #ffffff;
}

/* Gambar */
.split-image-wrap {
  position: relative;
}

.split-image {
  border-radius: 18px;
  box-shadow: 0 16px 40px rgba(var(--second-color-rgb, 25, 70, 122), 0.15);
  position: relative;
  z-index: 1;
  width: 100%;
  /* aspect-ratio: 4 / 3; */
  object-fit: cover;
}

/* Aksen kotak dekoratif di belakang gambar */
.split-image-accent {
  position: absolute;
  top: -18px;
  left: -18px;
  width: 100%;
  height: 100%;
  border: 4px solid var(--base-color, #af0705);
  border-radius: 18px;
  z-index: 0;
}

.split-image-accent-alt {
  left: auto;
  right: -18px;
  /* border-color: var(--second-color, #19467a); */
}

/* Judul dekoratif - bold + shadow + outline */
.split-title {
  /* font-size: 2.1rem; */
  font-weight: 900;
  line-height: 1.3;
  text-shadow:
    2px 2px 0 rgba(0, 0, 0, 0.08),
    4px 4px 10px rgba(0, 0, 0, 0.12);
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.4);
  paint-order: stroke fill;
}

.split-title-underline {
  display: inline-block;
  width: 60px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    var(--base-color, #af0705),
    var(--second-color, #19467a)
  );
}

/* Box pembungkus deskripsi */
.split-desc-box {
  background-color: #ffffff;
  border-left: 4px solid var(--base-color, #af0705);
  border-radius: 12px;
  padding: 22px 26px;
  box-shadow: 0 10px 26px rgba(var(--second-color-rgb, 25, 70, 122), 0.1);
}

.split-desc {
  /* font-size: 1.02rem; */
  line-height: 1.85;
  color: rgba(0, 0, 0, 0.65);
}

/* Ornamen Sakura */
.split-ornament {
  position: absolute;
  z-index: 0;
  opacity: 0.1;
  pointer-events: none;
  color: var(--base-color, #af0705);
}

.split-ornament svg {
  width: 100%;
  height: 100%;
  display: block;
}

.split-ornament-tr {
  top: -30px;
  right: -30px;
  width: 150px;
  height: 150px;
  transform: rotate(20deg);
}

.split-ornament-bl {
  bottom: -30px;
  left: -30px;
  width: 130px;
  height: 130px;
  transform: rotate(-15deg);
}

.split-ornament-tl {
  top: -30px;
  left: -30px;
  width: 140px;
  height: 140px;
  transform: rotate(-20deg);
}

.split-ornament-br {
  bottom: -30px;
  right: -30px;
  width: 160px;
  height: 160px;
  transform: rotate(18deg);
}

/* =========================================================
   RESPONSIF
   ========================================================= */
@media (max-width: 991.98px) {
  .split-section .col-lg-6:not(:first-child) {
    text-align: center;
  }
  .welcome-tagline,
  .split-title {
    justify-content: center;
    text-align: center;
  }
  .split-title-underline {
    margin: 0 auto;
    display: block;
  }
  .split-image-accent {
    display: none;
  }
}

@media (max-width: 575.98px) {
  .split-desc-box {
    padding: 18px 20px;
    border-left: none;
    border-top: 4px solid var(--base-color, #af0705);
  }
  .split-ornament {
    width: 90px !important;
    height: 90px !important;
  }
}
