/* =========================
   LIA DEPOK - STYLE.CSS
   (No JS, HTML + CSS + Bootstrap)
   Struktur:
   - DESKTOP / BASE (atas)
   - RESPONSIVE (bawah)
========================= */

/* =========================================================
   0) ROOT VARIABLES (DESKTOP/BASE)
========================================================= */
:root{
  --homeBg: #f5f5fa;
  --ink: #182840;
  --muted: #6b7280;
  --accent: #f09030;
  --wa: #4d9c4b;
  --navH: 110px;

  --dot: rgba(194, 198, 215, .65);
  --dotSoft: rgba(214, 216, 232, .90);
  --cardBg: #f3f4f6;

  --galBg: #fbfbfe;

  --testiLink: #6b6df0;
  --testiShadow: 0 22px 44px rgba(24,40,64,.10);
  --testiInk: rgba(24, 40, 64, .92);
  --testiMuted: rgba(24, 40, 64, .62);
  --testiLine: rgba(24, 40, 64, .14);
  --testiLineDark: #122a4a;

  --successCardW: 257.09px;
  --successCardH: 344px;
}

/* =========================================================
   1) RESET + GLOBAL (DESKTOP/BASE)
========================================================= */
*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }

body{
  margin: 0;
  font-family: "Montserrat", sans-serif;
  background: #ffffff;
  color: var(--ink);
  overflow-x: hidden;
  padding-top: var(--navH);
}

section{ scroll-margin-top: calc(var(--navH) + 10px); }

/* =========================================================
   2) NAVBAR (DESKTOP/BASE)
========================================================= */
.brand-logo{ height: 85px; width: auto; }

.navbar{
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1050;
  width: 100%;
  background: rgba(245,245,250,.92);
  backdrop-filter: blur(8px);
  box-shadow: 0 10px 24px rgba(0,0,0,.06);
}

.nav-toggle-btn{
  border: 0;
  background: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  text-decoration: none;
}
.nav-toggle-btn:focus{ outline: none; box-shadow: none; }

.nav-toggle-icon{
  width: 1.6em;
  height: 1.6em;
  display: inline-block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(24, 40, 64, 0.85)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M3 7h24M3 15h24M3 23h24'/%3e%3c/svg%3e");
}

/* Link style + "tanda" (indicator) */
.navbar .nav-link{
  font-family: "Montserrat", sans-serif;
  color: rgba(24, 40, 64, .70);
  font-weight: 600;
  padding: .55rem .7rem;
  border-radius: 999px;
  position: relative;
  transition: color .18s ease, background-color .18s ease;
}

/* underline indicator (default hidden) */
.navbar .nav-link::after{
  content:"";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 6px;
  height: 3px;
  border-radius: 999px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .18s ease;
  opacity: .95;
}

/* hover */
.navbar .nav-link:hover{
  color: rgba(24, 40, 64, 1);
  background: rgba(240,144,48,.10);
}
.navbar .nav-link:hover::after{ transform: scaleX(1); }

/* fallback kalau pakai class .active / .is-active */
.navbar .nav-link.active,
.navbar .nav-link.is-active{
  color: rgba(24, 40, 64, 1);
  font-weight: 800;
  background: rgba(240,144,48,.14);
}
.navbar .nav-link.active::after,
.navbar .nav-link.is-active::after{
  transform: scaleX(1);
}

/* =========================================================
   AUTO ACTIVE (CSS ONLY) - FIX "NYANGKUT HOME"
   Pastikan href="#about" cocok dengan <section id="about">
========================================================= */
@supports selector(body:has(:target)){

  /* 1) Kalau sedang target section lain, paksa HOME kembali normal
        (meskipun Home masih punya class .active di HTML) */
  body:has(#about:target) .navbar .nav-link[href="#home"],
  body:has(#program:target) .navbar .nav-link[href="#home"],
  body:has(#metode:target) .navbar .nav-link[href="#home"],
  body:has(#pendaftaran:target) .navbar .nav-link[href="#home"],
  body:has(#galery:target) .navbar .nav-link[href="#home"],
  body:has(#testi:target) .navbar .nav-link[href="#home"],
  body:has(#konsul:target) .navbar .nav-link[href="#home"]{
    color: rgba(24, 40, 64, .70);
    font-weight: 600;
    background: transparent;
  }
  body:has(#about:target) .navbar .nav-link[href="#home"]::after,
  body:has(#program:target) .navbar .nav-link[href="#home"]::after,
  body:has(#metode:target) .navbar .nav-link[href="#home"]::after,
  body:has(#pendaftaran:target) .navbar .nav-link[href="#home"]::after,
  body:has(#galery:target) .navbar .nav-link[href="#home"]::after,
  body:has(#testi:target) .navbar .nav-link[href="#home"]::after,
  body:has(#konsul:target) .navbar .nav-link[href="#home"]::after{
    transform: scaleX(0);
  }

  /* 2) Default aktif = HOME kalau belum ada target */
  body:not(:has(:target)) .navbar .nav-link[href="#home"]{
    color: rgba(24, 40, 64, 1);
    font-weight: 800;
    background: rgba(240,144,48,.14);
  }
  body:not(:has(:target)) .navbar .nav-link[href="#home"]::after{
    transform: scaleX(1);
  }

  /* 3) Aktif sesuai target */
  body:has(#home:target) .navbar .nav-link[href="#home"],
  body:has(#about:target) .navbar .nav-link[href="#about"],
  body:has(#program:target) .navbar .nav-link[href="#program"],
  body:has(#metode:target) .navbar .nav-link[href="#metode"],
  body:has(#pendaftaran:target) .navbar .nav-link[href="#pendaftaran"],
  body:has(#galery:target) .navbar .nav-link[href="#galery"],
  body:has(#testi:target) .navbar .nav-link[href="#testi"],
  body:has(#konsul:target) .navbar .nav-link[href="#konsul"]{
    color: rgba(24, 40, 64, 1);
    font-weight: 800;
    background: rgba(240,144,48,.14);
  }

  body:has(#home:target) .navbar .nav-link[href="#home"]::after,
  body:has(#about:target) .navbar .nav-link[href="#about"]::after,
  body:has(#program:target) .navbar .nav-link[href="#program"]::after,
  body:has(#metode:target) .navbar .nav-link[href="#metode"]::after,
  body:has(#pendaftaran:target) .navbar .nav-link[href="#pendaftaran"]::after,
  body:has(#galery:target) .navbar .nav-link[href="#galery"]::after,
  body:has(#testi:target) .navbar .nav-link[href="#testi"]::after,
  body:has(#konsul:target) .navbar .nav-link[href="#konsul"]::after{
    transform: scaleX(1);
  }
}

.nav-spacer{ width: 54px; }

/* =========================================================
   MENU WITHOUT JS (:target)
========================================================= */
.nav-panel{
  display: flex;
  align-items: center;
}
.menu-backdrop{ display: none; }
.nav-close-link{ color: var(--ink); }

/* =========================================================
   DESKTOP SHIFT (>= 992px)
========================================================= */
@media (min-width: 992px){
  .navbar .navbar-nav{ transform: translateX(240px); }
}

/* =========================================================
   HERO - BOOTSTRAP CAROUSEL (AUTO + OVERLAY)
   ✅ Mobile: FULL (tanpa celah atas/bawah) -> pakai COVER
   ✅ Mobile center + aman panah
   ✅ Desktop tetap tinggi & lega
   ❌ Zoom in/out saat pindah slide: DIHILANGKAN
   ✅ HILANGKAN background hitam + shadow gelap (overlay/teks/dots/arrow/button)
========================================================= */

.hero-wrap{
  position: relative;
  background: var(--homeBg, #f5f5fa);
  overflow: hidden;

  /* Desktop default */
  --heroH: 720px;

  --heroInk: #1f3552;
  --heroAccent: #f09030;

  /* zona aman kiri/kanan agar konten tidak ketabrak control */
  --ctrlSafe: 0px;

  /* ✅ kontrol crop di MOBILE (boleh kamu ubah kalau perlu) */
  --mobileZoom: 1.12;   /* masih dipakai untuk FULL cover mobile */
  --mobilePosY: 42%;    /* 0% atas, 50% tengah, 100% bawah */
}

/* tinggi hero mengikuti carousel */
.hero-wrap .carousel,
.hero-wrap .carousel-inner,
.hero-wrap .carousel-item{
  height: var(--heroH);
}

/* Desktop sangat besar */
@media (min-width: 1400px){
  .hero-wrap{ --heroH: 820px; }
}

/* Tablet */
@media (max-width: 991.98px){
  .hero-wrap{ --heroH: 640px; }
}

/* =========================================================
   ✅ MOBILE: HERO IKUT UKURAN BANNER + FULL TANPA CELAH
========================================================= */
@media (max-width: 767.98px){
  .hero-wrap{
    /* rasio tinggi/lebar hero di mobile (biar proporsional) */
    --bannerHW: 1.25;

    --heroH: min(
      calc(100vw * var(--bannerHW)),
      calc(100svh - var(--navH, 0px) - 10px)
    );

    --ctrlSafe: clamp(52px, 10vw, 80px);
  }

  .hero-wrap .carousel-caption{
    padding-top: calc(6px + env(safe-area-inset-top, 0px));
    padding-bottom: calc(10px + env(safe-area-inset-bottom, 0px));
  }
}

/* mobile kecil */
@media (max-width: 576px){
  .hero-wrap{ --ctrlSafe: clamp(50px, 11vw, 78px); }
  .hero-wrap .carousel-caption{
    padding-top: calc(6px + env(safe-area-inset-top, 0px));
    padding-bottom: calc(8px + env(safe-area-inset-bottom, 0px));
  }
}

/* =========================================================
   ITEM
========================================================= */
.hero-wrap .carousel-item{
  position: relative;
  overflow: hidden;
}

/* =========================================================
   IMAGE ( NO ZOOM ANIMATION)
========================================================= */
.hero-wrap .hero-img{
  width: 100%;
  height: 100%;
  display: block;

  object-fit: cover;
  object-position: center;

  /* ✅ kalau kamu mau warna asli (tanpa gelap), ganti jadi: filter: none; */
  filter: saturate(.98) contrast(.98) brightness(.98);

  /* ❌ hilangkan zoom default */
  transform: none !important;

  /* ✅ tetap boleh fade halus (tanpa scale) */
  opacity: 1;
  transition: opacity 0.9s ease;
  will-change: opacity;
}

/* ✅ MOBILE: FULL TANPA CELAH (COVER + ZOOM statis) */
@media (max-width: 767.98px){
  .hero-wrap .hero-img{
    object-fit: cover !important;
    object-position: 50% var(--mobilePosY) !important;

    /* ✅ di mobile masih boleh zoom statis untuk full cover,
       tapi TIDAK berubah-ubah saat slide */
    transform: scale(var(--mobileZoom)) !important;

    background: none !important;
  }

  /* background hanya untuk jaga-jaga pas image loading (hilangin hitam) */
  .hero-wrap .carousel-item{
    background: transparent;
  }
}

/* =========================================================
   OVERLAY
   ❌ HILANGKAN overlay gradient/radial hitam
========================================================= */
.hero-wrap .carousel-item::before,
.hero-wrap .carousel-item::after{
  content: none !important;
  display: none !important;
}

/* =========================================================
   CAPTION BASE
========================================================= */
.hero-wrap .carousel-caption{
  position:absolute;
  inset: 0;
  z-index: 2;

  display:flex;
  align-items:center;
  justify-content:flex-start;

  text-align: left !important;
  padding: 0;
  pointer-events:none;
}

/* safe zone kiri/kanan untuk konten caption */
.hero-wrap .carousel-caption .container{
  padding-left: calc(12px + var(--ctrlSafe));
  padding-right: calc(12px + var(--ctrlSafe));
}

/* row rapi */
.hero-wrap .hero-row{
  min-height: var(--heroH);
  align-items: center;
}

/* konten kiri (desktop) */
.hero-wrap .hero-content{
  pointer-events:auto;
  max-width: 720px;

  text-align: left !important;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.hero-wrap .hero-content *{ text-align: left !important; }

/* =========================================================
   MOBILE: CENTER semua konten
========================================================= */
@media (max-width: 767.98px){
  .hero-wrap .carousel-caption{ justify-content: center; }
  .hero-wrap .hero-row{ justify-content: center; }

  .hero-wrap .hero-content{
    width: 100%;
    max-width: 520px;
    margin: 0 auto;
    align-items: center;
    text-align: center !important;
  }
  .hero-wrap .hero-content *{ text-align: center !important; }

  .hero-wrap .hero-desc{
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-wrap .btn-cta{ align-self: center; }
}

/* =========================================================
   TITLE
   ❌ hilangkan shadow hitam
========================================================= */
.hero-wrap .hero-title{
  margin: 0 0 14px;
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  letter-spacing: -1.6px;
  line-height: 1.2;
  color: #f09132;

  /* ❌ no shadow hitam */
  text-shadow: none;

  font-size: 60px;
}
@media (max-width: 991.98px){
  .hero-wrap .hero-title{ font-size: clamp(38px, 7.6vw, 64px); }
}
@media (max-width: 576px){
  .hero-wrap .hero-title{ font-size: clamp(32px, 9vw, 48px); }
}

/* =========================================================
   DESC (aman untuk HTML dari DB)
   ❌ hilangkan shadow hitam
========================================================= */
.hero-wrap .hero-desc{
  margin: 0 0 16px;
  max-width: 640px;

  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  line-height: 1.75;
  font-weight: 600;

  /* kalau overlay hilang dan gambar terang, ini biasanya tetap kebaca */
  color: rgba(255,255,255,.92);

  /* ❌ no shadow hitam */
  text-shadow: none;

  white-space: normal;
  word-break: normal;
  overflow-wrap: anywhere;
}
.hero-wrap .hero-desc *{
  font-family: "Montserrat", sans-serif !important;
  font-size: 18px !important;
  line-height: 1.75 !important;
  font-weight: 600 !important;

  color: rgba(255,255,255,.92) !important;

  /* ❌ no shadow hitam */
  text-shadow: none !important;

  margin: 0 !important;
  padding: 0 !important;
}
.hero-wrap .hero-desc p,
.hero-wrap .hero-desc div{ margin: 0 0 8px !important; }
.hero-wrap .hero-desc p:last-child,
.hero-wrap .hero-desc div:last-child{ margin-bottom: 0 !important; }

/* =========================================================
   BUTTON
   ❌ hilangkan shadow hitam di tombol
========================================================= */
.hero-wrap .btn-cta{
  display:inline-flex;
  align-items:center;
  justify-content:center;

  border: 0;
  padding: 15px 32px;
  border-radius: 16px;
  font-weight: 900;
  font-size: 18px;
  line-height: 1;
  color: #fff;
  text-decoration: none;

  background: linear-gradient(180deg, #f6a23a 0%, #f09030 100%);

  /* ❌ remove all dark shadows */
  box-shadow: none;

  transition: transform .15s ease, filter .15s ease;
}
.hero-wrap .btn-cta:hover{
  transform: translateY(-1px);
  filter: brightness(.98);
}
@media (max-width: 991.98px){
  .hero-wrap .btn-cta{
    padding: 11px 20px;
    font-size: 14px;
    border-radius: 14px;
  }
}
@media (max-width: 576px){
  .hero-wrap .btn-cta{
    padding: 10px 16px;
    font-size: 13.5px;
    border-radius: 13px;
  }
}

/* =========================================================
   DOTS
   ❌ hilangkan shadow hitam
========================================================= */
.hero-wrap .carousel-indicators{
  z-index: 3;
  margin: 0;

  left: 50% !important;
  right: auto !important;
  bottom: 10px !important;
  transform: translateX(-50%);

  width: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 9px;
  padding: 0;
}
.hero-wrap .carousel-indicators [data-bs-target]{
  width: 11px;
  height: 11px;
  border-radius: 999px;
  border: 0;
  opacity: 1;
  margin: 0;

  background: rgba(255,255,255,.55);

  /* ❌ remove shadow gelap */
  box-shadow: none;
}
.hero-wrap .carousel-indicators .active{
  background: rgba(255,255,255,.98);
  transform: scale(1.12);
}

/* =========================================================
   ARROWS
   ❌ hilangkan background hitam + shadow hitam
========================================================= */
.hero-wrap .carousel-control-prev,
.hero-wrap .carousel-control-next{
  z-index: 3;
  width: 64px;
  opacity: 1;
}
.hero-wrap .carousel-control-prev-icon,
.hero-wrap .carousel-control-next-icon{
  width: 46px;
  height: 46px;
  border-radius: 999px;

  background-size: 16px 16px;
  background-position: center;
  background-repeat: no-repeat;

  /* ❌ no dark bg */
  background-color: rgba(255,255,255,.28);

  /* boleh tipis aja biar kelihatan, tapi bukan "hitam" */
  border: 1px solid rgba(255,255,255,.55);

  /* blur boleh, bukan shadow */
  backdrop-filter: blur(6px);

  /* ❌ remove shadow gelap */
  box-shadow: none;
}
@media (max-width: 767.98px){
  .hero-wrap .carousel-control-prev,
  .hero-wrap .carousel-control-next{ width: 54px; }
  .hero-wrap .carousel-control-prev-icon,
  .hero-wrap .carousel-control-next-icon{
    width: 38px;
    height: 38px;
  }
}
.hero-wrap .carousel-control-prev:hover .carousel-control-prev-icon,
.hero-wrap .carousel-control-next:hover .carousel-control-next-icon{
  background-color: rgba(255,255,255,.36);
}

/* =========================================================
   ANIMASI (TEKS SAJA - tetap halus)
   ❌ Zoom gambar dihapus total
========================================================= */
.hero-wrap .carousel-item .hero-content{
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .75s ease, transform .85s ease;
}
.hero-wrap .carousel-item.active .hero-content{
  opacity: 1;
  transform: translateY(0);
}

/* reduce motion */
@media (prefers-reduced-motion: reduce){
  .hero-wrap .hero-img,
  .hero-wrap .hero-content{ transition: none !important; }
}

/* ---------------------------------------------------------
   MOBILE NAV ONLY (<= 575.98px)
--------------------------------------------------------- */
@media (max-width: 575.98px){
  :root{ --navH: 88px; }
  body{ padding-top: var(--navH); }

  .navbar{
    background: transparent;
    backdrop-filter: none;
    box-shadow: none;
  }

  .brand-logo{ height: 60px; }
}





/* =========================================================
   4) ABOUT V1 (DESKTOP/BASE)
========================================================= */
.about-wrap{
  padding: 70px 0 60px;
  background: #ffffff;
}

.about-eyebrow{
  text-align: center;
  color: var(--accent);
  font-weight: 700;
  letter-spacing: .8px;
  margin-bottom: 10px;
  font-size: 24px;
}

.about-title{
  text-align: center;
  font-weight: 700;
  font-size: 40px;
  line-height: 1.05;
  margin: 0 0 46px;
}

.about-card{
  background: #fff;
  border-radius: 28px;
  box-shadow: 0 20px 40px rgba(24,40,64,.08);
  padding: 22px 22px 26px;
  height: 100%;
}

.about-img{
  border-radius: 22px;
  overflow: hidden;
  background: #f3f4f6;
  margin-bottom: 18px;
}

.about-img img{
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
}

.about-card h3{
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 22px;
  line-height: 1.2;
  margin: 8px auto 12px;
  width: min(387px, 100%);
  text-align: center;
  color: rgba(24, 40, 64, .92);
}

.about-card p{
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.7;
  width: min(323px, 100%);
  margin: 0 auto;
  color: rgba(24, 40, 64, .70);

  text-align: justify;
  text-justify: inter-word;
  text-align-last: left;

  word-spacing: normal;
  letter-spacing: 0;

  hyphens: auto;
  -webkit-hyphens: auto;
  overflow-wrap: break-word;
}

.about-dots{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 34px;
}

.about-dots span{
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: rgba(107,114,128,.25);
}

.about-dots span.active{
  width: 22px;
  height: 22px;
  background: rgba(107,114,128,.35);
}

.about-wrap {
  padding: 80px 0;
  background: #f9fafb;
}

.about-header {
  text-align: center;
  margin-bottom: 60px;
}

.about-subtitle {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #f09030;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin: 0 0 12px;
}

.about-title {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 42px;
  color: #1a1a1a;
  margin: 0;
  letter-spacing: -0.5px;
}

.about-row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
  gap: 0;
}

.about-col {
  padding: 0 15px;
  margin-bottom: 30px;
}

.about-card {
  background: #ffffff;
  border-radius: 28px;
  padding: 24px 24px 32px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.about-img {
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 24px;
  background: #e5e7eb;
}

.about-img img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}

.about-card h3 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 26px;
  color: #1a1a1a;
  margin: 0 0 16px;
  line-height: 1.3;
  text-align: center;
}

.about-card p {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 15.5px;
  color: rgba(24, 40, 64, 0.62);
  line-height: 1.7;
  margin: 0;
  text-align: justify;
}

.about-dots {
  display: none;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
}

.about-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #d1d5db;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.about-dot.active {
  width: 32px;
  border-radius: 5px;
  background: #f09030;
}

.about-dot:hover {
  background: #f09030;
  opacity: 0.7;
}

/* =========================================================
   5) PROGRAM (GRID DESKTOP + CAROUSEL MOBILE + DOTS IKUT)
========================================================= */

.program-wrap{
  padding: 80px 0;
  background: #ffffff;
}

.program-header{
  text-align: center;
  margin-bottom: 34px;
}

.program-title{
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  letter-spacing: .06em;
  margin: 0;
  font-size: 40px;
  color: rgba(24, 40, 64, .92);
}



/* =========================================================
   CARD
========================================================= */
.program-card{
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  height: 520px;
  background: #111;
  box-shadow: 0 22px 44px rgba(24,40,64,.12);
}

.program-img{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
}

.program-overlay{
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to bottom, rgba(0,0,0,.25), rgba(0,0,0,.55));
}

.program-content{
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 36px 26px;
  text-align: center;
  color: #fff;
}

.program-name{
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  line-height: 1.05;
  margin: 0 0 14px;
  text-shadow: 0 10px 22px rgba(0,0,0,.35);
  font-size: 34px;
}

.program-sub{
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  opacity: .95;
  margin-bottom: 24px;
  font-size: 18px;
}

.program-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  padding: 0 26px;
  border-radius: 14px;
  border: 2px solid rgba(255,255,255,.85);
  color: #fff;
  text-decoration: none;
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  letter-spacing: .06em;
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(2px);
}
.program-btn:hover{ color:#fff; background: rgba(255,255,255,.12); }

/* =========================================================
   MOBILE CAROUSEL WRAP
========================================================= */
.program-carousel{
  position: relative;
}

/* padding kiri/kanan biar card enak */
.program-slide{
  padding: 0 16px;
}

/* =========================================================
   DOTS (BOOTSTRAP INDICATORS) - DI BAWAH CARD
========================================================= */
.program-wrap .carousel-indicators{
  position: static;              /* ✅ supaya turun ke bawah */
  margin: 18px 0 0;
  padding: 0;

  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
}

.program-wrap .carousel-indicators [data-bs-target]{
  width: 14px;
  height: 14px;
  border-radius: 999px;
  border: 0;
  margin: 0;
  opacity: 1;

  background: rgba(0,0,0,.18);
  transition: width .22s ease, background-color .22s ease;
}

.program-wrap .carousel-indicators .active{
  width: 46px;
  background: rgba(0,0,0,.30);
}

/* =========================================================
   ARROWS (MOBILE) - CLICKABLE & AMAN
    tombol benar-benar bisa diklik (pointer-events on)
========================================================= */
.program-wrap .carousel-control-prev,
.program-wrap .carousel-control-next{
  z-index: 5;
  width: 58px;
  opacity: 1;
  pointer-events: auto;
}

.program-wrap .carousel-control-prev{
  left: 6px;
}
.program-wrap .carousel-control-next{
  right: 6px;
}

/* bikin icon bulat, jelas, dan mudah disentuh */
.program-wrap .carousel-control-prev-icon,
.program-wrap .carousel-control-next-icon{
  width: 40px;
  height: 40px;
  border-radius: 999px;

  background-size: 16px 16px;
  background-position: center;
  background-repeat: no-repeat;

  background-color: rgba(0,0,0,.30);
  border: 1px solid rgba(255,255,255,.22);
  backdrop-filter: blur(6px);
  box-shadow: 0 10px 24px rgba(0,0,0,.18);
}

/* hover/active */
.program-wrap .carousel-control-prev:hover .carousel-control-prev-icon,
.program-wrap .carousel-control-next:hover .carousel-control-next-icon{
  background-color: rgba(0,0,0,.40);
}

/* =========================================================
   RESPONSIVE
========================================================= */
@media (max-width: 991.98px){
  .program-wrap{ padding: 70px 0; }
  .program-title{ font-size: 34px; }

  .program-card{ height: 420px; border-radius: 28px; }
  .program-name{ font-size: 30px; }
  .program-sub{ font-size: 16px; }

  .program-wrap .carousel-indicators{ margin-top: 14px; gap: 10px; }
  .program-wrap .carousel-indicators [data-bs-target]{ width: 12px; height: 12px; }
  .program-wrap .carousel-indicators .active{ width: 40px; }
}

@media (max-width: 575.98px){
  .program-wrap{ padding: 64px 0; }
  .program-title{ font-size: 32px; }

  .program-card{ height: 520px; border-radius: 36px; }
  .program-content{ padding: 28px 20px; }

  .program-name{ font-size: 38px; margin-bottom: 12px; }
  .program-sub{ font-size: 18px; margin-bottom: 26px; }

  .program-btn{
    height: 54px;
    padding: 0 28px;
    border-radius: 16px;
    font-size: 14px;
  }

  /* dots lebih rapat */
  .program-wrap .carousel-indicators{ margin-top: 12px; gap: 10px; }
  .program-wrap .carousel-indicators [data-bs-target]{ width: 12px; height: 12px; }
  .program-wrap .carousel-indicators .active{ width: 36px; }

  /* arrow sedikit lebih kecil & tetap mudah diklik */
  .program-wrap .carousel-control-prev,
  .program-wrap .carousel-control-next{
    width: 54px;
  }
  .program-wrap .carousel-control-prev-icon,
  .program-wrap .carousel-control-next-icon{
    width: 38px;
    height: 38px;
  }
}

@media (max-width: 374.98px){
  .program-card{ height: 500px; }
  .program-name{ font-size: 34px; }
}





/* =========================================================
   6) METODE (DESKTOP/BASE)
========================================================= */
.metode-wrap{
  padding: 92px 0;
  background: #ffffff;
}

.metode-wrap .metode-row{
  align-items: flex-start;
  --bs-gutter-x: 5rem;
}

.metode-left{
  padding-right: 28px;
  text-align: left;
}

.metode-eyebrow{
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: .9px;
  font-size: 24px;
  margin-bottom: 10px;
  text-align: left;
}

.metode-title{
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  letter-spacing: -0.8px;
  line-height: 1.06;
  margin: 0;
  font-size: 40px;
  color: rgba(24, 40, 64, .92);
  text-align: left;
}

.metode-dotrow{
  display: flex;
  align-items: center;
  gap: 34px;
  margin: 22px 0 28px;
  justify-content: flex-start;
}
.metode-dotrow span{
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: var(--dot);
}

.metode-desc{
  font-family: "Montserrat", sans-serif;
  color: rgba(24, 40, 64, .70);
  font-size: 16px;
  line-height: 1.85;
  max-width: 640px;
  margin: 0;
  font-weight: 400;

  text-align: justify;
  text-justify: auto;
}

.metode-media{
  position: relative;
  display: flex;
  justify-content: flex-end;
  padding-top: 6px;
  padding-left: 26px;
}

.metode-photo-wrap{
  position: relative;
  z-index: 1;
  width: min(720px, 100%);
  height: auto;
  overflow: visible;
  background: transparent;
}

.metode-photo{
  width: 100%;
  height: auto;
  display: block;
}

/* =========================================================
   ICON OVERLAY -> LABEL (NO JS)
========================================================= */
.metode-icon-btn{
  position: absolute;
  left: -94px;
  top: 50%;
  transform: translateY(-50%);
  width: 192px;
  height: 192px;
  z-index: 2;

  background: transparent;
  cursor: pointer;
  display: block;

  filter: drop-shadow(0 14px 22px rgba(0,0,0,.16));
  -webkit-tap-highlight-color: transparent;
}

.metode-icon-btn:active{
  transform: translateY(-50%) scale(.98);
}

.metode-icon{
  width: 100%;
  height: 100%;
  display: block;
  pointer-events: none;
}

/* =========================================================
   POPUP VIDEO (NO JS) - CHECKBOX TRIGGER (FULL RESPONSIVE)
========================================================= */
.vid-toggle{
  position: fixed;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
  left: -9999px;
  top: -9999px;
}

/* modal wrapper */
.vid-modal{
  position: fixed;
  inset: 0;
  z-index: 9999;

  /* default hidden */
  display: none;

  /* center box */
  align-items: center;
  justify-content: center;

  /* safe padding (notch friendly) */
  padding: 22px;
  padding-top: calc(22px + env(safe-area-inset-top, 0px));
  padding-bottom: calc(22px + env(safe-area-inset-bottom, 0px));
  padding-left: calc(22px + env(safe-area-inset-left, 0px));
  padding-right: calc(22px + env(safe-area-inset-right, 0px));

  box-sizing: border-box;
}

/* show modal */
.vid-toggle:checked ~ .vid-modal{
  display: flex;
}

/* overlay */
.vid-overlay{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.65);
  cursor: pointer;
}

/* video box */
.vid-box{
  position: relative;
  width: min(1120px, 100%);
  aspect-ratio: 16 / 9;              /* ✅ rapi kotak video */
  background: #000;
  border: 12px solid #fff;
  border-radius: 14px;
  overflow: hidden;                  /*  biar iframe gak keluar */
  box-shadow: 0 22px 60px rgba(0,0,0,.55);

  /* jaga supaya gak kepanjangan di layar pendek */
  max-height: calc(100svh - 140px);
}

/* inner (absolute full) */
.vid-inner{
  position: absolute;
  inset: 0;
}

/* ✅ paksa iframe full 100% */
.vid-inner iframe,
.vid-player,
.embed-responsive-item{
  position: absolute;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
  border: 0;
  display: block;
  background: #000;
}

/* close button - DI DALAM BOX biar gak kepotong */
.vid-close{
  position: absolute;
  top: 12px;
  right: 12px;

  width: 46px;
  height: 46px;
  border-radius: 999px;

  background: rgba(17,17,17,.92);
  border: 2px solid rgba(255,255,255,.95);
  cursor: pointer;

  box-shadow: 0 10px 22px rgba(0,0,0,.35);
  -webkit-tap-highlight-color: transparent;

  z-index: 5;
}

.vid-close::before,
.vid-close::after{
  content:"";
  position:absolute;
  left: 50%;
  top: 50%;
  width: 20px;
  height: 3px;
  background:#fff;
  border-radius: 4px;
  transform-origin: center;
}
.vid-close::before{ transform: translate(-50%,-50%) rotate(45deg); }
.vid-close::after { transform: translate(-50%,-50%) rotate(-45deg); }

/* =========================================================
   MOBILE TUNING
========================================================= */
@media (max-width: 575.98px){
  .vid-modal{
    padding: 14px;
    padding-top: calc(14px + env(safe-area-inset-top, 0px));
    padding-bottom: calc(14px + env(safe-area-inset-bottom, 0px));
    padding-left: calc(14px + env(safe-area-inset-left, 0px));
    padding-right: calc(14px + env(safe-area-inset-right, 0px));
  }

  .vid-box{
    width: 100%;
    border-width: 8px;
    border-radius: 12px;

    /* layar pendek tetap nyaman */
    max-height: calc(100svh - 120px);
  }

  .vid-close{
    top: 10px;
    right: 10px;
    width: 42px;
    height: 42px;
  }

  .vid-close::before,
  .vid-close::after{
    width: 18px;
  }
}


/* =========================================================
   RESPONSIVE (OPSIONAL)
========================================================= */
@media (max-width: 575.98px){
  .metode-wrap{ padding: 64px 0; }

  /*  rapihin posisi & area klik icon-1 di mobile */
  .metode-media{
    padding-left: 0;              /* biar frame gak ketarik” */
    justify-content: center;      /* biar foto center */
  }

  /*  anchor supaya icon center tepat ke foto */
  .metode-photo-wrap{
    position: relative;           /* ✅ tetap */
  }

  /* ✅ ICON: TENGAH + UKURAN TETAP 76px */
  .metode-icon-btn{
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 76px;
    height: 76px;
    z-index: 3;
    display: grid;
    place-items: center;
    touch-action: manipulation;
  }

  /* ✅ jangan loncat saat ditekan */
  .metode-icon-btn:active{
    transform: translate(-50%, -50%) scale(.98);
  }

  .vid-box{
    width: 92vw;
    height: 60vh;
    margin: 14vh auto 0;
    border-width: 10px;
  }

  .vid-close{
    right: -18px;
    top: -18px;
    width: 44px;
    height: 44px;
  }

  .vid-close::before,
  .vid-close::after{
    width: 18px;
  }
}


/* =========================================================
   RESPONSIVE OPTIONAL (biar frame enak di HP)
========================================================= */
@media (max-width: 575.98px){
  .metode-wrap{ padding: 64px 0; }

  /*  SAMAKAN (biar tidak override lagi)
     ICON tetap CENTER + ukuran tetap 76px */
  .metode-icon-btn{
    left: 50%;
    top: 40%;
    transform: translate(-50%, -50%);
    width: 176px;
    height: 176px;
    z-index: 3;
    display: grid;
    place-items: center;
    touch-action: manipulation;
  }

  .metode-icon-btn:active{
    transform: translate(-50%, -50%) scale(.98);
  }

  .vid-box{
    width: 92vw;
    height: 60vh;
    margin: 14vh auto 0;
    border-width: 10px;
  }

  .vid-close{
    right: -18px;
    top: -18px;
    width: 44px;
    height: 44px;
  }

  .vid-close::before,
  .vid-close::after{
    width: 18px;
    height: 3px;
  }
}





/* =========================================================
   7) PENDAFTARAN (DESKTOP/BASE)
========================================================= */
.pendaftaran-wrap{
  padding: 92px 0;
  background: #ffffff;
}

.pendaftaran-left{
  padding-right: 20px;
  text-align: left;
}

.pendaftaran-eyebrow{
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 1px;
  font-size: 24px;
  margin-bottom: 10px;
}

.pendaftaran-title{
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  line-height: .95;
  letter-spacing: -1.2px;
  margin: 0;
  color: #0b0b0b;
  font-size: 40px;
}

.pendaftaran-dotrow{
  display: flex;
  align-items: center;
  gap: 34px;
  margin: 28px 0 44px;
  justify-content: flex-start;
}
.pendaftaran-dotrow span{
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: var(--dotSoft);
}

.pendaftaran-desc{
  font-family: "Montserrat", sans-serif;
  color: rgba(24, 40, 64, .70);
  font-size: 20px;
  line-height: 1.8;
  max-width: 620px;
  margin: 0 0 34px;
  font-weight: 500;

  letter-spacing: 0;
  word-spacing: normal;

  text-align: justify;
  text-justify: auto;
  text-align-last: auto;

  hyphens: none;
  overflow-wrap: normal;
  word-break: normal;
}

.pendaftaran-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 20px;
  padding: 18px 42px;
  border-radius: 14px;
  box-shadow: 0 16px 28px rgba(240,144,48,.25);
}
.pendaftaran-btn:hover{ background:#ea8622; color:#fff; }

.pendaftaran-grid{
  display: grid;
  grid-template-columns: 1fr 40px 1fr 40px 1fr;
  gap: 18px;
  align-items: stretch;
}

.step-card{
  background: var(--cardBg);
  border-radius: 20px;
  padding: 28px 26px;
  min-height: 190px;
}

.step-title{
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 28px;
  margin: 0 0 14px;
  color: #0b0b0b;
}

.step-text{
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 14.5px;
  line-height: 1.65;
  color: rgba(24, 40, 64, .70);
  max-width: 260px;
}

.step-arrow{
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.step-arrow img{
  width: 22px;
  height: auto;
  display: block;
}

/* =========================================================
   8) GALERY (DESKTOP/BASE)
========================================================= */
.galery-wrap{
  padding: 74px 0 92px;
  background: var(--galBg);
}

.galery-grid{
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr;
  grid-template-rows: 320px 320px;
  gap: 26px;
  align-items: stretch;
}

.galery-item{
  margin: 0;
  border-radius: 34px; /* DESKTOP */
  overflow: hidden;
  background: #e9edf7;
  box-shadow: 0 18px 34px rgba(24,40,64,.08);
}

.galery-link{
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
  outline: none;
}

.galery-item img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.001);
  transition: transform .28s ease, filter .28s ease;
}

.galery-link:hover img{
  transform: scale(1.05);
  filter: saturate(1.06);
}

.galery-item--a{ grid-column: 1; grid-row: 1 / span 2; }
.galery-item--b{ grid-column: 2; grid-row: 1; }
.galery-item--c{ grid-column: 3; grid-row: 1; }
.galery-item--d{ grid-column: 2 / span 2; grid-row: 2; }

/* =========================================================
   GALERY POPUP (CSS-only :target)
========================================================= */
.galery-popup{
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: grid;
  place-items: center;
  padding: 18px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .22s ease;
}

.galery-popup:target{
  opacity: 1;
  pointer-events: auto;
}

.galery-popup-backdrop{
  position: absolute;
  inset: 0;
  background: rgba(10, 14, 24, .66);
  backdrop-filter: blur(6px);
}

.galery-popup-card{
  position: relative;
  width: min(980px, 92vw);
  height: min(82vh, 720px);
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 22px; /* DESKTOP */
  overflow: hidden;
  box-shadow: 0 28px 70px rgba(0,0,0,.35);
  transform: translateY(10px) scale(.98);
  transition: transform .22s ease;
}

.galery-popup:target .galery-popup-card{
  transform: translateY(0) scale(1);
}

.galery-popup-card img{
  width: 100%;
  height: 100%;
  object-fit: contain; /* ✅ biar gambar tidak kepotong */
  display: block;
  background: rgba(0,0,0,.35);
}

.galery-popup-close{
  position: absolute;
  top: 12px;
  right: 12px;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  text-decoration: none;
  font-size: 26px;
  line-height: 1;
  color: #fff;
  background: rgba(0,0,0,.45);
  border: 1px solid rgba(255,255,255,.18);
}

/* =========================================================
   ✅ MOBILE: sedikit tumpul + foto lebih besar
   (hanya override mobile, desktop tetap)
========================================================= */
@media (max-width: 575.98px){

  /* ✅ grid lebih “gede” di mobile: gap kecil, card lebih tinggi */
  .galery-grid{
    gap: 14px;                 /* lebih rapat => foto terasa lebih besar */
    grid-template-rows: 260px 260px; /* naikkan tinggi row biar lebih besar */
  }

  /*  radius kecil (sedikit tumpul, tidak tumpul banget) */
  .galery-item{
    border-radius: 14px !important;
  }

  /* ✅ bikin foto terasa lebih besar/zoom sedikit (tanpa ubah desktop) */
  .galery-item img{
    transform: scale(1.06); /* sebelumnya 1.001 */
  }

  /* hover tidak relevan di mobile, tapi aman kalau tetap */
  .galery-link:hover img{
    transform: scale(1.08);
  }

  /* ✅ popup juga ikut radius kecil */
  .galery-popup-card{
    border-radius: 14px !important;
    width: min(980px, 94vw);
    height: min(84vh, 760px);
  }

  .galery-popup-close{
    border-radius: 12px;
  }
}

/* extra small (opsional) */
@media (max-width: 374.98px){
  .galery-grid{
    grid-template-rows: 240px 240px;
  }
}




/* =========================================================
    #8 SECTION TES ONLINE (TANPA CARD PUTIH DI BELAKANG)
   - Tidak ada background putih / shadow / rounded container
   - Fokus ke form (border orange tebal, layout mirip foto)
   - Grid 3 kolom (desktop), stack (mobile)
========================================================= */

:root{
  --tes-accent: #f29a2e;
  --tes-ink: #1f2937;
  --tes-muted: #6b7280;
  --tes-bg: transparent; /* ✅ tidak ada card putih */
}

/* Section wrapper */
.tesonline-wrap{
  padding: 92px 0 84px;
  background: var(--tes-bg);
  color: var(--tes-ink);

  /* biar form tetap “light” walau root kamu dark */
  color-scheme: light;
}

/*  dulu ini card putih; sekarang jadi wrapper biasa aja */
.tesonline-card{
  max-width: 1180px;
  margin: 0 auto;
  background: transparent;     /* ✅ hilang */
  border-radius: 0;           /* ✅ hilang */
  padding: 0;                 /*  hilang padding besar */
  box-shadow: none;           /*  hilang */
  position: relative;
  overflow: visible;
}

/* Head */
.tesonline-head{
  text-align: center;
  margin-bottom: 36px;
}

.tesonline-eyebrow{
  font-weight: 800;
  letter-spacing: 4px;
  color: var(--tes-accent);
  font-size: 16px;
  margin-bottom: 12px;
}

.tesonline-title{
  font-weight: 800;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.05;
  margin: 0 0 14px;
  color: #2a3646;
}

.tesonline-desc{
  max-width: 820px;
  margin: 0 auto;
  font-size: 18px;
  line-height: 1.7;
  color: var(--tes-muted);
}

/* Form */
.tesonline-form{
  margin-top: 28px;
}

.tesonline-row{
  display: grid;
  gap: 22px;
  margin-bottom: 20px;
}

/* row 1 = 3 kolom */
.tesonline-row-1{
  grid-template-columns: 1.5fr 1.2fr 1fr;
}

/* row 2 = 2 kolom */
.tesonline-row-2{
  grid-template-columns: 1fr 1fr;
}

/* row 3 = pesan + tombol */
.tesonline-row-3{
  grid-template-columns: 1.4fr 1fr;
}

/* input & select */
.tesonline-control,
.tesonline-select{
  height: 68px;
  width: 100%;
  border: 2px solid var(--tes-accent);
  border-radius: 22px;
  padding: 0 24px;
  font-size: 18px;
  font-weight: 600;
  color: #2a3646;
  background: #fff;
  outline: none;
  box-sizing: border-box;
}

.tesonline-control::placeholder{
  color: #c0c6cf;
  font-weight: 600;
}

.tesonline-control:focus,
.tesonline-select:focus{
  box-shadow: 0 0 0 6px rgba(242,154,46,.14);
}

/* select arrow */
.tesonline-select{
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;

  padding-right: 56px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23747b86' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 20px center;
  background-size: 20px;
}

/* phone group (mirip foto) */
.tesonline-phone{
  display: flex;
  align-items: center;
  overflow: hidden;
  border: 2px solid var(--tes-accent);
  border-radius: 22px;
  height: 68px;
  background: #fff;
}

.tesonline-phone-prefix{
  flex: 0 0 92px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 18px;
  color: #fff;
  background: var(--tes-accent);
}

.tesonline-phone-input{
  flex: 1 1 auto;
  min-width: 0;
  height: 100%;
  border: 0;
  outline: 0;
  padding: 0 22px;
  font-size: 18px;
  font-weight: 700;
  color: #2a3646;
  background: transparent;
}

.tesonline-phone-input::placeholder{
  color: #c0c6cf;
  font-weight: 700;
}

/* button */
.tesonline-submit{
  height: 68px;
  border: 0;
  border-radius: 26px;
  background: var(--tes-accent);
  color: #fff;
  font-size: 22px;
  font-weight: 800;
  cursor: pointer;
  width: 100%;
  box-shadow: 0 16px 40px rgba(242,154,46,.28);
}

.tesonline-submit:hover{
  filter: brightness(0.98);
}

.tesonline-note{
  margin-top: 14px;
  text-align: center;
  color: #8a93a0;
  font-size: 14px;
  font-weight: 600;
}

/* MOBILE */
@media (max-width: 576px){
  .tesonline-wrap{
    padding: 64px 0 58px;
  }

  /* wrapper tetap tanpa card */
  .tesonline-card{
    padding: 0;
    border-radius: 0;
  }

  .tesonline-row-1,
  .tesonline-row-2,
  .tesonline-row-3{
    grid-template-columns: 1fr;
  }

  .tesonline-control,
  .tesonline-select,
  .tesonline-phone,
  .tesonline-submit{
    height: 56px;
    border-radius: 18px;
    font-size: 16px;
  }

  .tesonline-phone-prefix{
    flex-basis: 82px;
    font-size: 16px;
  }

  .tesonline-desc{
    font-size: 16px;
  }
}



/* =========================================================
   9) TESTIMONIAL (DESKTOP/BASE)  FIX DESKTOP OVERFLOW
   ✅ Desktop: teks tidak keluar card
   ✅ Mobile: tidak diubah (tetap benar)
========================================================= */

.testi-wrap{
  padding: 92px 0 78px;
  background: #ffffff;
  position: relative;
}

.testi-eyebrow{
  text-align: center;
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 10px;
  font-size: 24px;
  font-family: "Montserrat", sans-serif;
}

.testi-title{
  text-align: center;
  font-weight: 700;
  font-size: 40px;
  line-height: 1.06;
  margin: 0 0 48px;
  color: var(--testiInk);
  font-family: "Montserrat", sans-serif;
}

/* scroller */
.testi-scroller{
  display: flex;
  gap: 34px;
  overflow-x: auto;
  padding: 12px 8px 26px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.testi-scroller::-webkit-scrollbar{ display:none; }

/* card */
.testi-card{
  flex: 0 0 auto;

  width: 467px;

  /* ❌ JANGAN fixed height (ini penyebab teks suka keluar) */
  /* height: 334px; */

  /* ✅ Desktop stabil */
  min-height: 334px;

  border-radius: 24px;
  background: #fff;
  box-shadow: var(--testiShadow);
  border: 1px solid rgba(24,40,64,.06);

  padding: 24px 26px 26px; /* ✅ tambah bawah dikit */
  scroll-snap-align: start;

  display: flex;
  flex-direction: column;

  overflow: hidden; /*  pastikan tidak ada bleed keluar rounded */
}

.testi-card:target{ outline: none; }

.testi-head{
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.testi-avatar{
  width: 62px;
  height: 62px;
  border-radius: 16px;
  object-fit: cover;
  background: #eef1f7;
  flex: 0 0 auto;
}

.testi-name{
  font-weight: 700;
  font-size: 20px;
  margin: 0;
  color: var(--testiInk);
  font-family: "Montserrat", sans-serif;
  line-height: 1.1;
}

.testi-meta{
  margin-top: 6px;
  font-weight: 600;
  color: var(--testiLink);
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
}

.testi-stars{
  font-size: 18px;
  letter-spacing: 6px;
  color: var(--accent);
  margin: 2px 0 12px;
}

/*  FIX UTAMA: teks aman di desktop */
.testi-text{
  margin: 0;

  color: var(--testiMuted);
  font-size: 14.5px;

  /* kunci tinggi per-baris agar clamp stabil */
  line-height: 1.78;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;

  /* desktop: jangan terlalu agresif justify, ini sering bikin overflow */
  text-align: left;

  /*  clamp aman */
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 7; /* bisa 6/7, 7 lebih mirip screenshot kamu */
  overflow: hidden;

  /* ✅ paksa area teks tidak bisa melewati card (lebih aman dari sub-pixel) */
  max-height: calc(1.78em * 7);
}

/* UI bawah */
.testi-ui{ margin-top: 26px; }

.testi-controls{
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.testi-wrap .controls-1{ display:flex; }

.testi-wrap:has(#testi-2:target) .testi-controls{ display:none; }
.testi-wrap:has(#testi-2:target) .controls-2{ display:flex; }

.testi-wrap:has(#testi-3:target) .testi-controls{ display:none; }
.testi-wrap:has(#testi-3:target) .controls-3{ display:flex; }

.testi-progress{
  position: relative;
  width: 100%;
  height: 4px;
  border-radius: 999px;
  background: var(--testiLine);
  overflow: hidden;
  max-width: 760px;
}

.testi-progress-fill{
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--fill, 33%);
  background: var(--testiLineDark);
}

.testi-arrows{
  display: inline-flex;
  gap: 14px;
  flex: 0 0 auto;
}

.testi-btn{
  width: 54px;
  height: 54px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  text-decoration: none;
  font-size: 26px;
  font-weight: 700;
  color: #0b1d33;
  background: #e9edf7;
  box-shadow: 0 12px 22px rgba(24,40,64,.10);
}

.testi-btn.is-primary{
  background: #0b1d33;
  color: #fff;
}

.testi-btn.is-disabled{
  opacity: .55;
  pointer-events: none;
}

/* =========================================================
   ✅ MOBILE TIDAK DIUBAH (biar sesuai punyamu sekarang)
   Kalau kamu sudah punya CSS mobile sendiri, ini aman.
========================================================= */
@media (max-width: 991.98px){
  /* biarkan aturan mobile kamu yang sudah benar */
}


/* =========================================================
   10) KONSULTASI (DESKTOP/BASE)
========================================================= */
.konsul-wrap{
  padding: 84px 0 96px;
  background: #ffffff;
  text-align: center;
}

.konsul-eyebrow{
  font-family: "Montserrat", sans-serif;
  color: var(--accent);
  font-weight: 700;
  letter-spacing: .14em;
  font-size: 24px;
  margin: 0 0 8px;
  text-transform: uppercase;
}

.konsul-title{
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  color: rgba(24, 40, 64, .92);
  margin: 0 0 14px;
  letter-spacing: -0.02em;
  font-size: 40px;
  line-height: 1.05;
}

.konsul-desc{
  font-family: "Montserrat", sans-serif;
  color: rgba(24, 40, 64, .60);
  font-weight: 500;
  font-size: 16px;
  line-height: 1.65;
  max-width: 920px;
  margin: 0 auto 38px;
}

.konsul-form{
  max-width: 1180px;
  margin: 0 auto;
}

.konsul-row-1{
  display: grid;
  grid-template-columns: 1.3fr 1.1fr 0.95fr;
  gap: 22px;
  align-items: stretch;
  margin-bottom: 18px;
}

.konsul-row-2{
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 22px;
  align-items: stretch;
}

.konsul-field{ width: 100%; }

.konsul-input{
  width: 100%;
  height: 68px;
  border-radius: 22px;
  border: 1.8px solid var(--accent);
  padding: 0 26px;
  font-size: 18px;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  color: rgba(24, 40, 64, .85);
  background: #fff;
  outline: none;
}

.konsul-input::placeholder{
  color: rgba(24, 40, 64, .42);
  font-weight: 600;
}

.konsul-input:focus{
  box-shadow: 0 0 0 6px rgba(240,144,48,.14);
}

.konsul-phone{
  width: 100%;
  height: 68px;
  display: grid;
  grid-template-columns: 96px 1fr;
  border-radius: 22px;
  overflow: hidden;
  border: 1.8px solid var(--accent);
  background: #fff;
  position: relative;
}

.konsul-phone::after{
  content:"";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 96px;
  width: 1.8px;
  background: var(--accent);
}

.konsul-phone:focus-within{
  box-shadow: 0 0 0 6px rgba(240,144,48,.14);
}

.konsul-phone-prefix{
  display: grid;
  place-items: center;
  background: var(--accent);
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 18px;
}

.konsul-phone-input{
  width: 100%;
  height: 100%;
  border: 0;
  outline: none;
  padding: 0 22px;
  font-size: 18px;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  color: rgba(24, 40, 64, .85);
  background: transparent;
}

.konsul-phone-input::placeholder{
  color: rgba(24, 40, 64, .42);
  font-weight: 600;
}

.konsul-btn{
  height: 68px;
  border-radius: 22px;
  border: 0;
  background: var(--accent);
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: .2px;
  box-shadow: 0 18px 32px rgba(240,144,48,.20);
}
.konsul-btn:hover{ filter: brightness(0.98); }

/* =========================================================
   11) FOOTER (DESKTOP/BASE)
========================================================= */
.footer-wrap{
  background: var(--homeBg);
  padding: 92px 0 84px;
}

.footer-row{
  --bs-gutter-x: 5.2rem;
  --bs-gutter-y: 2.6rem;
  align-items: start;
}

.footer-left{
  height: 100%;
  display: flex;
  flex-direction: column;
}

.footer-title,
.footer-col-title{
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  color: #0b0b0b;
  margin: 0 0 18px;
  font-size: 25px;
  letter-spacing: -0.4px;
}

.footer-desc{
  font-family: "Montserrat", sans-serif;
  color: rgba(24, 40, 64, .52);
  font-weight: 500;
  font-size: 15px;
  line-height: 1.9;
  margin: 0;
  max-width: 720px;

  text-align: justify;
  text-justify: inter-word;
  text-align-last: left;

  letter-spacing: 0;
  word-spacing: normal;

  hyphens: auto;
  -webkit-hyphens: auto;

  overflow-wrap: normal;
  word-break: normal;
}

.footer-nav{
  list-style: none;
  padding: 0;
  margin: 8px 0 0;
  display: grid;
  gap: 22px;
}

.footer-nav a{
  font-family: "Montserrat", sans-serif;
  text-decoration: none;
  color: rgba(24, 40, 64, .62);
  font-weight: 500;
  font-size: 15px;
}
.footer-nav a:hover{ color: rgba(24, 40, 64, .92); }

.footer-map{
  margin-top: 8px;
  border-radius: 16px;
  overflow: hidden;
  background: #e9edf7;
  box-shadow: 0 16px 30px rgba(24,40,64,.08);
}

.footer-map iframe{
  display: block;
  width: 100%;
  height: 230px;
  border: 0;
}

.footer-contact{
  margin-top: 16px;
  font-family: "Montserrat", sans-serif;
  color: rgba(24, 40, 64, .58);
  font-weight: 500;
  font-size: 15px;
  line-height: 1.55;
}

.footer-address{
  max-width: 520px;
  font-size: 15px;
}

/* =========================================================
   SOCIAL
========================================================= */
.footer-social{
  margin-top: auto;
  padding-top: 58px;
  display: flex;
  align-items: center;
  gap: 34px;
}

/* Semua icon jadi ring default */
.social-link{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: var(--accent);
  width: 60px;          /* konsisten ring */
  height: 60px;
  border-radius: 999px; /* lingkaran */
  border: 1.8px solid rgba(240,144,48,.85);
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.social-link svg{
  display: block;
  width: 28px;
  height: 28px;
  fill: currentColor;
}

/* class ring tetap ada (kalau masih dipakai) */
.social-link--ring{
  border: 1.8px solid rgba(240,144,48,.85);
}

/* (opsional) kalau masih ada class plain di tempat lain */
.social-link--plain{
  width: auto;
  height: auto;
  padding: 6px;
  border: 0;
  border-radius: 12px;
}

/* hover/focus */
.social-link:hover{
  transform: translateY(-2px);
  background: rgba(240,144,48,.08);
  box-shadow: 0 18px 34px rgba(24,40,64,.10);
}

.social-link:focus{
  outline: none;
  box-shadow: 0 0 0 6px rgba(240,144,48,.14);
}

/* (opsional) kalau mau tombol telepon terlihat sedikit beda */
.social-link--phone{
  /* contoh: bikin tebal sedikit */
  /* border-width: 2px; */
}


/* =========================================================
   12) WA FLOAT (DESKTOP/BASE)
========================================================= */
.wa-float{
  position: fixed;
  right: 28px;
  bottom: 28px;
  z-index: 1100;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--wa);
  color: #fff;
  padding: 16px 22px;
  border-radius: 16px;
  text-decoration: none;
  font-weight: 800;
  box-shadow: 0 18px 30px rgba(0,0,0,.18);
}
.wa-float:hover{ color: #fff; filter: brightness(0.98); }

.wa-icon{
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,.95);
  border-radius: 999px;
}
.wa-text{ letter-spacing: .6px; }

/* =========================================================
   13) POPUP FORM (:target) (DESKTOP/BASE)
========================================================= */
.wa-popup{
  position: fixed;
  inset: 0;
  z-index: 1300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .22s ease, visibility .22s ease;
}

.wa-popup:target{
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.wa-popup-backdrop{
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, .35);
  backdrop-filter: blur(3px);
}

.wa-popup-card{
  position: relative;
  width: min(1220px, 100%);
  background: #fff;
  border-radius: 34px;
  box-shadow: 0 30px 80px rgba(0,0,0,.18);
  padding: 54px 54px 40px;
  z-index: 1;
  transform: translateY(10px) scale(.985);
  transition: transform .22s ease;
}

.wa-popup:target .wa-popup-card{
  transform: translateY(0) scale(1);
}

.wa-popup-close{
  position: absolute;
  top: 22px;
  right: 22px;
  width: 54px;
  height: 54px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  display: grid;
  place-items: center;
  text-decoration: none;
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
  box-shadow: 0 18px 32px rgba(240,144,48,.22);
}
.wa-popup-close:hover{ color:#fff; filter: brightness(.98); }

.wa-popup-head{
  text-align: center;
  max-width: 860px;
  margin: 0 auto 34px;
}

.wa-popup-eyebrow{
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  letter-spacing: .18em;
  color: var(--accent);
  margin-bottom: 10px;
}

.wa-popup-title{
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  color: rgba(24, 40, 64, .92);
  margin: 0 0 14px;
  font-size: clamp(34px, 3.2vw, 56px);
  line-height: 1.08;
}

.wa-popup-desc{
  font-family: "Montserrat", sans-serif;
  color: rgba(24, 40, 64, .60);
  font-weight: 500;
  margin: 0;
  line-height: 1.6;
}

.wa-popup-row{
  display: grid;
  gap: 18px;
  align-items: stretch;
  margin-bottom: 18px;
}

.wa-popup-row-1{ grid-template-columns: 1.35fr 1.05fr 0.9fr; }
.wa-popup-row-2{ grid-template-columns: 1fr 1fr; }
.wa-popup-row-3{
  grid-template-columns: 1fr 360px;
  margin-bottom: 0;
}

.wa-popup-control{
  width: 100%;
  height: 72px;
  border-radius: 22px;
  border: 1.8px solid var(--accent);
  padding: 0 26px;
  font-size: 18px;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  color: rgba(24, 40, 64, .85);
  background: #fff;
  outline: none;
}

.wa-popup-control::placeholder{
  color: rgba(24, 40, 64, .42);
  font-weight: 600;
}

.wa-popup-control:focus{
  box-shadow: 0 0 0 6px rgba(240,144,48,.14);
}

.wa-popup-select{
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(24,40,64,.55) 50%),
    linear-gradient(135deg, rgba(24,40,64,.55) 50%, transparent 50%);
  background-position:
    calc(100% - 22px) 50%,
    calc(100% - 16px) 50%;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 44px;
}

.wa-popup-phone{
  width: 100%;
  height: 72px;
  display: grid;
  grid-template-columns: 96px 1fr;
  border-radius: 22px;
  overflow: hidden;
  border: 1.8px solid var(--accent);
  background: #fff;
  position: relative;
}

.wa-popup-phone::after{
  content:"";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 96px;
  width: 1.8px;
  background: var(--accent);
}

.wa-popup-phone:focus-within{
  box-shadow: 0 0 0 6px rgba(240,144,48,.14);
}

.wa-popup-phone-prefix{
  display: grid;
  place-items: center;
  background: var(--accent);
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 18px;
}

.wa-popup-phone-input{
  width: 100%;
  border: 0;
  outline: none;
  padding: 0 22px;
  font-size: 18px;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  color: rgba(24, 40, 64, .85);
  background: transparent;
}

.wa-popup-phone-input::placeholder{
  color: rgba(24, 40, 64, .42);
  font-weight: 600;
}

.wa-popup-submit{
  height: 72px;
  border-radius: 22px;
  border: 0;
  background: var(--accent);
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: .2px;
  box-shadow: 0 18px 32px rgba(240,144,48,.20);
}
.wa-popup-submit:hover{ filter: brightness(.98); }

/* =========================================================
   14) DETAIL PAGE (DESKTOP/BASE) [DUPLIKAT DIPERTAHANKAN]
========================================================= */
body.detail-page{
  padding-top: 0 !important;
  margin: 0 !important;
  background: #fff;
  overflow-x: hidden;
}

body.detail-page #close{
  display:block;
  width:0;
  height:0;
  overflow:hidden;
}

body.detail-page .detail-hero{
  position: relative;
  overflow: hidden;
  min-height: 620px;
  display: flex;
  align-items: center;
  padding: 86px 0 78px;
  margin: 0 !important;
  background: #0b1d33;
}

body.detail-page .detail-hero-bg{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  filter: saturate(.95) contrast(1.06);
  z-index: 0;
}

body.detail-page .detail-hero::before{
  content:"";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    90deg,
    rgba(255,138,0,.70) 0%,
    rgba(255,94,4,.70) 100%
  );
}

body.detail-page .detail-hero-inner{
  position: relative;
  z-index: 2;
  width: 100%;
}

body.detail-page .detail-hero-title{
  font-family: "Montserrat", sans-serif;
  color: #fff;
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -1.2px;
  margin: 0 0 18px;
  font-size: clamp(44px, 5.2vw, 78px);
  text-shadow: 0 10px 24px rgba(0,0,0,.18);
}

body.detail-page .detail-hero-sub{
  margin: 0 0 34px;
  color: rgba(255,255,255,.92);
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(22px, 2.2vw, 34px);
}

body.detail-page .detail-hero-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 28px;
  border-radius: 14px;
  background: #0b1d33;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
  box-shadow: 0 16px 28px rgba(11,29,51,.25);
}
body.detail-page .detail-hero-btn:hover{
  color:#fff;
  background:#081528;
}

body.detail-page .detail-hero-badge{
  width: 298px;
  height: 372px;
  object-fit: contain;
  max-width: none;
  margin-left: auto;
  margin-top: 90px;
  filter: drop-shadow(0 18px 30px rgba(0,0,0,.18));
}

body.detail-page .detail-body{
  background:#fff;
  padding: 92px 0 86px !important;
}

body.detail-page .detail-photo{
  border-radius: 46px;
  overflow: hidden;
  background: #eef1f7;
  box-shadow: 0 20px 40px rgba(24,40,64,.10);
}
body.detail-page .detail-photo img{
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  aspect-ratio: 4 / 5;
}

body.detail-page .detail-h2{
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  color: #111827;
  margin: 0 0 18px;
  line-height: 1.12;
  font-size: clamp(28px, 2.5vw, 44px);
}

body.detail-page .detail-section-title{
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  color: rgba(17,24,39,.78);
  margin: 18px 0 10px;
  font-size: 18px;
}

body.detail-page .detail-lead{
  color: rgba(17,24,39,.68);
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  line-height: 1.75;
  margin: 0 0 18px;
  font-size: 16px;
}

body.detail-page .detail-list{
  margin: 0 0 18px;
  padding-left: 22px;
  color: rgba(17,24,39,.68);
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  line-height: 1.8;
  font-size: 16px;
}
body.detail-page .detail-list li{ margin: 6px 0; }

body.detail-page .detail-actions{
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 26px;
}

body.detail-page .detail-btn-primary{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 28px;
  border-radius: 18px;
  background: var(--accent, #f09030);
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  box-shadow: 0 16px 28px rgba(240,144,48,.20);
}
body.detail-page .detail-btn-primary:hover{ color:#fff; filter: brightness(.98); }

body.detail-page .detail-btn-outline{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 28px;
  border-radius: 18px;
  border: 2px solid rgba(240,144,48,.85);
  color: var(--accent, #f09030);
  text-decoration: none;
  font-weight: 800;
  background: #fff;
}
body.detail-page .detail-btn-outline:hover{ background: rgba(240,144,48,.08); }

/* =========================================================
   14B) DETAIL PAGE (DESKTOP/BASE) [DUPLIKAT DIPERTAHANKAN]
========================================================= */
body.detail-page{
  padding-top: 0 !important;
  margin: 0 !important;
  background: #fff;
  overflow-x: hidden;
}

body.detail-page #close{
  display:block;
  width:0;
  height:0;
  overflow:hidden;
}

body.detail-page .detail-hero{
  position: relative;
  overflow: hidden;
  min-height: 620px;
  display: flex;
  align-items: center;
  padding: 86px 0 78px;
  margin: 0 !important;
  background: #0b1d33;
}

body.detail-page .detail-hero-bg{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  filter: saturate(.95) contrast(1.06);
  z-index: 0;
}

body.detail-page .detail-hero::before{
  content:"";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    90deg,
    rgba(255,138,0,.70) 0%,
    rgba(255,94,4,.70) 100%
  );
}

body.detail-page .detail-hero-inner{
  position: relative;
  z-index: 2;
  width: 100%;
}

body.detail-page .detail-hero-title{
  font-family: "Montserrat", sans-serif;
  color: #fff;
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -1.2px;
  margin: 0 0 18px;
  font-size: clamp(44px, 5.2vw, 78px);
  text-shadow: 0 10px 24px rgba(0,0,0,.18);
}

body.detail-page .detail-hero-sub{
  margin: 0 0 26px;
  color: rgba(255,255,255,.92);
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(22px, 2.2vw, 34px);
}

body.detail-page .detail-hero-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 12px;
  background: #0b1d33;
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  font-family: "Montserrat", sans-serif;
  box-shadow: 0 16px 28px rgba(11,29,51,.25);
}
body.detail-page .detail-hero-btn:hover{ color:#fff; background:#081528; }

body.detail-page .detail-hero-badge{
  width: 298px;
  height: 372px;
  object-fit: contain;
  max-width: none;
  margin-left: auto;
  margin-top: 90px;
  filter: drop-shadow(0 18px 30px rgba(0,0,0,.18));
}

body.detail-page .detail-hero-wa{
  position: absolute;
  z-index: 3;
  right: 34px;
  bottom: 34px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border-radius: 14px;
  background: #3f8d46;
  color: #fff;
  text-decoration: none;
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  letter-spacing: .02em;
  box-shadow: 0 18px 30px rgba(0,0,0,.22);
}
body.detail-page .detail-hero-wa:hover{ color:#fff; filter: brightness(.98); }

body.detail-page .detail-hero-wa-ic{
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,.18);
  border-radius: 10px;
}

body.detail-page .detail-hero-wa-tx{ font-size: 12px; }

body.detail-page .detail-body{
  background:#fff;
  padding: 92px 0 86px !important;
}

body.detail-page .detail-photo{
  border-radius: 46px;
  overflow: hidden;
  background: #eef1f7;
  box-shadow: 0 20px 40px rgba(24,40,64,.10);
}
body.detail-page .detail-photo img{
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  aspect-ratio: 4 / 5;
}

body.detail-page .detail-h2{
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  color: #111827;
  margin: 0 0 18px;
  line-height: 1.12;
  font-size: clamp(28px, 2.5vw, 44px);
}

body.detail-page .detail-section-title{
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  color: rgba(17,24,39,.78);
  margin: 18px 0 10px;
  font-size: 18px;
}

body.detail-page .detail-lead{
  color: rgba(17,24,39,.68);
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  line-height: 1.75;
  margin: 0 0 18px;
  font-size: 16px;
}

body.detail-page .detail-list{
  margin: 0 0 18px;
  padding-left: 22px;
  color: rgba(17,24,39,.68);
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  line-height: 1.8;
  font-size: 16px;
}
body.detail-page .detail-list li{ margin: 6px 0; }

body.detail-page .detail-actions{
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 26px;
}

body.detail-page .detail-btn-primary{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 28px;
  border-radius: 18px;
  background: var(--accent, #f09030);
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  box-shadow: 0 16px 28px rgba(240,144,48,.20);
}
body.detail-page .detail-btn-primary:hover{ color:#fff; filter: brightness(.98); }

body.detail-page .detail-btn-outline{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 28px;
  border-radius: 18px;
  border: 2px solid rgba(240,144,48,.85);
  color: var(--accent, #f09030);
  text-decoration: none;
  font-weight: 800;
  background: #fff;
}
body.detail-page .detail-btn-outline:hover{ background: rgba(240,144,48,.08); }

/* =========================================================
   15) ONLINE REGISTRATION POPUP (:target) (DESKTOP/BASE)
========================================================= */
body.detail-page .reg-modal{
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: none;
}
body.detail-page .reg-modal:target{ display: block; }

body.detail-page .reg-backdrop{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.08);
}

body.detail-page:has(.reg-modal:target){ overflow: hidden; }

body.detail-page .reg-page{
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  background: #fff;
  display: flex;
  flex-direction: column;
  box-shadow: inset 0 0 0 3px rgba(71,116,184,.65);
}

body.detail-page .reg-shell{
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  padding: 0 22px;
}

body.detail-page .reg-top{
  background: #fff;
  border-bottom: 1px solid rgba(0,0,0,.10);
}

body.detail-page .reg-shell--top{
  height: 74px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

body.detail-page .reg-logo img{
  height: 44px;
  width: auto;
  display: block;
}

body.detail-page .reg-home-link{
  justify-self: end;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: rgba(17,24,39,.80);
  text-decoration: none;
}
body.detail-page .reg-home-link:hover{ text-decoration: underline; }

body.detail-page .reg-band{
  background: #4774b8;
  padding: 26px 16px;
  border-bottom: 1px solid rgba(0,0,0,.10);
}

body.detail-page .reg-band h2{
  margin: 0;
  text-align: center;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  letter-spacing: .06em;
  font-size: clamp(26px, 2.1vw, 40px);
  text-shadow: 0 3px 0 rgba(0,0,0,.18);
}

body.detail-page .reg-body{
  flex: 1;
  background: #fff;
  display: grid;
  place-items: center;
  padding: 44px 16px;
}

body.detail-page .reg-card{
  width: min(520px, 92vw);
  background: #fff;
  border: 1px solid rgba(0,0,0,.10);
  box-shadow: 0 10px 22px rgba(0,0,0,.12);
  padding: 22px 22px 18px;
}

body.detail-page .reg-card-title{
  margin: 0 0 14px;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 15px;
  color: rgba(17,24,39,.78);
}

body.detail-page .reg-select,
body.detail-page .reg-input{
  height: 44px;
  border-radius: 2px !important;
  border: 1px solid rgba(0,0,0,.12) !important;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  color: rgba(17,24,39,.85);
  margin-bottom: 10px;
  box-shadow: none !important;
}

body.detail-page .reg-bottom{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 6px;
}

body.detail-page .reg-note{
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: rgba(17,24,39,.80);
}

body.detail-page .reg-note a{
  color: #4774b8;
  font-weight: 500;
  text-decoration: none;
}
body.detail-page .reg-note a:hover{ text-decoration: underline; }

body.detail-page .reg-ok{
  width: 58px;
  height: 44px;
  border: 0;
  border-radius: 2px;
  background: #4774b8;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
}
body.detail-page .reg-ok:hover{ filter: brightness(.95); }

body.detail-page .reg-footer{
  background: #343434;
  color: rgba(255,255,255,.55);
  text-align: center;
  font-size: 12px;
  padding: 22px 14px;
}
body.detail-page .reg-footer b{ color: rgba(255,255,255,.85); }

/* =========================================================
   16) DETAIL-2 CONSULT (DESKTOP/BASE)
========================================================= */
body.detail-page.detail-consult .consult-wrap{
  background: #fff;
  padding: 78px 0 86px;
}

body.detail-page.detail-consult .consult-head{
  text-align: center;
  max-width: 860px;
  margin: 0 auto 26px;
}

body.detail-page.detail-consult .consult-eyebrow{
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  letter-spacing: .08em;
  color: #f09030;
  font-size: 14px;
  margin-bottom: 6px;
}

body.detail-page.detail-consult .consult-title{
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  color: #111827;
  letter-spacing: .02em;
  margin: 0 0 10px;
  font-size: clamp(26px, 2.2vw, 34px);
}

body.detail-page.detail-consult .consult-desc{
  color: rgba(17,24,39,.62);
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  line-height: 1.7;
  margin: 0;
  font-size: 13.5px;
}

body.detail-page.detail-consult .consult-card{
  max-width: 980px;
  margin: 22px auto 0;
  background: #fff;
  border-radius: 22px;
  padding: 18px 18px 22px;
}

body.detail-page.detail-consult .consult-form{
  max-width: 920px;
  margin: 0 auto;
}

body.detail-page.detail-consult .consult-program{
  width: 100%;
  height: 52px;
  border-radius: 12px;
  border: 1.6px solid rgba(240,144,48,.75);
  background: rgba(240,144,48,.18);
  color: #f09030;
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  text-align: center;
  outline: none;
  margin-bottom: 16px;
}

body.detail-page.detail-consult .consult-grid{
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 14px 16px;
}

body.detail-page.detail-consult .consult-control{
  height: 52px;
  border-radius: 12px;
  border: 1.6px solid rgba(240,144,48,.75);
  padding: 0 18px;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  color: rgba(17,24,39,.72);
  outline: none;
  background: #fff;
}

body.detail-page.detail-consult .consult-control::placeholder{
  color: rgba(17,24,39,.50);
  font-weight: 600;
}

body.detail-page.detail-consult .consult-grid > input:nth-child(1){ grid-column: span 4; }
body.detail-page.detail-consult .consult-grid > input:nth-child(2){ grid-column: span 4; }

body.detail-page.detail-consult .consult-phone{
  grid-column: span 4;
  display: grid;
  grid-template-columns: 64px 1fr;
  align-items: center;
}

body.detail-page.detail-consult .consult-prefix{
  height: 52px;
  border-radius: 12px 0 0 12px;
  border: 1.6px solid rgba(240,144,48,.75);
  background: #f09030;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  display: grid;
  place-items: center;
}

body.detail-page.detail-consult .consult-phone-input{
  border-radius: 0 12px 12px 0;
  border-left: 0;
}

body.detail-page.detail-consult .consult-grid > input:nth-child(4){
  grid-column: span 4;
}

body.detail-page.detail-consult .consult-btn{
  height: 52px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  text-decoration: none;
  border: 0;
}

body.detail-page.detail-consult .consult-btn-cancel{
  grid-column: span 4;
  background: #8b5e2a;
  color: #fff;
}

body.detail-page.detail-consult .consult-btn-send{
  grid-column: span 4;
  background: #f09030;
  color: #fff;
}

body.detail-page.detail-consult .consult-btn:hover{
  filter: brightness(.98);
  color: #fff;
}

body.detail-page.detail-consult .consult-fab{
  position: fixed;
  right: 24px;
  top: 56%;
  transform: translateY(-50%);
  width: 66px;
  height: 66px;
  border-radius: 999px;
  background: #7aa043;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 22px;
  display: grid;
  place-items: center;
  text-decoration: none;
  box-shadow: 0 12px 22px rgba(0,0,0,.24);
  z-index: 9999;
}

/* =========================================================
   17) SUCCESS POPUP (:target) (DESKTOP/BASE)
========================================================= */
.success-popup{
  position: fixed;
  inset: 0;
  z-index: 20000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px;

  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .22s ease, visibility .22s ease;
}

.success-popup:target{
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.success-popup-backdrop{
  position: absolute;
  inset: 0;
  background: rgba(24,40,64,.18);
  backdrop-filter: blur(2px);
}

body:has(.success-popup:target){
  overflow: hidden;
}

.success-card{
  position: relative;
  z-index: 1;
  width: var(--successCardW);
  height: var(--successCardH);
  border-radius: 44px;
  background: #ffffff;
  box-shadow: 0 22px 52px rgba(24,40,64,.18);

  padding: 62px 22px 52px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  text-align: center;

  overflow: hidden;
}

.success-close{
  position: absolute;
  top: 16px;
  right: 16px;

  width: 38px;
  height: 38px;
  border-radius: 999px;

  display: grid;
  place-items: center;

  text-decoration: none;
  background: var(--accent);
  color: #fff;
  font-size: 22px;
  font-weight: 900;
  line-height: 1;

  box-shadow: 0 14px 28px rgba(240,144,48,.22);
}
.success-close:hover{ color:#fff; filter: brightness(.98); }

.success-title{
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--accent);
  font-size: 34px;
  line-height: 1;
  margin: 0;
}

.success-visual{
  width: 190px;
  height: 190px;
  background: var(--successImg) center / contain no-repeat;
  filter: drop-shadow(0 18px 30px rgba(0,0,0,.10));
}

.success-text{
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--accent);
  letter-spacing: .02em;
  font-size: 17px;
  line-height: 1.15;
  margin: 0;
}

.success-card--berhasil-1{ --successImg: url("image/berhasil/berhasil-1.png"); }
.success-card--berhasil-2{ --successImg: url("image/berhasil/berhasil-2.png"); }



/* =========================================================
   19) WA FLOAT (BASE DUPLIKAT DIPERTAHANKAN)
========================================================= */
.wa-float{
  position: fixed;
  z-index: 999;
  right: 34px;
  bottom: 34px;

  display: inline-flex;
  align-items: center;
  gap: 10px;

  padding: 10px 18px;
  border-radius: 14px;

  background: #3f8d46;
  color: #fff;
  text-decoration: none;

  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  letter-spacing: .02em;

  box-shadow: 0 18px 30px rgba(0,0,0,.22);
  box-sizing: border-box;
}

.wa-float:hover{ color:#fff; filter: brightness(.98); }

.wa-icon{
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;

  background: rgba(255,255,255,.18);
  border-radius: 10px;

  flex: 0 0 auto;
}

.wa-text{
  font-size: 12px;
  line-height: 1;
  white-space: nowrap;
}

/* =========================================================
   20) SWITCH (BASE)
========================================================= */
.pendaftaran-mobile{ display: none; }

/* =========================================================
   21) FOOTER MOBILE ICON DEFAULT HIDE (BASE)
========================================================= */
.footer-social--mobile{ display: none !important; }



/* =========================================================
   RESPONSIVE (MOBILE/TABLET) - SEMUA DI BAWAH
========================================================= */

/* ---------------------------------------------------------
   HERO MOBILE (<= 575.98px)
--------------------------------------------------------- */
@media (max-width: 575.98px){
  .hero-wrap{
    padding: 1px 0 1px;
  }

  .hero-col-visual{ display: none; }

  .hero-icon-mobile{
    display: block;
    position: absolute;
    right: -22px;
    top: 30px;
    width: 150px;
    height: 150px;
    transform: rotate(-14deg);
    filter: drop-shadow(0 10px 18px rgba(0,0,0,.12));
    z-index: 5;
    pointer-events: none;
  }

  .hero-wrap::after{
    content:"";
    position: absolute;
    right: -130px;
    top: 10px;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle at 40% 45%,
      rgba(168,175,192,.35) 0%,
      rgba(245,245,250,0) 65%);
    pointer-events: none;
    z-index: 1;
  }

  .hero-title{
    line-height: .98;
    letter-spacing: -1.2px;
    position: relative;
    z-index: 2;
  }

  .hero-line-top{
    white-space: normal;
    font-size: 54px;
  }

  .hero-line-top .accent{
    display: block;
    margin-top: 6px;
    font-size: 54px;
  }

  .hero-title-strong{
    white-space: normal;
    font-size: 64px;
    margin-top: 10px;
  }

  .hero-desc{
    max-width: 100%;
    font-size: 16.5px;
    line-height: 1.85;
    position: relative;
    z-index: 2;
  }
  .hero-desc br{ display: none; }

  .btn-cta{
    border-radius: 26px;
    padding: 18px 44px !important;
    font-size: 22px;
    font-weight: 800;
  }
}

/* ---------------------------------------------------------
   DESKTOP SHIFT (>= 992px)
--------------------------------------------------------- */
@media (min-width: 992px){
  .navbar .navbar-nav{ transform: translateX(240px); }
}

/* ---------------------------------------------------------
   MOBILE MENU (<= 991.98px)
--------------------------------------------------------- */
@media (max-width: 991.98px){
  .nav-panel{
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(245,245,250,.98);
    backdrop-filter: blur(10px);
    border-radius: 0 0 18px 18px;
    box-shadow: 0 18px 30px rgba(24,40,64,.12);
    padding: 12px 16px 16px;
    max-height: calc(100vh - var(--navH));
    overflow: auto;
    z-index: 1051;
  }

  #menu:target{ display: block; }

  #menu:target .navbar-nav{
    gap: 6px !important;
    transform: none !important;
  }

  #menu:target ~ .menu-backdrop{
    display: block;
    position: fixed;
    inset: 0;
    z-index: 1050;
    background: transparent;
  }
}

/* ---------------------------------------------------------
   KONSULTASI MOBILE (<= 575.98px)
--------------------------------------------------------- */
@media (max-width: 575.98px){
  .konsul-wrap{
    padding: 56px 0 60px;
    background: #fff;
  }

  .konsul-eyebrow{
    text-align: center;
    font-family: "Montserrat", sans-serif;
    font-weight: 800;
    letter-spacing: .18em;
    color: var(--accent);
    font-size: 14px;
    margin: 0 0 10px;
    text-transform: uppercase;
  }

  .konsul-title{
    text-align: center;
    font-family: "Montserrat", sans-serif;
    font-weight: 800;
    color: var(--ink);
    font-size: 28px;
    line-height: 1.12;
    letter-spacing: -0.6px;
    margin: 0 0 14px;
  }

  .konsul-desc{
    text-align: center;
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    color: rgba(24,40,64,.62);
    font-size: 14.5px;
    line-height: 1.8;
    max-width: 340px;
    margin: 0 auto 26px;
  }

  .konsul-form{
    max-width: 430px;
    margin: 0 auto;
  }

  .konsul-row-1,
  .konsul-row-2{
    display: grid;
    gap: 18px;
  }

  .konsul-field{ width: 100%; }

  .konsul-input,
  .konsul-phone-input{
    width: 100%;
    border: 2px solid var(--accent);
    border-radius: 22px;
    background: #fff;
    padding: 18px 18px;
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    font-size: 14.5px;
    color: var(--ink);
    outline: none;
    box-shadow: none;
  }

  .konsul-input::placeholder,
  .konsul-phone-input::placeholder{
    color: rgba(24,40,64,.55);
    font-weight: 600;
  }

  .konsul-input:focus,
  .konsul-phone-input:focus{
    border-color: #ea8622;
  }

  .konsul-phone{
    display: grid;
    grid-template-columns: 92px 1fr;
    align-items: stretch;
    border-radius: 22px;
    overflow: hidden;
  }

  .konsul-phone-prefix{
    background: var(--accent);
    color: #fff;
    font-family: "Montserrat", sans-serif;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
  }

  .konsul-phone-input{
    border: 2px solid var(--accent);
    border-left: 0;
    border-radius: 0;
    padding-left: 18px;
  }

  .konsul-row-2 .konsul-field .konsul-input{
    height: 210px;
    padding-top: 22px;
    padding-bottom: 22px;
    display: flex;
    align-items: flex-start;
    text-align: center;
  }

  .konsul-btn{
    width: 100%;
    border: 0;
    border-radius: 18px;
    background: var(--accent);
    color: #fff;
    padding: 18px 18px;
    font-family: "Montserrat", sans-serif;
    font-weight: 900;
    font-size: 22px;
    letter-spacing: .02em;
    box-shadow: 0 18px 34px rgba(240,144,48,.22);
  }

  .konsul-btn:active{ transform: translateY(1px); }
}

@media (max-width: 374.98px){
  .konsul-title{ font-size: 26px; }
  .konsul-desc{ font-size: 14px; }
  .konsul-phone{ grid-template-columns: 86px 1fr; }
  .konsul-btn{ font-size: 21px; }
}

/* ---------------------------------------------------------
   WA FLOAT MOBILE SMALL (<= 575.98px) + EXTRA SMALL
--------------------------------------------------------- */
@media (max-width: 575.98px){
  .wa-float{
    right: 14px;
    bottom: 14px;
    width: 150px;
    height: 45px;
    padding: 0 10px;
    gap: 6px;
    border-radius: 10px;
    box-shadow: 0 10px 18px rgba(0,0,0,.18);
    justify-content: center;
    overflow: hidden;
  }

  .wa-icon{
    width: 18px;
    height: 18px;
    border-radius: 6px;
  }

  .wa-icon svg{
    width: 12px;
    height: 12px;
    display: block;
  }

  .wa-text{
    font-size: 9.8px;
    line-height: 1;
    letter-spacing: .01em;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
}

@media (max-width: 374.98px){
  .wa-float{
    width: 88px;
    right: 12px;
    bottom: 12px;
  }
  .wa-text{ font-size: 9.4px; }
}

/* ---------------------------------------------------------
   METODE MOBILE (<= 575.98px)
--------------------------------------------------------- */
@media (max-width: 575.98px){
  .metode-wrap{
    padding: 54px 0 40px;
    overflow: hidden;
  }

  .metode-wrap .metode-row{
    --bs-gutter-x: 0rem;
    margin-left: 0;
    margin-right: 0;
  }

  .metode-wrap .container{
    padding-left: 16px;
    padding-right: 16px;
  }

  .metode-left{
    padding-right: 0;
    text-align: center;
  }

  .metode-eyebrow{
    display: block;
    width: 100%;
    text-align: center;
    margin: 0 auto 10px;
  }

  .metode-title{
    display: block;
    width: 100%;
    text-align: center;
    margin: 0 auto 18px;
    max-width: 620px;
    font-size: 25px;
  }

  .metode-desc{ 
  max-width: 100%;
  font-size: 16px;
  }

  .metode-media{ padding-left: 12px; }
}

/* ---------------------------------------------------------
   FOOTER MOBILE (<= 575.98px)
   ✅ phone text sejajar KIRI
   ✅ icon social saja yang TENGAH
--------------------------------------------------------- */
@media (max-width: 575.98px){

  .footer-wrap{
    background: var(--homeBg);
    padding: 56px 0 44px;
  }

  .footer-wrap .row{
    --bs-gutter-y: 1.6rem;
  }

  .footer-title{
    font-family: "Montserrat", sans-serif;
    font-weight: 800;
    color: var(--ink);
    font-size: 24px;
    line-height: 1.15;
    margin: 0 0 12px;
  }

  .footer-desc{
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    color: rgba(24,40,64,.55);
    font-size: 13.6px;
    line-height: 1.75;
    max-width: 520px;
    margin: 0;
  }

  .footer-nav{
    list-style: none;
    padding: 0;
    margin: 8px 0 0;
    display: grid;
    gap: 10px;
  }
  .footer-nav a{
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    font-size: 18px;
    color: rgba(24,40,64,.68);
    text-decoration: none;
  }

  .footer-map{
    border-radius: 14px;
    overflow: hidden;
    margin-top: 10px;
  }
  .footer-map iframe{
    width: 100%;
    height: 220px;
    display: block;
  }

  .footer-contact{
    margin-top: 14px;
  }

  .footer-contact-line{
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    font-size: 13.2px;
    line-height: 1.7;
    color: rgba(24,40,64,.55);
    margin: 10px 0 0;
  }

  /* ✅ sembunyikan versi desktop di mobile */
  .footer-wrap .col-lg-5 .footer-social,
  .footer-social--desktop{
    display: none !important;
  }

  /* =====================================================
     PHONEBAR: tetap rapi (kolom), tapi teks phone KIRI
  ===================================================== */
  .footer-phonebar{
    margin-top: 12px;
    display: flex;
    flex-direction: column;
    align-items: stretch;     /* ✅ container full width */
    justify-content: flex-start;
    gap: 12px;
  }

  /* ✅ PHONE TEXT: sejajar kiri */
  .footer-contact-line--phone{
    margin: 0 !important;
    width: 100%;
    text-align: left;         /* ✅ kiri */
    font-size: 13.2px;

    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  /* =====================================================
     SOCIAL MOBILE: di bawah + TENGAH (ikon saja)
  ===================================================== */
  .footer-social--mobile{
    display: flex !important;
    width: 100%;
    justify-content: center;   /*  ikon di tengah */
    align-items: center;
    gap: 12px;
    margin: 10px 0 0 !important;
    padding: 0 !important;
  }

  .footer-social--mobile .social-link{
    width: 44px;
    height: 44px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    border: 2px solid var(--accent);
    color: var(--accent);
    text-decoration: none;
    background: transparent;
  }

  .footer-social--mobile .social-link svg{
    width: 18px;
    height: 18px;
    display: block;
    fill: currentColor;
  }
}

/* ---------------------------------------------------------
   FOOTER EXTRA SMALL (<= 374.98px)
--------------------------------------------------------- */
@media (max-width: 374.98px){
  .footer-map iframe{ height: 210px; }

  .footer-social--mobile{ gap: 10px; }

  .footer-social--mobile .social-link{
    width: 40px;
    height: 40px;
  }

  .footer-social--mobile .social-link svg{
    width: 16px;
    height: 16px;
  }

  
}




/* ---------------------------------------------------------
   RESPONSIVE UMUM (<= 991.98px)
--------------------------------------------------------- */
@media (max-width: 991.98px){
  .nav-spacer{ display:none; }

  .hero-visual{ min-height: 420px; }
  .hero-stack{ margin-left: 0; }
  .hero-person{ max-height: 520px; }
  .hero-vector-bg{ width: 300px; height: auto; }

  .hero-dots{
    right: -30px;
    top: 10px;
    width: 180px;
    height: 420px;
    background-size: 72px 72px;
    background-position: 12px 18px;
  }

  .hero-icon-left{
    width: 120px;
    height: 120px;
    left: -30px;
    top: 60px;
  }
  .hero-icon-right{
    width: 120px;
    height: 120px;
    right: -20px;
  }

  .metode-left{ padding-right: 0; }

  .metode-dotgrid-top,
  .metode-dotgrid-right{ display: none; }

  .metode-photo-wrap{
    border-radius: 34px;
    height: 280px;
  }
  .metode-play{
    left: 16px;
    width: 84px;
    height: 78px;
    border-radius: 20px;
  }

  .metode-dotrow{ gap: 18px; }
  .metode-dotrow span{ width: 22px; height: 22px; }

  .step-arrow{ display: none; }
  .step-text{ max-width: 100%; }

  .testi-title{
    margin-bottom: 30px;
    font-size: 25px;
  }

  .testi-card{
    width: 86vw;
    height: auto;
    min-height: 320px;
    padding: 22px 22px 22px;
    border-radius: 22px;
  }

  .testi-text{ -webkit-line-clamp: 8; }
  .testi-progress{ max-width: none; }

  .testi-btn{
    width: 52px;
    height: 52px;
    border-radius: 14px;
  }

  .konsul-wrap{ padding: 64px 0 76px; }
  .konsul-eyebrow{ font-size: 18px; }
  .konsul-desc{ font-size: 15px; margin-bottom: 22px; }

  .konsul-row-1{
    grid-template-columns: 1fr;
    gap: 14px;
    margin-bottom: 14px;
  }
  .konsul-row-2{
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .konsul-input,
  .konsul-phone,
  .konsul-btn{
    height: 64px;
    border-radius: 20px;
    font-size: 16px;
  }

  .konsul-phone{ grid-template-columns: 82px 1fr; }
  .konsul-phone::after{ left: 82px; width: 1.8px; }
  .konsul-phone-prefix{ font-size: 16px; }

  .konsul-btn{
    width: 100%;
    font-size: 18px;
  }

 

/* ---------------------------------------------------------
   PENDAFTARAN MOBILE SWITCH (<= 575.98px) + EXTRA SMALL
--------------------------------------------------------- */
@media (max-width: 575.98px){
  .pendaftaran-desktop{ display:none !important; }
  .pendaftaran-mobile{ display:block !important; }

  .pendaftaran-wrap{
    padding: 56px 0 54px;
    background:#fff;
    overflow:hidden;
  }

  .pendaftaran-mobile .pendaftaran-left{
    padding: 0 22px;
    text-align:center;
    margin-bottom: 18px;
  }

  .pendaftaran-mobile .pendaftaran-eyebrow{
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 2.6px;
    color: #f09030;
    margin: 0 0 8px;
    font-family: "Montserrat", sans-serif;
  }

  .pendaftaran-mobile .pendaftaran-title{
    font-size: 25px;
    line-height: 1.15;
    letter-spacing: -0.8px;
    margin: 0 0 14px;
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    color: #0b0b0f;
  }

  .pendaftaran-mobile .pendaftaran-dotrow{ display:none !important; }

  .pendaftaran-mobile .pendaftaran-desc{
    font-size: 16px;
    line-height: 1.95;
    max-width: 420px;
    margin: 0 auto;
    color: rgba(24,40,64,.62);

    text-align: justify;
    text-justify: inter-word;
    text-align-last: left;

    word-spacing: .10em;
    letter-spacing: .01em;
    hyphens: auto;

    font-family: "Montserrat", sans-serif;
    font-weight: 500;
  }

  .pendaftaran-mobile .pendaftaran-grid{
    --gridGap: 18px;
    display:grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--gridGap);
    padding: 0 22px;
    margin-top: 26px;
  }

  .pendaftaran-mobile .step-card{
    background:#f3f4f6;
    border-radius:22px;
    padding:22px;
    min-height:152px;
    position:relative;
    overflow: visible;
  }

  .pendaftaran-mobile .step-title{
    margin: 0 0 10px;
    font-size: 30px;
    font-weight: 800;
    color:#0b0b0f;
    line-height:1.05;
    font-family:"Montserrat", sans-serif;
  }

  .pendaftaran-mobile .step-text{
    margin:0;
    font-size:12.6px;
    line-height:1.55;
    color: rgba(24,40,64,.68);
    font-family:"Montserrat", sans-serif;
    font-weight:500;
  }

  .pendaftaran-mobile .step-card:nth-child(odd)::after{
    content:"";
    position:absolute;
    top:50%;
    right: calc(var(--gridGap) * -0.5);
    transform: translate(50%, -50%);
    width: 26px;
    height: 26px;
    background: url("../image/pendaftaran/arrow.png") center/contain no-repeat;
    z-index:3;
    pointer-events:none;
  }

  .pendaftaran-mobile .pendaftaran-btn{
    display:block;
    width: calc(100% - 44px);
    margin: 34px auto 0;
    padding: 18px 18px;
    border-radius: 14px;
    background:#f09030;
    color:#fff;
    text-decoration:none;
    text-align:center;
    font-family:"Montserrat", sans-serif;
    font-weight:800;
    font-size:22px;
    line-height:1.1;
    box-shadow: 0 14px 26px rgba(240,144,48,.22);
  }
}

@media (max-width: 374.98px){
  .pendaftaran-mobile .pendaftaran-title{ font-size:24px; }
  .pendaftaran-mobile .pendaftaran-grid{ --gridGap:16px; padding:0 18px; }
  .pendaftaran-mobile .step-card{ padding:20px; min-height:146px; }
  .pendaftaran-mobile .step-title{ font-size:28px; }
  .pendaftaran-mobile .pendaftaran-btn{ width: calc(100% - 36px); font-size:21px; }
  .pendaftaran-mobile .step-card:nth-child(odd)::after{ width:24px; height:24px; }
}



/* ---------------------------------------------------------
   GALERY MOBILE (<= 575.98px) + EXTRA SMALL
--------------------------------------------------------- */
@media (max-width: 575.98px){
  .galery-wrap{ padding: 52px 0 64px; }

  .galery-grid{
    --gGap: 14px;
    padding: 0 18px;

    grid-template-columns: 1.05fr 1fr 1fr;
    grid-template-rows:
      clamp(150px, 30vw, 195px)
      clamp(185px, 38vw, 240px);
  }

  .galery-item{ border-radius: 30px; }
}

@media (max-width: 374.98px){
  .galery-grid{
    grid-template-rows:
      145px
      215px;
  }
  .galery-item{ border-radius: 26px; }
}

/* ---------------------------------------------------------
   WA POPUP MOBILE (<= 575.98px) + TABLET (576-991.98)
--------------------------------------------------------- */
@media (max-width: 575.98px){
  .wa-popup{
    padding: 16px;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }

  .wa-popup-card{
    width: min(100%, 520px);
    margin: 0 auto;
    padding: 22px 16px 16px;
    border-radius: 22px;
  }

  .wa-popup-close{
    top: 10px;
    right: 10px;
    width: 44px;
    height: 44px;
    font-size: 24px;
  }

  .wa-popup-head{ text-align: center; }

  .wa-popup-eyebrow{
    font-size: 16px;
    letter-spacing: .22em;
    margin-bottom: 8px;
  }

  .wa-popup-title{
    font-size: 20px;
    line-height: 1.18;
    margin: 0 0 10px;
  }

  .wa-popup-desc{
    font-size: 13.2px;
    line-height: 1.7;
    margin: 0 auto 14px;
    max-width: 32ch;
  }

  .wa-popup-form{ margin-top: 10px; }

  .wa-popup-row{
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .wa-popup-control,
  .wa-popup-phone,
  .wa-popup-submit{
    width: 100%;
    height: 58px;
    border-radius: 18px;
    font-size: 15px;
  }

  .wa-popup-control{ padding: 0 16px; }
  .wa-popup-select{ padding-right: 44px; }

  .wa-popup-phone{
    display: grid;
    grid-template-columns: 78px 1fr;
    overflow: hidden;
  }

  .wa-popup-phone-prefix{
    display: grid;
    place-items: center;
    font-weight: 800;
  }

  .wa-popup-phone-input{
    width: 100%;
    height: 58px;
    border: 0;
    outline: 0;
    padding: 0 16px;
    font-size: 15px;
    background: transparent;
  }

  .wa-popup-phone::after{ left: 78px; }

  .wa-popup-submit{
    font-size: 17px;
    font-weight: 800;
    cursor: pointer;
  }

  @supports (-webkit-touch-callout: none){
    .wa-popup-control,
    .wa-popup-phone-input{
      font-size: 16px;
    }
  }
}

@media (min-width: 576px) and (max-width: 991.98px){
  .wa-popup{
    padding: 22px;
    overflow: auto;
  }

  .wa-popup-card{
    width: min(100%, 620px);
    padding: 26px 22px 20px;
    border-radius: 26px;
  }

  .wa-popup-row{
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .wa-popup-control,
  .wa-popup-phone,
  .wa-popup-submit{
    height: 64px;
    border-radius: 20px;
    font-size: 16px;
  }

  .wa-popup-phone{ grid-template-columns: 82px 1fr; }
  .wa-popup-phone::after{ left: 82px; }

  .wa-popup-submit{
    width: 100%;
    font-size: 18px;
  }
}

/* ---------------------------------------------------------
   DETAIL HERO MOBILE FIX (<= 991.98px) + SMALL (<= 575.98px)
--------------------------------------------------------- */
body.detail-page .detail-hero{ position: relative; overflow: hidden; }
body.detail-page .detail-hero-bg{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 991.98px){
  body.detail-page .detail-hero::before{
    content:"";
    position:absolute;
    inset:0;
    background: rgba(240,144,48,.82);
    z-index: 1;
  }

  body.detail-page .detail-hero-inner{
    position: relative;
    z-index: 2;
  }

  body.detail-page .detail-hero{
    min-height: 100svh !important;
    padding: 92px 0 120px !important;
    display: flex;
    align-items: center;
  }

  body.detail-page .detail-hero-badge{
    width: 180px !important;
    height: auto;
    max-width: 100%;
    margin: 0 auto 10px !important;
    display: block;
    filter: drop-shadow(0 12px 24px rgba(0,0,0,.15));
  }

  body.detail-page .detail-hero-title{
    margin: 0 !important;
    color: #fff !important;
    font-weight: 900 !important;
    line-height: 1.15 !important;
    letter-spacing: -0.3px;
    font-size: clamp(28px, 7.2vw, 44px) !important;
    text-shadow: 0 10px 22px rgba(0,0,0,.18);
  }

  body.detail-page .detail-hero-sub{
    margin: 10px 0 0 !important;
    color: #fff !important;
    font-weight: 900 !important;
    font-size: clamp(18px, 4.8vw, 26px) !important;
    text-shadow: 0 10px 22px rgba(0,0,0,.16);
  }

  body.detail-page .detail-hero-btn{
    margin: 34px auto 0 !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: min(360px, 88%) !important;
    padding: 16px 22px !important;
    border-radius: 18px !important;
    background: #132c4f !important;
    color: #fff !important;
    text-decoration: none !important;
    font-weight: 800 !important;
    box-shadow: 0 18px 40px rgba(0,0,0,.18);
  }
}

@media (max-width: 575.98px){
  body.detail-page .detail-hero-badge{ width: 170px !important; }
  body.detail-page .detail-hero-btn{ width: min(340px, 86%) !important; }
}

/* ---------------------------------------------------------
   DETAIL-2 CONSULT MOBILE TIDY (<= 991.98px) + SMALL
--------------------------------------------------------- */
@media (max-width: 991.98px){
  body.detail-page.detail-consult .consult-wrap{
    padding: 46px 0 110px !important;
  }

  body.detail-page.detail-consult .consult-head{
    text-align: left;
  }

  body.detail-page.detail-consult .consult-title{
    line-height: 1.15;
  }

  body.detail-page.detail-consult .consult-desc{
    line-height: 1.8;
  }

  body.detail-page.detail-consult .consult-card{
    border-radius: 18px;
    overflow: hidden;
  }

  body.detail-page.detail-consult .consult-program{
    width: 100%;
    white-space: normal;
    line-height: 1.5;
  }

  body.detail-page.detail-consult .consult-grid{
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  body.detail-page.detail-consult .consult-grid > *,
  body.detail-page.detail-consult .consult-phone{
    grid-column: auto !important;
    width: 100%;
  }

  body.detail-page.detail-consult .consult-phone{
    display: flex;
    align-items: stretch;
  }

  body.detail-page.detail-consult .consult-prefix{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 14px;
    border-radius: 14px 0 0 14px;
  }

  body.detail-page.detail-consult .consult-phone-input{
    border-radius: 0 14px 14px 0;
    width: 100%;
  }

  body.detail-page.detail-consult .consult-btn{
    width: 100% !important;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 14px 16px !important;
    border-radius: 14px !important;
    font-weight: 800;
  }

  body.detail-page.detail-consult .consult-btn-cancel{ order: 10; }
  body.detail-page.detail-consult .consult-btn-send{ order: 11; }
}

@media (max-width: 575.98px){
  body.detail-page.detail-consult .consult-wrap{
    padding: 40px 0 105px !important;
  }
}

/* ---------------------------------------------------------
   SUCCESS CARD RESPONSIVE (<= 991.98px) + (<= 575.98px)
--------------------------------------------------------- */
@media (max-width: 991.98px){
  .success-card{
    width: min(var(--successCardW), calc(100vw - 44px));
    height: min(var(--successCardH), calc(100vh - 44px));
  }
}

@media (max-width: 575.98px){
  .success-card{
    border-radius: 38px;
    padding: 58px 20px 46px;
  }

  .success-title{ font-size: 32px; }
  .success-visual{ width: 176px; height: 176px; }
  .success-text{ font-size: 16px; }

  .success-close{
    width: 36px;
    height: 36px;
    font-size: 21px;
  }
}

/* DUPLIKAT HOOK DIPERTAHANKAN */
@media (max-width: 991.98px){
  .success-card{
    width: min(var(--successCardW), calc(100vw - 44px));
    height: min(var(--successCardH), calc(100vh - 44px));
  }
}

/* ---------------------------------------------------------
   ABOUT V2 - MOBILE SLIDER (<= 575.98px) + SMALL + TABLET
--------------------------------------------------------- */

/* default (desktop) dots tidak tampil */
.about-dots{ display: none; }

/* anchor target (dipakai untuk klik dot) */
.about-anchor{
  position: absolute;
  left: 50%;
  top: 0;
  width: 1px;
  height: 1px;
  transform: translateX(-50%);
  opacity: 0;
  pointer-events: none;
}

@media (max-width: 575.98px){
  .about-wrap{ padding: 54px 0 50px; }

  .about-header{ margin-bottom: 26px; padding: 0 16px; }
  .about-title{ font-size: 28px; }

  .about-row{
    --bs-gutter-x: 0 !important;
    --bs-gutter-y: 0 !important;

    display: flex !important;
    flex-wrap: nowrap !important;
    justify-content: flex-start !important;

    overflow-x: auto !important;
    overflow-y: visible;
    gap: 0 !important;

    margin: 0 -16px !important;
    padding: 0 !important;

    scroll-snap-type: x mandatory;
    scroll-snap-stop: always;
    scroll-padding-left: 16px;
    scroll-padding-right: 16px;

    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;

    /* ✅ klik dot jadi smooth */
    scroll-behavior: smooth;
  }
  .about-row::-webkit-scrollbar{ display:none; }

  .about-col{
    flex: 0 0 100% !important;
    max-width: 100% !important;
    min-width: 100% !important;
    padding: 0 16px !important;
    scroll-snap-align: start;

    position: relative; /* ✅ buat anchor absolute aman */
  }

  .about-card{
    padding: 20px 20px 26px;
    border-radius: 24px;
    box-shadow: 0 18px 40px rgba(24,40,64,.14);
  }

  .about-img{ border-radius: 18px; overflow:hidden; margin-bottom: 18px; }
  .about-img img{ width:100%; height:240px; object-fit:cover; display:block; }

  .about-card h3{ font-size: 22px; margin-bottom: 12px; text-align:center; }
  .about-card p{ font-size: 14.5px; line-height: 1.65; }

  /* =========================
     DOTS (CLICKABLE)
  ========================= */
  .about-dots{
    display:flex;
    justify-content:center;
    gap:12px;
    margin-top:18px;
  }

  .about-dot{
    width: 10px;
    height: 10px;
    border-radius: 999px;
    display: inline-block;
    background: rgba(24,40,64,.28);
    text-decoration: none;
    transition: width .18s ease, transform .18s ease, background .18s ease;
  }

  /* fallback tampilan awal (default aktif dot pertama) */
  .about-dot:first-child{
    background: var(--accent, #f09030);
    width: 22px;
    transform: scale(1.02);
  }

  .about-dot:focus-visible{
    outline: 3px solid rgba(240,144,48,.35);
    outline-offset: 4px;
  }

  /* =========================
     ACTIVE DOT mengikuti slide (NO JS)
     pakai :has + :target
  ========================= */
  @supports(selector(:has(*))){
    /* kalau ada target, reset semua dulu */
    #about.about-wrap:has(.about-anchor:target) .about-dot{
      width: 10px;
      transform: none;
      background: rgba(24,40,64,.28);
    }

    /* aktifkan sesuai target slide */
    #about.about-wrap:has(#about-slide-0:target) .about-dot[data-dot="0"],
    #about.about-wrap:has(#about-slide-1:target) .about-dot[data-dot="1"],
    #about.about-wrap:has(#about-slide-2:target) .about-dot[data-dot="2"],
    #about.about-wrap:has(#about-slide-3:target) .about-dot[data-dot="3"],
    #about.about-wrap:has(#about-slide-4:target) .about-dot[data-dot="4"],
    #about.about-wrap:has(#about-slide-5:target) .about-dot[data-dot="5"],
    #about.about-wrap:has(#about-slide-6:target) .about-dot[data-dot="6"],
    #about.about-wrap:has(#about-slide-7:target) .about-dot[data-dot="7"],
    #about.about-wrap:has(#about-slide-8:target) .about-dot[data-dot="8"],
    #about.about-wrap:has(#about-slide-9:target) .about-dot[data-dot="9"],
    #about.about-wrap:has(#about-slide-10:target) .about-dot[data-dot="10"],
    #about.about-wrap:has(#about-slide-11:target) .about-dot[data-dot="11"]{
      background: var(--accent, #f09030);
      width: 22px;
      transform: scale(1.02);
    }
  }


/* extra small */
@media (max-width: 374.98px){
  .about-title{ font-size: 24px; }
  .about-img img{ height: 220px; }
  .about-card h3{ font-size: 20px; }
  .about-card p{ font-size: 14px; }
}

@media (min-width: 576px) and (max-width: 991.98px){
  .about-title{ font-size: 36px; }
  .about-img img{ height: 260px; }
  .about-card h3{ font-size: 24px; }
}



