/* ============================================================
   PROBEST — Website Publik style.css
   Palet: Navy #1A4B8C · Teal #2E9E6B · Orange #E84B2A
   Font: Plus Jakarta Sans + DM Sans
   ============================================================ */

/* ── Reset & Root ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --navy:        #1A4B8C;
  --navy-dark:   #0F2E5A;
  --navy-light:  #2A5FA3;
  --navy-50:     #EEF4FB;
  --navy-100:    #D6E8F7;
  --teal:        #2E9E6B;
  --teal-light:  #3AB87C;
  --teal-50:     #E6F7EE;
  --orange:      #E84B2A;
  --orange-50:   #FFF0EE;
  --white:       #FFFFFF;
  --gray-50:     #F8FAFB;
  --gray-100:    #F1F3F5;
  --gray-200:    #E9ECEF;
  --gray-400:    #ADB5BD;
  --gray-600:    #6C757D;
  --gray-700:    #495057;
  --gray-800:    #343A40;
  --gray-900:    #212529;
  --font-head:   'Plus Jakarta Sans', sans-serif;
  --font-body:   'DM Sans', sans-serif;
  --container:   1180px;
  --radius:      12px;
  --radius-lg:   18px;
  --shadow:      0 4px 20px rgba(26,75,140,.08);
  --shadow-lg:   0 12px 48px rgba(26,75,140,.14);
  --transition:  .22s ease;
}

html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a  { color: inherit; text-decoration: none; }

/* ── Container ── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Sections ── */
.section         { padding: 80px 0; }
.section-compact { padding: 40px 0; }

/* ── Section Headers ── */
.section-header { text-align: center; max-width: 640px; margin: 0 auto 48px; }
.section-badge {
  display: inline-flex;
  background: var(--navy-50);
  color: var(--navy);
  border: 1px solid var(--navy-100);
  padding: 5px 16px;
  border-radius: 20px;
  font-size: 12px; font-weight: 600;
  letter-spacing: .5px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(24px, 3.5vw, 34px);
  font-weight: 800;
  color: var(--navy-dark);
  line-height: 1.25;
  margin-bottom: 14px;
}
.section-desc {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.8;
}
.section-cta { text-align: center; margin-top: 48px; }

/* ══════════════════════════════════════════
   HEADER / NAVBAR
══════════════════════════════════════════ */
.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-200);
  transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: 0 4px 20px rgba(26,75,140,.1); }
.header-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 68px;
}

/* Logo */
.site-logo { display: flex; align-items: center; flex-shrink: 0; }
.logo-img { height: 44px; width: auto; object-fit: contain; }
.logo-text-only { display: flex; flex-direction: column; }
.lt-main { font-family: var(--font-head); font-size: 20px; font-weight: 800; color: var(--navy-dark); letter-spacing: -0.5px; line-height: 1; }
.lt-sub  { font-size: 10px; color: var(--gray-400); font-weight: 500; letter-spacing: .5px; text-transform: uppercase; }

/* Desktop Nav */
.main-nav { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.nav-link {
  padding: 7px 14px;
  border-radius: 8px;
  font-size: 14px; font-weight: 500;
  color: var(--gray-700);
  transition: all var(--transition);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute; bottom: 2px; left: 14px; right: 14px;
  height: 2px; background: var(--teal);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform var(--transition);
}
.nav-link:hover, .nav-link.active { color: var(--navy); }
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }
.nav-link.active { font-weight: 600; }

/* CTA Button */
.header-cta { display: flex; align-items: center; gap: 12px; }
.btn-wa {
  display: flex; align-items: center; gap: 7px;
  background: var(--teal);
  color: #fff;
  padding: 9px 18px;
  border-radius: 10px;
  font-size: 13px; font-weight: 600;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-wa:hover { background: var(--teal-light); transform: translateY(-1px); }
.btn-wa svg { flex-shrink: 0; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none; border: none;
  cursor: pointer; padding: 6px;
  border-radius: 8px;
}
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--gray-700);
  border-radius: 2px;
  transition: all .25s;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* Mobile Nav */
.mobile-nav {
  display: none;
  flex-direction: column;
  padding: 8px 16px 16px;
  border-top: 1px solid var(--gray-200);
  background: var(--white);
}
.mobile-nav.open { display: flex; }
.mob-link {
  padding: 12px 8px;
  font-size: 15px; font-weight: 500;
  color: var(--gray-700);
  border-bottom: 1px solid var(--gray-100);
  transition: color var(--transition);
}
.mob-link:hover, .mob-link.active { color: var(--navy); }
.mob-link:last-child { border-bottom: none; }

/* ══════════════════════════════════════════
   HERO SLIDER
══════════════════════════════════════════ */
.hero-section { position: relative; }
.hero-slider  { position: relative; overflow: hidden; }
.hero-slide {
  position: absolute; inset: 0;
  background: var(--navy-dark) center/cover no-repeat;
  opacity: 0;
  transition: opacity .7s ease;
  min-height: 520px;
  display: flex; align-items: center;
}
.hero-slide:first-child { position: relative; } /* first slide: in flow */
.hero-slide.active { opacity: 1; z-index: 1; position: relative; }
.slide-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(10,30,60,.82) 0%, rgba(10,30,60,.45) 60%, transparent 100%);
}
.hero-default {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, #1d6e9a 100%);
  min-height: 520px;
  display: flex; align-items: center;
  position: relative; overflow: hidden;
}
.hero-bg-pattern {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 20% 50%, rgba(46,158,107,.15) 0%, transparent 50%),
                    radial-gradient(circle at 80% 20%, rgba(255,255,255,.05) 0%, transparent 40%);
}
.slide-content {
  position: relative; z-index: 2;
  max-width: 580px;
  padding: 60px 0;
  animation: fadeUp .6s ease-out;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.slide-badge {
  display: inline-flex;
  background: rgba(46,158,107,.25);
  color: #7FE6B4;
  border: 1px solid rgba(46,158,107,.35);
  padding: 5px 16px;
  border-radius: 20px;
  font-size: 12px; font-weight: 600;
  letter-spacing: .5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.slide-title {
  font-family: var(--font-head);
  font-size: clamp(28px, 4.5vw, 48px);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 14px;
}
.slide-sub {
  font-size: clamp(15px, 2vw, 17px);
  color: rgba(255,255,255,.78);
  margin-bottom: 28px;
  line-height: 1.7;
}
.slide-ctas { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-hero-primary {
  display: flex; align-items: center; gap: 8px;
  background: var(--teal);
  color: #fff;
  padding: 13px 26px;
  border-radius: 12px;
  font-family: var(--font-head); font-size: 15px; font-weight: 700;
  transition: all var(--transition);
  box-shadow: 0 4px 16px rgba(46,158,107,.4);
}
.btn-hero-primary:hover { background: var(--teal-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(46,158,107,.5); }
.btn-hero-outline {
  display: flex; align-items: center;
  background: rgba(255,255,255,.12);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.35);
  padding: 13px 26px;
  border-radius: 12px;
  font-family: var(--font-head); font-size: 15px; font-weight: 600;
  transition: all var(--transition);
  backdrop-filter: blur(4px);
}
.btn-hero-outline:hover { background: rgba(255,255,255,.2); }

/* Slider Controls */
.slider-prev, .slider-next {
  position: absolute; top: 50%; z-index: 10;
  transform: translateY(-50%);
  background: rgba(255,255,255,.15);
  border: 1.5px solid rgba(255,255,255,.25);
  color: #fff;
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(4px);
  transition: all var(--transition);
}
.slider-prev { left: 20px; }
.slider-next { right: 20px; }
.slider-prev:hover, .slider-next:hover { background: rgba(255,255,255,.3); }
.slider-dots {
  position: absolute; bottom: 20px; left: 50%;
  transform: translateX(-50%);
  display: flex; gap: 7px;
  z-index: 10;
}
.sdot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.4);
  border: none; cursor: pointer;
  padding: 0;
  transition: all var(--transition);
}
.sdot.active { background: #fff; width: 24px; border-radius: 4px; }

/* Stats Bar */
.stats-bar {
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  box-shadow: 0 2px 12px rgba(26,75,140,.06);
}
.stats-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px 0;
  gap: 0;
}
.stat-pill {
  display: flex; flex-direction: column; align-items: center;
  padding: 0 36px;
  text-align: center;
}
.sp-num {
  font-family: var(--font-head);
  font-size: 22px; font-weight: 800;
  color: var(--navy);
  line-height: 1;
}
.sp-label {
  font-size: 11px; color: var(--gray-600);
  margin-top: 4px; font-weight: 500;
  text-transform: uppercase; letter-spacing: .4px;
}
.stat-divider {
  width: 1px; height: 40px;
  background: var(--gray-200);
}

/* ══════════════════════════════════════════
   LAYANAN SECTION
══════════════════════════════════════════ */
.layanan-section { background: var(--gray-50); }
.layanan-filter {
  display: flex; flex-wrap: wrap; gap: 8px;
  justify-content: center;
  margin-bottom: 36px;
}
.lf-btn {
  padding: 8px 20px;
  border-radius: 24px;
  font-size: 13px; font-weight: 600;
  color: var(--gray-700);
  background: var(--white);
  border: 1.5px solid var(--gray-300);
  cursor: pointer;
  transition: all var(--transition);
}
.lf-btn:hover { border-color: var(--navy); color: var(--navy); }
.lf-btn.active { background: var(--navy); color: #fff; border-color: var(--navy); }

.layanan-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 20px;
}
.layanan-card {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 26px;
  display: flex; flex-direction: column;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.layanan-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--navy), var(--teal));
  opacity: 0;
  transition: opacity var(--transition);
}
.layanan-card:hover { border-color: var(--navy-100); box-shadow: var(--shadow); transform: translateY(-3px); }
.layanan-card:hover::before { opacity: 1; }
.layanan-card[style*="display:none"] { display: none !important; }

.lc-icon-wrap { margin-bottom: 14px; }
.lc-icon { font-size: 28px; }
.lc-kat {
  font-size: 11px; font-weight: 600;
  color: var(--teal);
  text-transform: uppercase; letter-spacing: .6px;
  margin-bottom: 6px;
}
.lc-name {
  font-family: var(--font-head);
  font-size: 16px; font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: 8px;
  line-height: 1.3;
}
.lc-desc {
  font-size: 13px; color: var(--gray-600);
  line-height: 1.6; flex: 1;
  margin-bottom: 14px;
}
.lc-meta {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-bottom: 14px;
}
.lc-meta-item {
  display: flex; align-items: center; gap: 4px;
  font-size: 12px; color: var(--gray-600);
  background: var(--gray-50);
  padding: 3px 10px;
  border-radius: 6px;
}
.lc-price {
  font-family: var(--font-head);
  font-size: 14px; font-weight: 700;
  color: var(--navy);
  margin-left: auto;
}
.lc-link {
  display: flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 600;
  color: var(--navy);
  margin-top: auto;
  transition: gap var(--transition);
}
.lc-link:hover { gap: 10px; }

/* ══════════════════════════════════════════
   WHY SECTION
══════════════════════════════════════════ */
.why-section { background: var(--white); }
.why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.why-features {
  display: flex; flex-direction: column; gap: 18px;
  margin: 28px 0;
}
.why-feat {
  display: flex; align-items: flex-start; gap: 14px;
}
.wf-icon {
  width: 42px; height: 42px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.wf-blue   { background: var(--navy-50); }
.wf-teal   { background: var(--teal-50); }
.wf-orange { background: var(--orange-50); }
.why-feat strong { display: block; font-size: 14px; font-weight: 700; color: var(--gray-800); }
.why-feat p { font-size: 13px; color: var(--gray-600); margin-top: 2px; }

.why-card-stack {
  position: relative;
  height: 320px;
}
.wcs-card {
  position: absolute;
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  box-shadow: var(--shadow);
  width: 180px;
}
.wcs-icon { font-size: 28px; margin-bottom: 8px; }
.wcs-label { font-family: var(--font-head); font-size: 14px; font-weight: 700; color: var(--navy-dark); }
.wcs-sub   { font-size: 12px; color: var(--gray-400); margin-top: 3px; }
.wcs-1 { top: 0;   left: 0;   border-left: 3px solid var(--navy); }
.wcs-2 { top: 30%; left: 40%; border-left: 3px solid var(--teal); z-index: 1; }
.wcs-3 { top: 60%; left: 20%; border-left: 3px solid var(--orange); }
.wcs-connector {
  position: absolute;
  width: 60px; height: 2px;
  background: linear-gradient(90deg, var(--gray-300), transparent);
}
.wcs-c12 { top: calc(15% + 28px); left: 140px; transform: rotate(35deg); }
.wcs-c23 { top: calc(45% + 28px); left: 155px; transform: rotate(-35deg); }

/* ══════════════════════════════════════════
   ARTIKEL SECTION
══════════════════════════════════════════ */
.artikel-section { background: var(--gray-50); }
.artikel-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 20px;
}
.artikel-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  overflow: hidden;
  transition: all var(--transition);
  display: flex; flex-direction: column;
}
.artikel-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.artikel-featured { grid-row: span 2; }

.ak-thumb-link { display: block; }
.ak-thumb {
  position: relative;
  overflow: hidden;
  background: var(--gray-100);
}
.ak-thumb img {
  width: 100%; aspect-ratio: 16/9;
  object-fit: cover;
  transition: transform .4s ease;
}
.artikel-card:hover .ak-thumb img { transform: scale(1.04); }
.ak-thumb-placeholder {
  aspect-ratio: 16/9;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--navy-50), var(--teal-50));
  color: var(--navy);
}
.ak-kat {
  position: absolute; top: 10px; left: 10px;
  background: var(--navy);
  color: #fff;
  font-size: 10px; font-weight: 600;
  padding: 3px 10px;
  border-radius: 6px;
  letter-spacing: .4px;
  text-transform: uppercase;
}
.ak-body { padding: 18px; flex: 1; display: flex; flex-direction: column; }
.ak-meta {
  display: flex; align-items: center; gap: 12px;
  font-size: 12px; color: var(--gray-400);
  margin-bottom: 8px;
}
.ak-views { display: flex; align-items: center; gap: 3px; }
.ak-title {
  font-family: var(--font-head);
  font-size: 15px; font-weight: 700;
  color: var(--gray-800);
  line-height: 1.4;
  margin-bottom: 8px;
}
.ak-title a:hover { color: var(--navy); }
.ak-excerpt { font-size: 13px; color: var(--gray-600); line-height: 1.6; flex: 1; margin-bottom: 14px; }
.ak-readmore { font-size: 13px; font-weight: 600; color: var(--teal); margin-top: auto; }
.ak-readmore:hover { color: var(--teal-light); }

/* Artikel publik grid (halaman artikel) */
.artikel-pub-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.artikel-pub-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  overflow: hidden;
  transition: all var(--transition);
  display: flex; flex-direction: column;
}
.artikel-pub-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.apc-thumb-link { display: block; }
.apc-thumb {
  position: relative; overflow: hidden;
  background: var(--gray-100);
}
.apc-thumb img { width: 100%; aspect-ratio: 16/9; object-fit: cover; transition: transform .4s; }
.artikel-pub-card:hover .apc-thumb img { transform: scale(1.04); }
.apc-thumb-placeholder {
  aspect-ratio: 16/9;
  display: flex; align-items: center; justify-content: center;
  font-size: 40px;
  background: linear-gradient(135deg, var(--navy-50), var(--teal-50));
}
.apc-kat {
  position: absolute; top: 10px; left: 10px;
  background: var(--navy); color: #fff;
  font-size: 10px; font-weight: 600;
  padding: 3px 10px; border-radius: 6px;
  text-transform: uppercase; letter-spacing: .4px;
}
.apc-body { padding: 18px; flex: 1; display: flex; flex-direction: column; }
.apc-meta { font-size: 12px; color: var(--gray-400); margin-bottom: 8px; }
.apc-title { font-family: var(--font-head); font-size: 15px; font-weight: 700; color: var(--gray-800); line-height: 1.4; margin-bottom: 8px; }
.apc-title a:hover { color: var(--navy); }
.apc-excerpt { font-size: 13px; color: var(--gray-600); line-height: 1.6; flex: 1; margin-bottom: 14px; }
.apc-readmore { font-size: 13px; font-weight: 600; color: var(--teal); margin-top: auto; }

/* ══════════════════════════════════════════
   TESTIMONI
══════════════════════════════════════════ */
.testimoni-section { background: var(--white); }
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.testi-card-pub {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex; flex-direction: column; gap: 12px;
}
.tc-stars { font-size: 16px; }
.star-filled { color: #F59E0B; }
.star-empty  { color: var(--gray-300); }
.tc-text { font-size: 14px; color: var(--gray-700); line-height: 1.7; font-style: italic; flex: 1; }
.tc-author { display: flex; align-items: center; gap: 10px; }
.tc-avatar {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--navy), var(--teal));
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; font-weight: 700; color: #fff;
  flex-shrink: 0;
}
.tc-name { font-size: 13px; font-weight: 700; color: var(--gray-800); }
.tc-role { font-size: 11px; color: var(--gray-400); }

/* ══════════════════════════════════════════
   CTA SECTION
══════════════════════════════════════════ */
.cta-section {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, #1d6e9a 100%);
  padding: 64px 0;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute; top: -80px; right: -80px;
  width: 300px; height: 300px;
  background: var(--teal); border-radius: 50%; opacity: .08;
}
.cta-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px;
  position: relative; z-index: 1;
}
.cta-text h2 {
  font-family: var(--font-head);
  font-size: clamp(22px, 3vw, 30px); font-weight: 800;
  color: #fff; margin-bottom: 8px;
}
.cta-text p { font-size: 15px; color: rgba(255,255,255,.7); }
.cta-actions { display: flex; gap: 12px; flex-shrink: 0; flex-wrap: wrap; }
.btn-cta-primary {
  padding: 13px 28px;
  background: var(--white); color: var(--navy);
  border-radius: 12px;
  font-family: var(--font-head); font-size: 15px; font-weight: 700;
  transition: all var(--transition);
}
.btn-cta-primary:hover { background: var(--navy-50); transform: translateY(-2px); }
.btn-cta-wa {
  display: flex; align-items: center; gap: 8px;
  padding: 13px 24px;
  background: #25D366; color: #fff;
  border-radius: 12px;
  font-family: var(--font-head); font-size: 15px; font-weight: 700;
  transition: all var(--transition);
}
.btn-cta-wa:hover { background: #20c55b; transform: translateY(-2px); }

/* ══════════════════════════════════════════
   PAGE HERO (inner pages)
══════════════════════════════════════════ */
.page-hero {
  position: relative;
  padding: 64px 0 56px;
  background: var(--navy-dark);
  overflow: hidden;
}
.page-hero-sm { padding: 40px 0 32px; }
.page-hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 60%, #1d6e9a 100%);
  opacity: .95;
}
.page-hero-bg::after {
  content: '';
  position: absolute; bottom: -60px; right: -60px;
  width: 300px; height: 300px;
  background: var(--teal); border-radius: 50%; opacity: .07;
}
.container { position: relative; }
.page-breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: rgba(255,255,255,.55);
  margin-bottom: 14px;
}
.page-breadcrumb a { color: rgba(255,255,255,.7); }
.page-breadcrumb a:hover { color: #fff; }
.page-breadcrumb span { color: rgba(255,255,255,.35); }
.page-hero-title {
  font-family: var(--font-head);
  font-size: clamp(26px, 4vw, 38px); font-weight: 800;
  color: #fff; margin-bottom: 10px;
  position: relative; z-index: 1;
}
.page-hero-sub {
  font-size: 16px; color: rgba(255,255,255,.7);
  max-width: 560px;
  position: relative; z-index: 1;
}

/* ══════════════════════════════════════════
   LAYANAN LIST PAGE
══════════════════════════════════════════ */
.filter-row {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-bottom: 32px;
}
.filter-btn {
  padding: 7px 18px;
  border-radius: 24px;
  font-size: 13px; font-weight: 600;
  color: var(--gray-700);
  background: var(--white);
  border: 1.5px solid var(--gray-300);
  text-decoration: none;
  transition: all var(--transition);
}
.filter-btn:hover { border-color: var(--navy); color: var(--navy); }
.filter-btn.active { background: var(--navy); color: #fff; border-color: var(--navy); }

.layanan-list-grid { display: flex; flex-direction: column; gap: 14px; }
.layanan-list-card {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 20px 24px;
  display: flex; align-items: flex-start; gap: 20px;
  transition: all var(--transition);
}
.layanan-list-card:hover { border-color: var(--navy-100); box-shadow: var(--shadow); transform: translateX(4px); }
.llc-left {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  flex-shrink: 0;
}
.llc-icon { font-size: 32px; }
.llc-kat-badge {
  font-size: 10px; font-weight: 600;
  background: var(--navy-50); color: var(--navy);
  padding: 2px 8px; border-radius: 4px;
  text-align: center;
  white-space: nowrap;
}
.llc-main { flex: 1; }
.llc-name { font-family: var(--font-head); font-size: 16px; font-weight: 700; color: var(--navy-dark); margin-bottom: 6px; }
.llc-desc { font-size: 13px; color: var(--gray-600); line-height: 1.6; margin-bottom: 8px; }
.llc-meta-row { display: flex; gap: 8px; flex-wrap: wrap; }
.llc-meta-pill {
  display: flex; align-items: center; gap: 4px;
  font-size: 12px; color: var(--gray-600);
  background: var(--gray-50); padding: 3px 10px; border-radius: 6px;
  border: 1px solid var(--gray-200);
}
.llc-right {
  display: flex; flex-direction: column; align-items: flex-end;
  gap: 10px; flex-shrink: 0; text-align: right;
}
.llc-price { font-family: var(--font-head); font-size: 16px; font-weight: 800; color: var(--navy); }
.llc-price-info { font-size: 13px; color: var(--gray-400); font-style: italic; }
.llc-detail-btn {
  padding: 8px 18px;
  background: var(--navy); color: #fff;
  border-radius: 8px;
  font-size: 13px; font-weight: 600;
  transition: all var(--transition);
}
.llc-detail-btn:hover { background: var(--navy-light); }

/* Info Banner */
.info-banner { background: var(--navy-50); }
.ib-inner {
  display: flex; align-items: center; gap: 16px;
  background: var(--white);
  border: 1px solid var(--navy-100);
  border-radius: var(--radius);
  padding: 16px 20px;
}
.ib-icon { font-size: 28px; }
.ib-inner strong { display: block; font-size: 14px; font-weight: 700; color: var(--navy-dark); }
.ib-inner p { font-size: 13px; color: var(--gray-600); }
.btn-wa-sm {
  display: flex; align-items: center; gap: 6px;
  background: var(--teal); color: #fff;
  padding: 9px 18px; border-radius: 8px;
  font-size: 13px; font-weight: 600;
  white-space: nowrap; margin-left: auto;
  transition: all var(--transition);
}
.btn-wa-sm:hover { background: var(--teal-light); }

/* ══════════════════════════════════════════
   DETAIL LAYOUT (shared: layanan & artikel)
══════════════════════════════════════════ */
.detail-layout {
  display: grid;
  grid-template-columns: 1fr 310px;
  gap: 32px;
  align-items: start;
}
.detail-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.dc-header {
  padding: 28px 32px;
  border-bottom: 1px solid var(--gray-100);
  background: var(--gray-50);
}
.dc-kat { font-size: 12px; font-weight: 600; color: var(--teal); text-transform: uppercase; letter-spacing: .6px; margin-bottom: 8px; }
.dc-title { font-family: var(--font-head); font-size: clamp(20px, 3vw, 28px); font-weight: 800; color: var(--navy-dark); line-height: 1.25; }
.dc-section { padding: 24px 32px; border-bottom: 1px solid var(--gray-100); }
.dc-section:last-child { border-bottom: none; }
.dc-section-title { font-family: var(--font-head); font-size: 15px; font-weight: 700; color: var(--gray-800); margin-bottom: 12px; display: flex; align-items: center; gap: 6px; }
.dc-prep { background: var(--orange-50); }
.dc-content { font-size: 14px; color: var(--gray-700); line-height: 1.8; }

/* Related */
.related-section { margin-top: 24px; }
.related-title { font-family: var(--font-head); font-size: 16px; font-weight: 700; color: var(--gray-800); margin-bottom: 14px; }
.related-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.related-card {
  background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius);
  padding: 14px; text-decoration: none; transition: all var(--transition);
  display: flex; flex-direction: column; gap: 4px;
}
.related-card:hover { border-color: var(--navy-100); box-shadow: var(--shadow); }
.rc-icon { font-size: 20px; }
.rc-name { font-size: 13px; font-weight: 600; color: var(--gray-800); }
.rc-price { font-size: 12px; color: var(--navy); font-weight: 600; }

/* Detail Sidebar */
.detail-info-card {
  background: var(--white); border: 1.5px solid var(--navy-100); border-radius: var(--radius-lg); overflow: hidden;
}
.dic-header { background: var(--navy); color: #fff; font-family: var(--font-head); font-size: 14px; font-weight: 600; padding: 14px 18px; }
.dic-body { padding: 16px 18px; }
.dic-row { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; padding: 8px 0; border-bottom: 1px solid var(--gray-100); font-size: 13px; }
.dic-row:last-child { border-bottom: none; }
.dic-label { color: var(--gray-400); flex-shrink: 0; }
.dic-val { font-weight: 600; color: var(--gray-800); text-align: right; }
.dic-price { font-size: 16px; font-family: var(--font-head); font-weight: 800; color: var(--navy); }
.badge-kat { background: var(--teal-50); color: var(--teal); font-size: 11px; font-weight: 600; padding: 2px 8px; border-radius: 4px; }
.dic-wa-btn {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  background: #25D366; color: #fff;
  padding: 13px; margin: 0 18px 18px;
  border-radius: 10px;
  font-size: 14px; font-weight: 600;
  transition: all var(--transition);
}
.dic-wa-btn:hover { background: #20c55b; }

.detail-hours-card {
  background: var(--gray-50); border: 1px solid var(--gray-200);
  border-radius: var(--radius); padding: 14px 16px;
  margin-top: 14px; font-size: 13px;
}
.dhc-title { display: flex; align-items: center; gap: 6px; font-weight: 700; color: var(--gray-700); margin-bottom: 6px; }
.dhc-title svg { color: var(--navy); }
.back-link {
  display: flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 600; color: var(--navy);
  margin-top: 14px; transition: gap var(--transition);
}
.back-link:hover { gap: 10px; }

/* Artikel Detail */
.artikel-detail-header { margin-bottom: 24px; }
.kat-label { font-size: 12px; font-weight: 600; color: var(--teal); text-transform: uppercase; letter-spacing: .6px; margin-bottom: 10px; display: block; }
.ad-title { font-family: var(--font-head); font-size: clamp(22px, 3vw, 32px); font-weight: 800; color: var(--navy-dark); line-height: 1.2; margin-bottom: 14px; }
.ad-meta { display: flex; flex-wrap: wrap; gap: 16px; font-size: 13px; color: var(--gray-400); }
.ad-meta span { display: flex; align-items: center; gap: 5px; }
.ad-thumbnail { border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 24px; }
.ad-thumbnail img { width: 100%; max-height: 420px; object-fit: cover; }
.ad-excerpt {
  font-size: 16px; color: var(--gray-600); line-height: 1.8;
  border-left: 3px solid var(--teal); padding-left: 16px;
  margin-bottom: 24px; font-style: italic;
}
.ad-content { font-size: 15px; color: var(--gray-700); line-height: 1.85; margin-bottom: 28px; }
.ad-content h2, .ad-content h3 { font-family: var(--font-head); color: var(--navy-dark); margin: 24px 0 10px; }
.ad-content p  { margin-bottom: 14px; }
.ad-content ul, .ad-content ol { padding-left: 20px; margin-bottom: 14px; }
.ad-content li { margin-bottom: 6px; }
.ad-content strong { color: var(--gray-800); }
.ad-content a { color: var(--teal); text-decoration: underline; }
.ad-share { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; font-size: 13px; color: var(--gray-600); padding: 16px 0; border-top: 1px solid var(--gray-200); margin-bottom: 20px; }
.share-btn { display: flex; align-items: center; gap: 6px; padding: 7px 14px; border-radius: 8px; font-size: 13px; font-weight: 600; cursor: pointer; border: 1px solid var(--gray-300); background: var(--gray-50); color: var(--gray-700); transition: all var(--transition); }
.share-btn:hover { background: var(--gray-100); }
.share-wa { background: var(--teal-50); color: var(--teal); border-color: #A7F3D0; }
.share-wa:hover { background: #D1FAE5; }

/* Sidebar Cards */
.sidebar-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 16px; }
.sc-title { font-family: var(--font-head); font-size: 14px; font-weight: 700; color: var(--white); background: var(--navy); padding: 12px 16px; }
.sc-artikel-item { display: flex; gap: 10px; align-items: flex-start; padding: 12px 16px; border-bottom: 1px solid var(--gray-100); transition: background var(--transition); }
.sc-artikel-item:last-child { border-bottom: none; }
.sc-artikel-item:hover { background: var(--navy-50); }
.sc-ai-thumb { width: 60px; height: 44px; border-radius: 6px; overflow: hidden; flex-shrink: 0; background: var(--gray-100); }
.sc-ai-thumb img { width: 100%; height: 100%; object-fit: cover; }
.sc-ai-no-thumb { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 18px; }
.sc-ai-title { font-size: 12px; font-weight: 600; color: var(--gray-800); line-height: 1.4; margin-bottom: 3px; }
.sc-ai-date { font-size: 11px; color: var(--gray-400); }
.sidebar-cek-hasil { padding-bottom: 0; }
.sidebar-cek-hasil .sc-title { margin-bottom: 0; }
.sidebar-cek-hasil p { padding: 12px 16px 0; font-size: 13px; color: var(--gray-600); }
.sidebar-cek-hasil a { margin: 12px 16px 16px; }

/* Artikel Toolbar */
.artikel-toolbar { display: flex; flex-direction: column; gap: 14px; margin-bottom: 28px; }
.artikel-search-form { display: flex; }
.search-input-wrap { position: relative; flex: 1; max-width: 360px; }
.search-icon { position: absolute; left: 12px; top: 50%; transform: translateY(-50%); color: var(--gray-400); }
.search-input-pub {
  width: 100%; padding: 10px 14px 10px 38px;
  border: 1.5px solid var(--gray-300); border-radius: 10px;
  font-size: 14px; font-family: var(--font-body);
  outline: none; transition: border-color var(--transition);
}
.search-input-pub:focus { border-color: var(--navy); }
.artikel-filter-row { display: flex; flex-wrap: wrap; gap: 8px; }
.search-result-info { font-size: 13px; color: var(--gray-600); margin-bottom: 20px; }
.search-result-info strong { color: var(--navy); }
.clear-search { color: var(--orange); font-weight: 600; margin-left: 8px; }

/* Pagination */
.pagination-outer { margin-top: 40px; }
.pagination-wrap { display: flex; gap: 6px; justify-content: center; flex-wrap: wrap; }
.page-item a, .page-item {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 36px; height: 36px; padding: 0 10px;
  border-radius: 8px;
  font-size: 13px; font-weight: 500;
  border: 1.5px solid var(--gray-300);
  color: var(--gray-700);
  transition: all var(--transition);
}
.page-item a:hover { border-color: var(--navy); color: var(--navy); background: var(--navy-50); }
.page-item.active { background: var(--navy); color: #fff; border-color: var(--navy); font-weight: 700; }

/* Empty state */
.empty-pub { text-align: center; padding: 60px 20px; }
.empty-pub-icon { font-size: 52px; margin-bottom: 14px; }
.empty-pub h3 { font-family: var(--font-head); font-size: 20px; font-weight: 700; color: var(--gray-700); margin-bottom: 8px; }
.empty-pub p  { font-size: 14px; color: var(--gray-400); }

/* ══════════════════════════════════════════
   BUTTONS (general)
══════════════════════════════════════════ */
.btn-outline-navy {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 26px;
  border: 2px solid var(--navy); color: var(--navy);
  border-radius: 12px;
  font-family: var(--font-head); font-size: 14px; font-weight: 700;
  transition: all var(--transition);
}
.btn-outline-navy:hover { background: var(--navy); color: #fff; }
.btn-solid-navy {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 12px 24px;
  background: var(--navy); color: #fff;
  border-radius: 12px;
  font-family: var(--font-head); font-size: 14px; font-weight: 700;
  transition: all var(--transition);
  box-shadow: 0 4px 14px rgba(26,75,140,.3);
}
.btn-solid-navy:hover { background: var(--navy-light); transform: translateY(-2px); }

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
.site-footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,.75);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 48px;
}
.footer-logo { max-height: 50px; max-width: 160px; object-fit: contain; filter: brightness(0) invert(1); margin-bottom: 16px; }
.footer-logo-text { font-family: var(--font-head); font-size: 22px; font-weight: 800; color: #fff; margin-bottom: 14px; }
.footer-desc { font-size: 13px; line-height: 1.8; margin-bottom: 12px; }
.footer-tagline { font-size: 13px; font-style: italic; color: rgba(255,255,255,.4); }
.footer-heading { font-family: var(--font-head); font-size: 13px; font-weight: 700; color: #fff; text-transform: uppercase; letter-spacing: .8px; margin-bottom: 16px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-links a { font-size: 13px; color: rgba(255,255,255,.6); transition: color var(--transition); }
.footer-links a:hover { color: #fff; }
.footer-contact { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-contact li { display: flex; align-items: flex-start; gap: 9px; font-size: 13px; }
.contact-icon { width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px; color: var(--teal); }
.footer-contact a { color: rgba(255,255,255,.7); }
.footer-contact a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 18px 0;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px; color: rgba(255,255,255,.35);
}
.footer-admin-link { color: rgba(255,255,255,.2); transition: color var(--transition); }
.footer-admin-link:hover { color: rgba(255,255,255,.5); }

/* WhatsApp Float */
.wa-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 999;
  width: 56px; height: 56px;
  background: #25D366; color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,.4);
  transition: all var(--transition);
  animation: waPulse 3s ease-in-out infinite;
}
.wa-float:hover { background: #20c55b; transform: scale(1.1); animation: none; }
@keyframes waPulse {
  0%,100% { box-shadow: 0 6px 24px rgba(37,211,102,.4); }
  50%      { box-shadow: 0 6px 32px rgba(37,211,102,.7); }
}

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .artikel-grid          { grid-template-columns: 1fr 1fr; }
  .artikel-featured      { grid-column: 1 / -1; }
  .artikel-pub-grid      { grid-template-columns: 1fr 1fr; }
  .testi-grid            { grid-template-columns: 1fr 1fr; }
  .footer-grid           { grid-template-columns: 1fr 1fr; }
  .why-inner             { grid-template-columns: 1fr; gap: 40px; }
  .why-visual            { display: none; }
  .detail-layout         { grid-template-columns: 1fr; }
  .detail-side           { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
}

@media (max-width: 768px) {
  .section                { padding: 56px 0; }
  .main-nav, .btn-wa span { display: none; }
  .btn-wa                 { padding: 9px 12px; }
  .hamburger              { display: flex; }
  .stats-inner            { flex-wrap: wrap; gap: 4px; }
  .stat-divider           { display: none; }
  .stat-pill              { padding: 12px 20px; min-width: 50%; }
  .artikel-grid           { grid-template-columns: 1fr; }
  .artikel-pub-grid       { grid-template-columns: 1fr; }
  .testi-grid             { grid-template-columns: 1fr; }
  .footer-grid            { grid-template-columns: 1fr; gap: 28px; }
  .cta-inner              { flex-direction: column; text-align: center; }
  .cta-actions            { justify-content: center; }
  .ib-inner               { flex-wrap: wrap; }
  .btn-wa-sm              { margin-left: 0; width: 100%; justify-content: center; }
  .layanan-list-card      { flex-direction: column; gap: 14px; }
  .llc-right              { flex-direction: row; align-items: center; }
  .detail-side            { grid-template-columns: 1fr; }
  .related-grid           { grid-template-columns: 1fr; }
  .slide-ctas             { flex-direction: column; }
  .btn-hero-primary, .btn-hero-outline { width: 100%; justify-content: center; }
}

@media (max-width: 480px) {
  :root { --container: 100%; }
  .container { padding: 0 16px; }
  .layanan-grid { grid-template-columns: 1fr; }
  .stats-inner  { justify-content: flex-start; }
  .stat-pill    { min-width: 45%; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}


/* ══════════════════════════════════════════
   HALAMAN CEK HASIL PEMERIKSAAN
   (append ke style.css)
══════════════════════════════════════════ */

/* ── Layout utama ── */
.hasil-section { background: var(--gray-50); }

.hasil-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 28px;
  align-items: start;
}

/* ── Form Card ── */
.hasil-form-card {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.hasil-form-card.hasil-found {
  border-color: var(--teal-50);
}

.hfc-header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 26px 28px 20px;
  border-bottom: 1px solid var(--gray-100);
  background: var(--gray-50);
}
.hfc-icon {
  width: 52px; height: 52px;
  background: var(--navy-50);
  color: var(--navy);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.hfc-title {
  font-family: var(--font-head);
  font-size: 18px; font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: 4px;
}
.hfc-sub {
  font-size: 13px; color: var(--gray-600); line-height: 1.5;
}

/* ── Alert ── */
.hasil-alert {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 20px;
  margin: 20px 28px 0;
  border-radius: var(--radius);
}
.hasil-alert-error {
  background: #FFF5F5;
  border: 1px solid #FCA5A5;
  color: #B91C1C;
}
.ha-icon {
  flex-shrink: 0; margin-top: 1px;
}
.ha-body strong { display: block; font-size: 13px; font-weight: 700; margin-bottom: 2px; }
.ha-body p      { font-size: 13px; line-height: 1.5; margin: 0; }

/* ── Form ── */
.hasil-form {
  padding: 22px 28px 28px;
}

.hf-group {
  margin-bottom: 18px;
  transition: all var(--transition);
}
.hf-group.hf-pin-hidden {
  display: none;
}

.hf-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px; font-weight: 600;
  color: var(--gray-800);
  margin-bottom: 7px;
}
.hf-label svg { color: var(--navy); }
.hf-label-opt {
  font-size: 11px; font-weight: 400;
  color: var(--gray-400); margin-left: 2px;
}

.hf-input-wrap {
  position: relative;
}
.hf-input {
  width: 100%;
  padding: 12px 42px 12px 16px;
  border: 1.5px solid var(--gray-300);
  border-radius: var(--radius);
  font-size: 15px;
  font-family: var(--font-body);
  color: var(--gray-800);
  background: var(--white);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  letter-spacing: .3px;
}
.hf-input:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(26,75,140,.08);
}
.hf-input-error {
  border-color: #F87171;
  background: #FFF5F5;
}
.hf-input-error:focus {
  border-color: #EF4444;
  box-shadow: 0 0 0 3px rgba(239,68,68,.1);
}

.hf-input-clear {
  position: absolute; right: 12px; top: 50%;
  transform: translateY(-50%);
  width: 20px; height: 20px;
  background: var(--gray-200);
  color: var(--gray-600);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: all var(--transition);
}
.hf-input-clear:hover { background: var(--gray-300); }

.hf-pin-toggle {
  position: absolute; right: 12px; top: 50%;
  transform: translateY(-50%);
  background: none; border: none;
  cursor: pointer; color: var(--gray-400);
  display: flex; align-items: center;
  transition: color var(--transition);
  padding: 4px;
}
.hf-pin-toggle:hover { color: var(--navy); }

.hf-hint {
  display: flex; align-items: center; gap: 4px;
  font-size: 11px; color: var(--gray-400);
  margin-top: 5px;
}

.hf-pin-show-btn {
  display: flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 600;
  color: var(--navy);
  background: var(--navy-50);
  border: 1px solid var(--navy-100);
  border-radius: 8px;
  padding: 7px 14px;
  cursor: pointer;
  margin-bottom: 18px;
  transition: all var(--transition);
  font-family: var(--font-body);
}
.hf-pin-show-btn:hover { background: var(--navy-100); }

.hf-submit {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  color: #fff;
  border: none; border-radius: var(--radius);
  font-family: var(--font-head);
  font-size: 15px; font-weight: 700;
  cursor: pointer;
  transition: all var(--transition);
  box-shadow: 0 4px 14px rgba(26,75,140,.3);
  display: flex; align-items: center; justify-content: center;
  gap: 8px;
  margin-top: 8px;
}
.hf-submit:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26,75,140,.4);
}
.hf-submit:disabled { opacity: .7; cursor: not-allowed; transform: none; }
.hf-submit-text, .hf-submit-loading {
  display: flex; align-items: center; gap: 8px;
}
@keyframes spin { to { transform: rotate(360deg); } }
.spin { animation: spin 1s linear infinite; }

/* ── Hasil Ditemukan ── */
.hasil-found-wrap {
  margin-top: 20px;
  background: var(--white);
  border: 1.5px solid var(--teal);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(46,158,107,.12);
  animation: slideDown .35s ease-out;
}
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-12px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hfw-header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 22px;
  background: var(--teal-50);
  border-bottom: 1px solid rgba(46,158,107,.2);
}
.hfw-check {
  width: 40px; height: 40px;
  background: var(--teal);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.hfw-title {
  font-family: var(--font-head);
  font-size: 15px; font-weight: 700;
  color: var(--teal);
  margin-bottom: 2px;
}
.hfw-sub { font-size: 13px; color: var(--gray-600); }
.hfw-reset {
  display: flex; align-items: center; gap: 5px;
  margin-left: auto;
  font-size: 12px; font-weight: 600;
  color: var(--navy);
  white-space: nowrap;
  flex-shrink: 0;
}
.hfw-reset:hover { text-decoration: underline; }

.hfw-list {
  padding: 8px 0;
}

.hasil-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 22px;
  border-bottom: 1px solid var(--gray-100);
  transition: background var(--transition);
}
.hasil-item:last-child { border-bottom: none; }
.hasil-item:hover { background: var(--gray-50); }

.hi-left {
  display: flex; align-items: center; gap: 14px; flex: 1;
}
.hi-num {
  width: 30px; height: 30px;
  background: var(--navy-50);
  color: var(--navy);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700;
  flex-shrink: 0;
}
.hi-tes {
  font-family: var(--font-head);
  font-size: 14px; font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 4px;
}
.hi-meta {
  display: flex; align-items: center;
  flex-wrap: wrap; gap: 6px;
  font-size: 12px; color: var(--gray-400);
}
.hi-tanggal { display: flex; align-items: center; gap: 3px; }
.hi-dot { color: var(--gray-300); }
.hi-exp { font-size: 11px; font-weight: 500; }
.hi-exp-warn { color: var(--orange); }

.hi-right {
  display: flex; align-items: center;
  gap: 10px; flex-shrink: 0;
}
.hi-status {
  display: flex; align-items: center; gap: 5px;
  font-size: 11px; font-weight: 600;
  color: var(--teal);
}
.hi-status-dot {
  width: 7px; height: 7px;
  background: var(--teal);
  border-radius: 50%;
  animation: pulse-green 2s ease-in-out infinite;
}
@keyframes pulse-green {
  0%, 100% { opacity: 1; }
  50%       { opacity: .4; }
}

.hi-download-btn {
  display: flex; align-items: center; gap: 7px;
  background: var(--navy);
  color: #fff;
  padding: 9px 16px;
  border-radius: 8px;
  font-size: 13px; font-weight: 600;
  white-space: nowrap;
  transition: all var(--transition);
  box-shadow: 0 2px 8px rgba(26,75,140,.25);
}
.hi-download-btn:hover {
  background: var(--navy-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(26,75,140,.35);
}

.hfw-info-box {
  display: flex; align-items: flex-start; gap: 8px;
  margin: 0 22px 18px;
  padding: 10px 14px;
  background: var(--navy-50);
  border-radius: 8px;
  font-size: 12px; color: var(--navy);
  line-height: 1.5;
}
.hfw-info-box svg { flex-shrink: 0; margin-top: 1px; }

/* ── Sidebar Cards ── */
.hasil-side {
  display: flex; flex-direction: column; gap: 16px;
}

.hs-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.hs-card-title {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--font-head);
  font-size: 13px; font-weight: 700;
  color: var(--white);
  background: var(--navy);
  padding: 12px 16px;
}

/* Steps */
.hs-steps {
  list-style: none;
  padding: 16px;
  display: flex; flex-direction: column; gap: 14px;
}
.hs-step {
  display: flex; align-items: flex-start; gap: 12px;
}
.hs-step-num {
  width: 26px; height: 26px;
  background: var(--navy-50);
  color: var(--navy);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}
.hs-step strong { display: block; font-size: 13px; color: var(--gray-800); margin-bottom: 2px; }
.hs-step p      { font-size: 12px; color: var(--gray-600); line-height: 1.5; }

/* Jam Operasional */
.hs-card-hours .hs-card-title { background: var(--teal); }
.hs-hours-text {
  font-family: var(--font-head);
  font-size: 14px; font-weight: 600;
  color: var(--gray-800);
  padding: 14px 16px 4px;
}
.hs-hours-note {
  font-size: 12px; color: var(--gray-400);
  padding: 0 16px 14px;
}

/* Kontak */
.hs-contact-desc {
  font-size: 13px; color: var(--gray-600);
  padding: 14px 16px 10px;
  line-height: 1.6;
}
.hs-wa-btn {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  background: #25D366; color: #fff;
  margin: 0 16px 8px;
  padding: 11px;
  border-radius: 10px;
  font-size: 13px; font-weight: 700;
  transition: all var(--transition);
}
.hs-wa-btn:hover { background: #20c55b; transform: translateY(-1px); }
.hs-tel-btn {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--navy-50); color: var(--navy);
  border: 1px solid var(--navy-100);
  margin: 0 16px 16px;
  padding: 10px;
  border-radius: 10px;
  font-size: 13px; font-weight: 600;
  transition: all var(--transition);
}
.hs-tel-btn:hover { background: var(--navy-100); }

/* Privasi */
.hs-card-privacy {
  padding: 16px;
  text-align: center;
  background: var(--gray-50);
  border-style: dashed;
}
.hs-privacy-icon { font-size: 24px; margin-bottom: 6px; }
.hs-card-privacy p { font-size: 12px; color: var(--gray-400); line-height: 1.6; }

/* ── Responsive ── */
@media (max-width: 900px) {
  .hasil-layout {
    grid-template-columns: 1fr;
  }
  .hasil-side {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 600px) {
  .hasil-side {
    grid-template-columns: 1fr;
  }
  .hfc-header { padding: 18px 20px 14px; }
  .hasil-form { padding: 18px 20px 22px; }
  .hasil-item { flex-direction: column; align-items: flex-start; gap: 12px; }
  .hi-right   { width: 100%; justify-content: space-between; }
  .hi-download-btn { flex: 1; justify-content: center; }
  .hfw-header { flex-wrap: wrap; }
  .hfw-reset  { margin-left: 0; }
}


/* ══════════════════════════════════════════
   HALAMAN TENTANG KAMI
   (append ke style.css)
══════════════════════════════════════════ */

/* ── Profil Section ── */
.tentang-profil-section { background: var(--white); }

.tentang-profil-inner {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 64px;
  align-items: center;
}

/* Visual kiri */
.tp-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.tp-logo-wrap {
  width: 100%;
  background: linear-gradient(135deg, var(--navy-50) 0%, var(--teal-50) 100%);
  border: 1.5px solid var(--navy-100);
  border-radius: var(--radius-xl);
  padding: 40px 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
  position: relative;
  overflow: hidden;
}
.tp-logo-wrap::before {
  content: '';
  position: absolute;
  bottom: -40px; right: -40px;
  width: 140px; height: 140px;
  background: var(--navy);
  border-radius: 50%;
  opacity: .04;
}
.tp-logo-img {
  max-height: 120px;
  max-width: 100%;
  object-fit: contain;
  position: relative;
  z-index: 1;
}
.tp-logo-placeholder {
  text-align: center;
  position: relative; z-index: 1;
}
.tp-logo-placeholder span {
  display: block;
  font-family: var(--font-head);
  font-size: 32px; font-weight: 800;
  color: var(--navy-dark);
  letter-spacing: -1px;
}
.tp-logo-placeholder small {
  font-size: 12px;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: .8px;
}

.tp-stats {
  display: flex;
  gap: 0;
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  width: 100%;
  box-shadow: var(--shadow-sm);
}
.tp-stat {
  flex: 1;
  text-align: center;
  padding: 14px 8px;
  border-right: 1px solid var(--gray-200);
  position: relative;
}
.tp-stat:last-child { border-right: none; }
.tp-stat-num {
  display: block;
  font-family: var(--font-head);
  font-size: 16px; font-weight: 800;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 4px;
}
.tp-stat-label {
  display: block;
  font-size: 10px;
  color: var(--gray-400);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .4px;
}

/* Teks kanan */
.tp-desc {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.85;
  margin-bottom: 12px;
}

.tp-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}
.tp-badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  background: var(--teal-50);
  color: var(--teal);
  border: 1px solid rgba(46,158,107,.2);
  border-radius: 20px;
  font-size: 12px; font-weight: 600;
}

/* ── Visi Misi ── */
.tentang-visimisi-section {
  background: linear-gradient(160deg, var(--navy-dark) 0%, var(--navy) 55%, #1e6e9e 100%);
  position: relative;
  overflow: hidden;
}
.tentang-visimisi-section::before {
  content: '';
  position: absolute; top: -80px; right: -80px;
  width: 360px; height: 360px;
  background: var(--teal); border-radius: 50%; opacity: .07;
}
.tentang-visimisi-section::after {
  content: '';
  position: absolute; bottom: -60px; left: -60px;
  width: 240px; height: 240px;
  background: #fff; border-radius: 50%; opacity: .03;
}
.tentang-visimisi-section .section-badge {
  background: rgba(255,255,255,.12);
  color: rgba(255,255,255,.8);
  border-color: rgba(255,255,255,.15);
}
.tentang-visimisi-section .section-title { color: #fff; }
.tentang-visimisi-section .section-desc  { color: rgba(255,255,255,.6); }

.vm-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 24px;
  position: relative; z-index: 1;
}

.vm-card {
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
}
.vm-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,.2);
}

.vm-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 24px 28px 20px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.vm-icon {
  width: 52px; height: 52px;
  background: rgba(26,75,140,.5);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.9);
  flex-shrink: 0;
}
.vm-icon-teal { background: rgba(46,158,107,.45); }
.vm-title {
  font-family: var(--font-head);
  font-size: 20px; font-weight: 800;
  color: #fff;
  letter-spacing: -.3px;
}

.vm-body { padding: 24px 28px 28px; }

.vm-visi-text {
  font-size: 17px;
  font-style: italic;
  color: rgba(255,255,255,.88);
  line-height: 1.75;
  position: relative;
  padding-left: 20px;
}
.vm-visi-text::before {
  content: '"';
  position: absolute; left: 0; top: -8px;
  font-size: 52px;
  color: rgba(255,255,255,.15);
  font-family: Georgia, serif;
  line-height: 1;
}

.vm-misi-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.vm-misi-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  color: rgba(255,255,255,.82);
  font-size: 14px;
  line-height: 1.65;
  animation: fadeSlideIn .4s ease-out both;
}
@keyframes fadeSlideIn {
  from { opacity: 0; transform: translateX(-12px); }
  to   { opacity: 1; transform: translateX(0); }
}
.vm-misi-num {
  width: 26px; height: 26px;
  background: rgba(46,158,107,.4);
  border: 1px solid rgba(46,158,107,.5);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700;
  color: #7FE6B4;
  flex-shrink: 0;
  margin-top: 1px;
}

.vm-corner-deco {
  position: absolute; bottom: -20px; right: -20px;
  width: 80px; height: 80px;
  background: rgba(255,255,255,.04);
  border-radius: 50%;
}

/* ── Keunggulan ── */
.tentang-keunggulan-section { background: var(--gray-50); }

.keunggulan-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.ku-card {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.ku-card::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px;
  opacity: 0;
  transition: opacity var(--transition);
}
.ku-card:hover {
  border-color: var(--navy-100);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}
.ku-card:hover::after { opacity: 1; }

.ku-icon {
  width: 52px; height: 52px;
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.ku-blue   { background: var(--navy-50);   color: var(--navy); }
.ku-teal   { background: var(--teal-50);   color: var(--teal); }
.ku-orange { background: var(--orange-50); color: var(--orange); }

.ku-title {
  font-family: var(--font-head);
  font-size: 15px; font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: 8px;
  line-height: 1.3;
}
.ku-desc {
  font-size: 13px;
  color: var(--gray-600);
  line-height: 1.7;
}

/* ── Lokasi Section ── */
.tentang-lokasi-section { background: var(--white); }

.lokasi-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 32px;
  align-items: start;
}

/* Peta */
.lokasi-map-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  height: 460px;
  border: 1.5px solid var(--gray-200);
  box-shadow: var(--shadow);
}
.lokasi-iframe {
  display: block;
  width: 100%; height: 100%;
  border: 0;
}
.lokasi-open-btn {
  position: absolute;
  bottom: 14px; left: 50%;
  transform: translateX(-50%);
  display: flex; align-items: center; gap: 6px;
  background: var(--white);
  color: var(--navy);
  border: 1.5px solid var(--navy-100);
  padding: 8px 18px;
  border-radius: 24px;
  font-size: 12px; font-weight: 600;
  box-shadow: var(--shadow-md);
  white-space: nowrap;
  transition: all var(--transition);
  z-index: 10;
}
.lokasi-open-btn:hover {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
  transform: translateX(-50%) translateY(-2px);
}

/* Info kontak */
.lokasi-info {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.li-block {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid var(--gray-100);
}
.li-block:first-child { padding-top: 0; }
.li-block:last-of-type { border-bottom: none; }

.li-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.li-icon-navy { background: var(--navy-50); color: var(--navy); }
.li-icon-teal { background: var(--teal-50); color: var(--teal); }
.li-icon-wa   { background: #E6F9EE;        color: #25D366;     }

.li-label {
  font-size: 11px; font-weight: 600;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: .6px;
  margin-bottom: 4px;
}
.li-val {
  font-size: 14px;
  color: var(--gray-800);
  line-height: 1.6;
}
.li-val-strong {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--navy-dark);
}
.li-link {
  color: var(--navy);
  transition: color var(--transition);
}
.li-link:hover { color: var(--teal); text-decoration: underline; }

/* CTA tombol di bawah info kontak */
.lokasi-ctas {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}
.lokasi-btn-wa {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  background: #25D366; color: #fff;
  padding: 13px;
  border-radius: var(--radius);
  font-size: 14px; font-weight: 700;
  font-family: var(--font-head);
  transition: all var(--transition);
}
.lokasi-btn-wa:hover { background: #20c55b; transform: translateY(-2px); }
.lokasi-btn-layanan {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--navy-50); color: var(--navy);
  border: 1.5px solid var(--navy-100);
  padding: 12px;
  border-radius: var(--radius);
  font-size: 14px; font-weight: 700;
  font-family: var(--font-head);
  transition: all var(--transition);
}
.lokasi-btn-layanan:hover { background: var(--navy-100); }

/* ── Responsive ── */
@media (max-width: 1100px) {
  .tentang-profil-inner   { grid-template-columns: 300px 1fr; gap: 40px; }
  .vm-grid                { grid-template-columns: 1fr; }
  .keunggulan-grid        { grid-template-columns: 1fr 1fr; }
  .lokasi-grid            { grid-template-columns: 1fr; }
  .lokasi-map-wrap        { height: 360px; }
}

@media (max-width: 768px) {
  .tentang-profil-inner   { grid-template-columns: 1fr; gap: 32px; }
  .tp-visual              { max-width: 380px; margin: 0 auto; width: 100%; }
  .keunggulan-grid        { grid-template-columns: 1fr; }
  .tp-badges              { justify-content: flex-start; }
}

@media (max-width: 480px) {
  .lokasi-map-wrap        { height: 280px; }
  .tp-stats               { flex-wrap: wrap; }
  .tp-stat                { min-width: 50%; }
  .lokasi-ctas            { gap: 8px; }
}
