/* ============================================================
   KSBSI Landak – Homepage Styles
   ============================================================ */

/* ---- TOKENS ---- */
:root {
  --red:          #B91C1C;
  --red-dark:     #991B1B;
  --red-light:    #FDECEC;
  --navy:         #1E3A8A;
  --navy-dark:    #1e3377;
  --navy-light:   #EEF2FF;
  --bg:           #F9FAFB;
  --bg-gray:      #F3F4F6;
  --white:        #FFFFFF;
  --text:         #111827;
  --muted:        #6B7280;
  --light:        #9CA3AF;
  --border:       #E5E7EB;
  --success:      #065F46;
  --success-bg:   #D1FAE5;

  --font-h: 'Merriweather', Georgia, serif;
  --font-b: 'Inter', system-ui, sans-serif;

  --max-w:    1200px;
  --r-sm:     4px;
  --r-md:     10px;
  --r-lg:     18px;
  --r-full:   9999px;
  --section:  5rem;

  --sh-sm:  0 2px 8px rgba(0,0,0,.07);
  --sh-md:  0 4px 20px rgba(0,0,0,.10);
  --sh-lg:  0 12px 48px rgba(0,0,0,.14);
  --sh-red: 0 6px 22px rgba(185,28,28,.32);

  --tr: .25s ease;
  --head-h: 76px;
  --bar-h:  40px;
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--head-h) + var(--bar-h)); }
body { font-family: var(--font-b); font-size: 1rem; line-height: 1.7; color: var(--text); background: var(--bg); -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

.container { width: 100%; max-width: var(--max-w); margin-inline: auto; padding-inline: 1.5rem; }

/* ---- TOPBAR ---- */
.topbar { background: var(--navy); color: #fff; height: var(--bar-h); display: flex; align-items: center; }
.topbar-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.topbar-left { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.topbar-link { display: flex; align-items: center; gap: .4rem; font-size: .8125rem; color: rgba(255,255,255,.8); transition: color var(--tr); }
.topbar-link svg { width: 13px; height: 13px; }
.topbar-link:hover { color: #fff; }
.topbar-btn { display: flex; align-items: center; gap: .4rem; font-size: .8125rem; font-weight: 600; background: var(--red); color: #fff; padding: .28rem .9rem; border-radius: var(--r-sm); transition: background var(--tr); white-space: nowrap; }
.topbar-btn svg { width: 13px; height: 13px; }
.topbar-btn:hover { background: var(--red-dark); }

/* ---- HEADER ---- */
.site-header { position: sticky; top: 0; z-index: 99; background: var(--white); height: var(--head-h); display: flex; align-items: center; border-bottom: 3px solid var(--red); box-shadow: var(--sh-sm); transition: box-shadow var(--tr); }
.site-header.scrolled { box-shadow: var(--sh-md); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.brand { display: flex; align-items: center; gap: .75rem; flex-shrink: 0; }
.brand-logo { width: 50px; height: 50px; object-fit: contain; border-radius: 50%; border: 2px solid var(--border); }
.brand-name { display: block; font-family: var(--font-h); font-size: 1rem; font-weight: 900; color: var(--red); line-height: 1.2; }
.brand-tagline { display: block; font-size: .66rem; color: var(--muted); font-weight: 500; }
.main-nav { display: flex; }
.nav-list { display: flex; align-items: center; gap: .15rem; }

/* ── Nav link base ───────────────────────────────────────── */
.nav-link {
  display: flex; align-items: center; gap: .28rem;
  padding: .5rem .75rem;
  font-size: .8375rem; font-weight: 500;
  color: var(--text);
  border-radius: var(--r-sm);
  transition: color .25s ease, background .25s ease;
  white-space: nowrap;
  position: relative;
}
.nav-link::after {
  content: ''; position: absolute;
  bottom: 2px; left: .75rem; right: .75rem;
  height: 2px; background: var(--red); border-radius: 2px;
  transform: scaleX(0);
  transition: transform .3s cubic-bezier(.4,0,.2,1);
  transform-origin: left;
}
.nav-link:hover         { color: var(--red); }
.nav-link.active        { color: var(--red); font-weight: 600; }
.nav-link:hover::after  { transform: scaleX(1); }
.nav-link.active::after { transform: scaleX(1); }

/* Parent-active: parent turns red when a child page is active */
.has-dropdown.parent-active > .nav-link { color: var(--red); }
.has-dropdown.parent-active > .nav-link::after { transform: scaleX(1); }

/* CTA button variant */
.nav-link--cta {
  background: var(--red); color: #fff !important;
  padding: .5rem 1rem; font-weight: 600;
  box-shadow: 0 2px 8px rgba(185,28,28,.3);
}
.nav-link--cta::after { display: none; }
.nav-link--cta:hover  { background: var(--red-dark) !important; }

/* ── Chevron arrow ───────────────────────────────────────── */
.nav-arrow {
  width: 14px; height: 14px; flex-shrink: 0;
  transition: transform .25s ease;
  opacity: .6;
}
.nav-arrow--cta { opacity: .85; }
.has-dropdown:hover > .nav-link .nav-arrow,
.has-dropdown.open  > .nav-link .nav-arrow { transform: rotate(180deg); opacity: 1; }

/* ── Dropdown panel ──────────────────────────────────────── */
.has-dropdown { position: relative; }
.dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 218px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  box-shadow: 0 8px 32px rgba(0,0,0,.12);
  padding: .4rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition:
    opacity   .22s ease,
    transform .22s ease,
    visibility 0s linear .22s;
  z-index: 200;
  pointer-events: none;
}
/* Right-align for last item (Kontak) */
.dropdown--right { left: auto; right: 0; }

/* Show on hover (desktop) */
.has-dropdown:hover > .dropdown,
.has-dropdown.open  > .dropdown {
  opacity: 1; visibility: visible;
  transform: translateY(0);
  pointer-events: all;
  transition:
    opacity   .22s ease,
    transform .22s ease,
    visibility 0s linear 0s;
}

/* Dropdown triangle tip */
.dropdown::before {
  content: ''; position: absolute;
  top: -5px; left: 20px;
  width: 10px; height: 10px;
  background: var(--white);
  border-left: 1px solid var(--border);
  border-top: 1px solid var(--border);
  transform: rotate(45deg);
  border-radius: 2px 0 0 0;
}
.dropdown--right::before { left: auto; right: 16px; }

/* ── Dropdown items ──────────────────────────────────────── */
.dropdown-link {
  display: flex; align-items: center; gap: .65rem;
  padding: .6rem 1.1rem;
  font-size: .855rem; font-weight: 500;
  color: var(--text);
  transition: background .18s ease, color .18s ease, padding-left .18s ease;
  white-space: nowrap;
}
.dropdown-link:hover {
  background: var(--red-light);
  color: var(--red);
  padding-left: 1.35rem;
}
.dropdown-link:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: -2px;
}
/* Currently-active submenu item */
.dropdown-link.active {
  background: var(--red-light);
  color: var(--red);
  font-weight: 600;
}
.dropdown-icon { font-size: .95rem; flex-shrink: 0; }

/* ── Hamburger ───────────────────────────────────────────── */
.hamburger { display: none; flex-direction: column; gap: 5px; padding: .4rem; }
.hamburger span {
  display: block; width: 24px; height: 2.5px;
  background: var(--text); border-radius: 2px;
  transition: transform var(--tr), opacity var(--tr);
}
.hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }



/* ---- BUTTONS ---- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: .5rem; padding: .75rem 1.75rem; border-radius: var(--r-sm); font-weight: 600; font-size: .9375rem; cursor: pointer; transition: background var(--tr), box-shadow var(--tr), transform var(--tr), border-color var(--tr); white-space: nowrap; border: 2px solid transparent; }
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn svg { width: 18px; height: 18px; }
.btn--primary { background: var(--red); color: #fff; border-color: var(--red); box-shadow: var(--sh-red); }
.btn--primary:hover { background: var(--red-dark); border-color: var(--red-dark); }
.btn--ghost { background: rgba(255,255,255,.1); color: #fff; border-color: rgba(255,255,255,.6); backdrop-filter: blur(6px); }
.btn--ghost:hover { background: rgba(255,255,255,.2); border-color: #fff; }
.btn--lg { padding: .9rem 2.25rem; font-size: 1rem; }
.btn--full { width: 100%; }

/* ---- SECTION SHARED ---- */
.section { padding: var(--section) 0; }
.section--white { background: var(--white); }
.section--gray { background: var(--bg-gray); }
.section--dark { background: var(--navy); color: #fff; position: relative; overflow: hidden; }
.section--cta { background: linear-gradient(135deg, var(--red-dark) 0%, var(--red) 55%, #c02424 100%); color: #fff; position: relative; overflow: hidden; }

.section-header { text-align: center; max-width: 680px; margin: 0 auto 3.5rem; }
.section-kicker { display: inline-block; background: var(--red-light); color: var(--red); font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; padding: .28rem .9rem; border-radius: var(--r-full); margin-bottom: .9rem; }
.section-kicker--light { background: rgba(255,255,255,.15); color: rgba(255,255,255,.9); }
.section-title { font-family: var(--font-h); font-size: clamp(1.7rem, 4vw, 2.4rem); font-weight: 700; line-height: 1.25; margin-bottom: .85rem; }
.section-title::after { content: ''; display: block; width: 48px; height: 4px; background: var(--red); border-radius: 2px; margin: .75rem auto 0; }
.section-title--light::after { background: rgba(255,255,255,.5); }
.section-sub { color: var(--muted); font-size: 1.0625rem; line-height: 1.75; }

/* ================================================================
   PROFESSIONAL ANIMATION SYSTEM – KSBSI Landak
   AntiGravity-style: smooth, minimal, purposeful.
   Rules: 0.3s ease · no bounce · no excessive motion
   ================================================================ */

/* ── Page load ──────────────────────────────────────────────── */
html.page-loading * { animation-play-state: paused !important; }
html.page-loaded body { animation: page-fade-in .35s ease both; }
@keyframes page-fade-in { from { opacity: 0; } to { opacity: 1; } }

/* ── Scroll reveal variants ─────────────────────────────────── */
/* Base: fade + slide-up (default) */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity  .55s ease var(--d, 0s),
    transform .55s ease var(--d, 0s);
  will-change: opacity, transform;
}
.reveal.visible { opacity: 1; transform: none; }

/* Fade only */
.reveal[data-anim="fade"] {
  transform: none;
  transition: opacity .5s ease var(--d, 0s);
}
.reveal[data-anim="fade"].visible { opacity: 1; }

/* Slide from left */
.reveal[data-anim="slide-left"] {
  transform: translateX(-24px);
  transition:
    opacity  .55s ease var(--d, 0s),
    transform .55s ease var(--d, 0s);
}
.reveal[data-anim="slide-left"].visible { opacity: 1; transform: none; }

/* Subtle scale (cards) */
.reveal[data-anim="scale"] {
  transform: scale(.97) translateY(12px);
  transition:
    opacity  .5s ease var(--d, 0s),
    transform .5s ease var(--d, 0s);
}
.reveal[data-anim="scale"].visible { opacity: 1; transform: none; }

/* Respect prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal[data-anim] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* ── Hover: Cards ───────────────────────────────────────────── */
.isu-card:hover,
.layanan-card:hover,
.program-card:hover,
.card:hover,
.related-card:hover,
.sitemap-section:hover,
.contact-card:hover,
.doc-item:hover,
.team-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0,0,0,.11);
  transition:
    transform .3s ease,
    box-shadow .3s ease,
    border-color .3s ease;
}

/* Isu items: left-border slide-in */
.isu-item {
  transition:
    transform .3s ease,
    box-shadow .3s ease,
    border-color .3s ease;
}
.isu-item:hover {
  transform: translateX(4px);
  box-shadow: -3px 0 0 var(--red), var(--sh-sm);
  border-color: var(--red);
}

/* ── Hover: Buttons ─────────────────────────────────────────── */
.btn {
  transition:
    background .25s ease,
    border-color .25s ease,
    box-shadow .25s ease,
    transform .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0px); transition-duration: .1s; }

.btn--primary:hover {
  background: var(--red-dark);
  box-shadow: 0 6px 24px rgba(185,28,28,.45);
}
.btn--ghost:hover {
  background: rgba(255,255,255,.22);
  box-shadow: 0 4px 16px rgba(0,0,0,.12);
}

/* ── Hover: Nav links (underline slide) ─────────────────────── */
.nav-link {
  transition:
    color .25s ease,
    background .25s ease;
}
.nav-link::after {
  transition: transform .3s cubic-bezier(.4,0,.2,1);
  transform-origin: left;
}
.nav-link:hover::after,
.nav-link.active::after { transform: scaleX(1); }

/* ── Hover: Sidebar nav links ───────────────────────────────── */
.sidebar-nav a {
  transition:
    background .25s ease,
    color .25s ease,
    padding-left .25s ease;
}
.sidebar-nav a:hover:not(.active) { padding-left: 1.5rem; }

/* ── Hover: Topbar links ────────────────────────────────────── */
.topbar-link {
  transition: color .25s ease;
}
.topbar-btn {
  transition: background .25s ease, transform .2s ease;
}
.topbar-btn:hover { transform: translateY(-1px); }

/* ── Hover: Related page cards ──────────────────────────────── */
.related-card {
  transition:
    border-color .3s ease,
    box-shadow .3s ease,
    transform .3s ease;
}
.related-card:hover .related-card-arrow {
  transform: translateX(4px);
  transition: transform .25s ease;
}
.related-card-arrow { transition: transform .25s ease; }

/* ── Hover: Footer links ────────────────────────────────────── */
.footer-links a {
  transition: color .25s ease, padding-left .25s ease;
  display: inline-block;
}
.footer-links a:hover {
  color: rgba(255,255,255,.9);
  padding-left: .35rem;
}

/* ── Brand logo spin on hover ───────────────────────────────── */
.brand-logo {
  transition: transform .4s ease;
}
.brand:hover .brand-logo { transform: rotate(-5deg) scale(1.05); }

/* ── Topbar: hide on scroll down ────────────────────────────── */
.topbar {
  transition: transform .3s ease, opacity .3s ease;
}
.topbar--hidden {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}

/* ── Back-to-top button ─────────────────────────────────────── */
.back-to-top {
  transition:
    opacity .3s ease,
    transform .3s ease,
    background .25s ease;
}
.back-to-top:hover {
  background: var(--red-dark);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(185,28,28,.5);
}

/* ── Hero elements ──────────────────────────────────────────── */
.hero-content { animation: hero-enter .7s ease .1s both; }
@keyframes hero-enter {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: none; }
}
.hero-trust-bar { animation: hero-enter .7s ease .4s both; }
.hero-cta-row   { animation: hero-enter .7s ease .3s both; }

/* ── Stat counter block pulse ───────────────────────────────── */
.stat-block.visible .stat-value {
  animation: stat-in .6s ease both;
}
@keyframes stat-in {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: none; }
}

/* ── Form interactions ──────────────────────────────────────── */
.form-shake { animation: shake .4s ease; }
@keyframes shake {
  0%,100% { transform: translateX(0); }
  20%     { transform: translateX(-6px); }
  40%     { transform: translateX(6px); }
  60%     { transform: translateX(-4px); }
  80%     { transform: translateX(4px); }
}

.field-error {
  border-color: var(--red) !important;
  animation: field-error-in .3s ease;
}
@keyframes field-error-in {
  from { transform: translateX(-3px); }
  to   { transform: none; }
}

.form-success {
  text-align: center;
  padding: 2rem 0;
  animation: form-success-in .5s ease;
}
@keyframes form-success-in {
  from { opacity: 0; transform: scale(.96); }
  to   { opacity: 1; transform: none; }
}
.form-success-icon { font-size: 3.5rem; margin-bottom: 1rem; }
.form-success h4 { font-family: var(--font-h); font-size: 1.15rem; color: var(--text); margin-bottom: .5rem; }
.form-success p  { color: var(--muted); font-size: .9375rem; }

/* Button loading spinner */
.btn-spinner {
  display: inline-block;
  width: 14px;
  height: 14px;
  border: 2px solid rgba(255,255,255,.35);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin .65s linear infinite;
  vertical-align: middle;
  margin-right: .35rem;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ── FAQ smooth expand ──────────────────────────────────────── */
.faq-a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .35s ease;
  overflow: hidden;
}
.faq-item.open .faq-a { grid-template-rows: 1fr; }
.faq-a > * { overflow: hidden; }

/* ── Inner hero animate-in ──────────────────────────────────── */
.inner-hero-content {
  animation: hero-enter .6s ease .05s both;
}

/* ── Sitemap section hover ──────────────────────────────────── */
.sitemap-section {
  transition: transform .3s ease, box-shadow .3s ease;
}
.sitemap-section:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,.09);
}

/* ── Breadcrumb separator animation ────────────────────────── */
.breadcrumb a {
  transition: color .25s ease;
}
.breadcrumb a:hover { color: var(--red); }

/* ── Section title underline animate ───────────────────────── */
.section-title::after {
  transform-origin: left;
  transition: transform .5s ease;
}
.section-header.visible .section-title::after {
  animation: underline-grow .6s ease .3s both;
}
@keyframes underline-grow {
  from { transform: scaleX(0); transform-origin: left; }
  to   { transform: scaleX(1); }
}

/* ── Sitemap link items ─────────────────────────────────────── */
.sitemap-link-text a {
  transition: color .25s ease;
}
.sitemap-link-item:hover .sitemap-link-arrow {
  transform: translateX(4px);
  color: var(--navy);
  transition: transform .2s ease, color .2s ease;
}
.sitemap-link-arrow { transition: transform .2s ease, color .2s ease; }

/* ---- BACK TO TOP ---- */
.back-to-top { position: fixed; bottom: 2rem; right: 2rem; width: 46px; height: 46px; background: var(--red); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 16px rgba(185,28,28,.4); opacity: 0; transform: translateY(16px); pointer-events: none; transition: opacity var(--tr), transform var(--tr); z-index: 200; }
.back-to-top svg { width: 20px; height: 20px; }
.back-to-top.visible { opacity: 1; transform: none; pointer-events: all; }
.back-to-top:hover { background: var(--red-dark); transform: translateY(-2px); }

/* ============================================================
   1. HERO
   ============================================================ */
.hero { position: relative; min-height: calc(100vh - var(--head-h) - var(--bar-h)); display: flex; align-items: center; overflow: hidden; padding: 6rem 0; }
.hero-bg { position: absolute; inset: 0; }
.hero-bg-img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-bg-overlay { position: absolute; inset: 0; background: linear-gradient(108deg, rgba(15,20,60,.88) 0%, rgba(30,58,138,.72) 40%, rgba(100,15,15,.65) 100%); }
.hero-content { position: relative; z-index: 2; max-width: 820px; color: #fff; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: .55rem; font-size: .8125rem; font-weight: 600; color: rgba(255,255,255,.85); background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2); padding: .35rem 1rem; border-radius: var(--r-full); margin-bottom: 1.5rem; letter-spacing: .02em; backdrop-filter: blur(8px); }
.hero-badge-dot { width: 8px; height: 8px; border-radius: 50%; background: #4ade80; flex-shrink: 0; box-shadow: 0 0 0 3px rgba(74,222,128,.3); animation: pulse-dot 2s ease infinite; }
@keyframes pulse-dot { 0%,100% { box-shadow: 0 0 0 3px rgba(74,222,128,.3); } 50% { box-shadow: 0 0 0 6px rgba(74,222,128,.15); } }
.hero-title { font-family: var(--font-h); font-size: clamp(1.9rem, 5vw, 3.25rem); font-weight: 900; line-height: 1.2; margin-bottom: 1.1rem; letter-spacing: -.01em; }
.hero-title-dash { opacity: .6; }
.hero-title-accent { color: #FCA5A5; }
.hero-subtitle { font-size: clamp(1rem, 2vw, 1.2rem); color: rgba(255,255,255,.82); max-width: 580px; margin-bottom: 2.5rem; line-height: 1.75; }
.hero-cta-row { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.75rem; }
.hero-trust-bar { display: flex; align-items: center; gap: 1.25rem; flex-wrap: wrap; padding: 1rem 1.5rem; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15); border-radius: var(--r-md); width: fit-content; backdrop-filter: blur(10px); }
.trust-item { display: flex; align-items: center; gap: .5rem; font-size: .8rem; color: rgba(255,255,255,.8); white-space: nowrap; font-weight: 500; }
.trust-item svg { width: 16px; height: 16px; color: #FCD34D; flex-shrink: 0; }
.trust-sep { color: rgba(255,255,255,.3); font-size: .8rem; }
.hero-scroll-hint { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; z-index: 2; }
.hero-scroll-hint span { display: block; width: 2px; height: 48px; background: linear-gradient(to bottom, rgba(255,255,255,.7), transparent); border-radius: 2px; animation: scroll-hint 1.8s ease infinite; }
@keyframes scroll-hint { 0% { transform: scaleY(0); transform-origin: top; opacity: 1; } 60% { transform: scaleY(1); opacity: 1; } 100% { transform: scaleY(1); opacity: 0; } }

/* ============================================================
   2. ISU BURUH
   ============================================================ */
.isu-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: start; }
.isu-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 2.25rem; transition: box-shadow var(--tr), transform var(--tr); }
.isu-card:hover { box-shadow: var(--sh-md); transform: translateY(-3px); }
.isu-card--feature { background: var(--navy); color: #fff; border-color: transparent; }
.isu-tag { display: inline-block; font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; padding: .25rem .75rem; border-radius: var(--r-full); margin-bottom: .6rem; }
.isu-tag--red { background: var(--red-light); color: var(--red); }
.isu-card--feature .isu-tag--red { background: rgba(185,28,28,.3); color: #FCA5A5; }
.isu-tag--blue { background: var(--navy-light); color: var(--navy); }
.isu-tag--orange { background: #FFF7ED; color: #C2410C; }
.isu-tag--green { background: var(--success-bg); color: var(--success); }
.isu-date { font-size: .78rem; color: rgba(255,255,255,.55); margin-bottom: .75rem; font-weight: 500; }
.isu-card--feature h3 { font-family: var(--font-h); font-size: 1.2rem; font-weight: 700; margin-bottom: .85rem; line-height: 1.4; color: #fff; }
.isu-card--feature p { color: rgba(255,255,255,.78); font-size: .9375rem; line-height: 1.7; margin-bottom: 1.25rem; }
.isu-readmore { display: inline-flex; align-items: center; font-size: .875rem; font-weight: 600; color: #FCA5A5; transition: gap var(--tr); }
.isu-readmore:hover { gap: .5rem; }
.isu-list { display: flex; flex-direction: column; gap: 1rem; }
.isu-item { background: var(--white); border: 1px solid var(--border); border-radius: var(--r-md); padding: 1.4rem; transition: box-shadow var(--tr), transform var(--tr), border-color var(--tr); }
.isu-item:hover { box-shadow: var(--sh-sm); transform: translateY(-2px); border-color: var(--red); }
.isu-item-meta { display: flex; align-items: center; gap: .75rem; margin-bottom: .6rem; }
.isu-item-date { font-size: .75rem; color: var(--muted); font-weight: 500; }
.isu-item h4 { font-family: var(--font-h); font-size: .9375rem; font-weight: 700; margin-bottom: .4rem; line-height: 1.4; }
.isu-item p { font-size: .875rem; color: var(--muted); line-height: 1.6; }

/* ============================================================
   3. LAYANAN
   ============================================================ */
.layanan-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.layanan-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 2rem 1.75rem; position: relative; transition: box-shadow var(--tr), transform var(--tr), border-color var(--tr); overflow: hidden; }
.layanan-card::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%); transform: scaleY(0); transform-origin: bottom; transition: transform .35s ease; z-index: 0; }
.layanan-card:hover { box-shadow: var(--sh-lg); transform: translateY(-6px); border-color: var(--red); }
.layanan-card:hover::before { transform: scaleY(1); }
.layanan-card > * { position: relative; z-index: 1; }
.layanan-card:hover .layanan-num, .layanan-card:hover h3, .layanan-card:hover p, .layanan-card:hover .layanan-link { color: #fff; }
.layanan-card:hover .layanan-icon { background: rgba(255,255,255,.15); }
.layanan-card:hover .layanan-icon svg { color: #fff; }
.layanan-num { font-family: var(--font-h); font-size: 2.5rem; font-weight: 900; color: var(--red-light); -webkit-text-stroke: 1.5px var(--red); line-height: 1; margin-bottom: .5rem; transition: color var(--tr), -webkit-text-stroke-color var(--tr); }
.layanan-card:hover .layanan-num { color: rgba(255,255,255,.2); -webkit-text-stroke-color: rgba(255,255,255,.5); }
.layanan-icon { width: 52px; height: 52px; background: var(--red-light); border-radius: var(--r-md); display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem; transition: background var(--tr); }
.layanan-icon svg { width: 26px; height: 26px; color: var(--red); transition: color var(--tr); }
.layanan-card h3 { font-family: var(--font-h); font-size: 1.05rem; font-weight: 700; margin-bottom: .6rem; transition: color var(--tr); }
.layanan-card p { font-size: .875rem; color: var(--muted); line-height: 1.65; margin-bottom: 1.25rem; transition: color var(--tr); }
.layanan-link { font-size: .875rem; font-weight: 600; color: var(--red); transition: color var(--tr); }
.layanan-link:hover { text-decoration: underline; }

/* ============================================================
   4. STATISTIK
   ============================================================ */
.stat-bg-pattern { position: absolute; inset: 0; background-image: radial-gradient(circle at 10% 80%, rgba(185,28,28,.2) 0%, transparent 50%), radial-gradient(circle at 90% 20%, rgba(255,255,255,.05) 0%, transparent 40%), repeating-linear-gradient(45deg, transparent, transparent 60px, rgba(255,255,255,.02) 60px, rgba(255,255,255,.02) 62px); }
.stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; position: relative; }
.stat-block { background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12); border-radius: var(--r-lg); padding: 2.25rem 2rem; text-align: center; transition: background var(--tr), transform var(--tr); }
.stat-block:hover { background: rgba(255,255,255,.12); transform: translateY(-4px); }
.stat-icon { width: 56px; height: 56px; background: rgba(255,255,255,.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.25rem; }
.stat-icon svg { width: 26px; height: 26px; color: rgba(255,255,255,.8); }
.stat-value { font-family: var(--font-h); font-size: 2.6rem; font-weight: 900; color: #fff; line-height: 1; margin-bottom: .4rem; }
.stat-label { font-size: .9375rem; font-weight: 700; color: rgba(255,255,255,.9); margin-bottom: .4rem; }
.stat-desc { font-size: .8rem; color: rgba(255,255,255,.55); line-height: 1.55; }

/* ============================================================
   5. PROGRAM
   ============================================================ */
.program-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.program-card--big { grid-column: span 2; display: grid; grid-template-columns: auto 1fr; align-items: center; }
.program-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--r-lg); overflow: hidden; transition: box-shadow var(--tr), transform var(--tr); }
.program-card:hover { box-shadow: var(--sh-md); transform: translateY(-4px); }
.program-card-img { display: flex; align-items: center; justify-content: center; background: var(--navy-light); min-height: 160px; flex-shrink: 0; }
.program-card--big .program-card-img { width: 200px; min-height: 100%; border-radius: 0; }
.program-card-icon { font-size: 3.5rem; }
.program-card--big .program-card-icon { font-size: 4.5rem; }
.program-card-body { padding: 1.75rem; }
.program-card--big .program-card-body { padding: 2.25rem; }
.program-tag { display: inline-block; font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; padding: .25rem .75rem; border-radius: var(--r-full); margin-bottom: .75rem; }
.program-tag--blue { background: var(--navy-light); color: var(--navy); }
.program-tag--red { background: var(--red-light); color: var(--red); }
.program-tag--green { background: var(--success-bg); color: var(--success); }
.program-tag--orange { background: #FFF7ED; color: #C2410C; }
.program-tag--purple { background: #F5F3FF; color: #6D28D9; }
.program-card h3 { font-family: var(--font-h); font-size: .9875rem; font-weight: 700; margin-bottom: .5rem; line-height: 1.4; }
.program-card--big h3 { font-size: 1.2rem; }
.program-card p { font-size: .875rem; color: var(--muted); line-height: 1.65; margin-bottom: .9rem; }
.program-meta { display: flex; flex-direction: column; gap: .3rem; }
.program-meta span { font-size: .78rem; color: var(--muted); font-weight: 500; }

/* ============================================================
   6. TESTIMONI
   ============================================================ */
.testi-slider { position: relative; overflow: hidden; }
.testi-track { display: flex; transition: transform .45s ease; }
.testi-card { min-width: 100%; background: var(--white); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 2.5rem; flex-shrink: 0; }
.testi-stars { font-size: 1.3rem; color: #F59E0B; letter-spacing: .1em; margin-bottom: 1.1rem; }
.testi-text { font-size: 1.0625rem; line-height: 1.8; color: var(--text); margin-bottom: 1.75rem; font-style: italic; quotes: "\201C" "\201D"; }
.testi-text::before { content: open-quote; }
.testi-text::after { content: close-quote; }
.testi-author { display: flex; align-items: center; gap: 1rem; }
.testi-avatar { width: 60px; height: 60px; border-radius: 50%; object-fit: cover; border: 3px solid var(--red-light); flex-shrink: 0; }
.testi-name { display: block; font-family: var(--font-h); font-size: .9375rem; font-weight: 700; font-style: normal; color: var(--text); }
.testi-role { font-size: .8125rem; color: var(--muted); font-weight: 500; }
.testi-controls { display: flex; align-items: center; justify-content: center; gap: 1.5rem; margin-top: 2rem; }
.testi-btn { width: 44px; height: 44px; border-radius: 50%; background: var(--white); border: 1.5px solid var(--border); display: flex; align-items: center; justify-content: center; color: var(--text); transition: background var(--tr), border-color var(--tr), color var(--tr); }
.testi-btn svg { width: 20px; height: 20px; }
.testi-btn:hover { background: var(--red); border-color: var(--red); color: #fff; }
.testi-dots { display: flex; gap: .5rem; }
.testi-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--border); border: none; cursor: pointer; transition: background var(--tr), transform var(--tr); }
.testi-dot.active { background: var(--red); transform: scale(1.3); }

/* ============================================================
   7. CTA SECTION
   ============================================================ */
.cta-bg-pattern { position: absolute; inset: 0; background-image: radial-gradient(circle at 90% 10%, rgba(255,255,255,.08) 0%, transparent 40%), radial-gradient(circle at 10% 90%, rgba(0,0,0,.15) 0%, transparent 40%); }
.cta-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.cta-title { font-family: var(--font-h); font-size: clamp(1.75rem, 4vw, 2.4rem); font-weight: 900; line-height: 1.25; color: #fff; margin-bottom: 1rem; }
.cta-sub { color: rgba(255,255,255,.82); font-size: 1rem; line-height: 1.75; margin-bottom: 1.75rem; }
.cta-checklist { display: flex; flex-direction: column; gap: .75rem; }
.cta-checklist li { display: flex; align-items: center; gap: .6rem; font-size: .9375rem; color: rgba(255,255,255,.9); font-weight: 500; }
.cta-checklist svg { width: 20px; height: 20px; color: #4ade80; flex-shrink: 0; }
.cta-form-box { background: var(--white); border-radius: var(--r-lg); padding: 2.25rem; box-shadow: var(--sh-lg); }
.cta-form-box h3 { font-family: var(--font-h); font-size: 1.15rem; font-weight: 700; color: var(--text); margin-bottom: 1.5rem; padding-bottom: .75rem; border-bottom: 2px solid var(--red); }
.cta-form-group { margin-bottom: 1rem; }
.cta-form-group input, .cta-form-group select, .cta-form-group textarea { width: 100%; padding: .7rem 1rem; border: 1.5px solid var(--border); border-radius: var(--r-sm); font-size: .9375rem; color: var(--text); background: var(--bg); transition: border-color var(--tr), box-shadow var(--tr); appearance: none; }
.cta-form-group select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3E%3Cpath stroke='%236B7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right .75rem center; background-size: 1.25em; padding-right: 2.5rem; }
.cta-form-group textarea { resize: vertical; min-height: 100px; }
.cta-form-group input:focus, .cta-form-group select:focus, .cta-form-group textarea:focus { outline: none; border-color: var(--navy); box-shadow: 0 0 0 3px rgba(30,58,138,.12); background: #fff; }
.cta-form-group input::placeholder, .cta-form-group textarea::placeholder { color: var(--light); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--navy); color: rgba(255,255,255,.75); }
.footer-main { padding: 4rem 0 3rem; }
.footer-grid { display: grid; grid-template-columns: 1.7fr 1fr 1.1fr 1.1fr; gap: 3rem; }
.footer-col-title { font-family: var(--font-h); font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: rgba(255,255,255,.45); margin-bottom: 1.1rem; }
.footer-brand { display: flex; align-items: center; gap: .75rem; margin-bottom: 1rem; }
.footer-logo { width: 46px; height: 46px; object-fit: contain; border-radius: 50%; background: rgba(255,255,255,.08); border: 2px solid rgba(255,255,255,.15); }
.footer-brand-name { font-family: var(--font-h); font-size: .95rem; font-weight: 900; color: #fff; }
.footer-desc { font-size: .875rem; color: rgba(255,255,255,.6); line-height: 1.75; margin-bottom: 1.5rem; }
.footer-social { display: flex; gap: .5rem; }
.social-link { display: flex; align-items: center; justify-content: center; width: 36px; height: 36px; background: rgba(255,255,255,.1); border-radius: var(--r-sm); color: rgba(255,255,255,.7); transition: background var(--tr), color var(--tr), transform var(--tr); }
.social-link svg { width: 17px; height: 17px; }
.social-link:hover { background: var(--red); color: #fff; transform: translateY(-2px); }
.footer-links { display: flex; flex-direction: column; gap: .6rem; }
.footer-links a { font-size: .875rem; color: rgba(255,255,255,.6); transition: color var(--tr), padding-left var(--tr); display: inline-block; }
.footer-links a:hover { color: #fff; padding-left: 4px; }
.footer-address { font-style: normal; display: flex; flex-direction: column; gap: .9rem; }
.footer-address p { font-size: .875rem; color: rgba(255,255,255,.6); display: flex; align-items: flex-start; gap: .5rem; line-height: 1.6; }
.footer-address svg { width: 15px; height: 15px; color: rgba(255,255,255,.35); flex-shrink: 0; margin-top: 2px; }
.footer-address a { color: rgba(255,255,255,.6); transition: color var(--tr); }
.footer-address a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 1.25rem 0; }
.footer-bottom-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.footer-bottom p { font-size: .8125rem; color: rgba(255,255,255,.4); }
.footer-bottom a { color: rgba(255,255,255,.5); transition: color var(--tr); }
.footer-bottom a:hover { color: #fff; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .layanan-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem 2rem; }
}

@media (max-width: 860px) {
  .hamburger { display: flex; }

  /* Main nav panel */
  .main-nav {
    position: absolute;
    top: calc(var(--bar-h) + var(--head-h));
    left: 0; right: 0;
    background: var(--white);
    border-bottom: 2px solid var(--red);
    box-shadow: var(--sh-lg);
    padding: .5rem .75rem 1rem;
    display: none;
    z-index: 98;
    max-height: calc(100vh - var(--head-h) - var(--bar-h));
    overflow-y: auto;
  }
  .main-nav.open { display: flex; }
  .nav-list { flex-direction: column; align-items: stretch; gap: 0; }

  /* Nav link mobile */
  .nav-link {
    padding: .7rem 1rem;
    justify-content: space-between;
    width: 100%;
    border-radius: var(--r-sm);
  }
  .nav-link::after { display: none; }
  .nav-link--cta {
    text-align: center;
    justify-content: center;
    margin-top: .5rem;
  }

  /* Mobile dropdown: hidden by default, collapses as accordion */
  .dropdown {
    position: static;
    opacity: 1; visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    border-radius: 0;
    background: var(--bg-gray);
    padding: .25rem 0;
    margin: 0 .5rem .25rem;
    border-radius: var(--r-sm);
    border-left: 3px solid var(--red);
    display: none;
    pointer-events: all;
    transition: none;
  }
  .dropdown::before { display: none; }

  /* Show mobile dropdown on .open */
  .has-dropdown.open > .dropdown { display: block; }

  /* Override desktop hover trigger on mobile */
  .has-dropdown:hover > .dropdown { display: none; }
  .has-dropdown.open  > .dropdown { display: block; }

  .dropdown-link {
    padding: .55rem 1rem .55rem 1.4rem;
    font-size: .875rem;
    white-space: normal;
  }
  .dropdown-link:hover { padding-left: 1.8rem; }
  .dropdown-icon { font-size: .85rem; }

  /* Arrow rotation on mobile toggle */
  .has-dropdown.open > .nav-link .nav-arrow { transform: rotate(180deg) !important; opacity: 1; }


  .isu-grid { grid-template-columns: 1fr; }
  .program-card--big { grid-column: span 1; grid-template-columns: 1fr; }
  .program-card--big .program-card-img { width: 100%; min-height: 120px; }
  .cta-inner { grid-template-columns: 1fr; gap: 2.5rem; }
}

@media (max-width: 640px) {
  :root { --section: 3.5rem; }
  .hero-cta-row { flex-direction: column; }
  .hero-cta-row .btn { width: 100%; justify-content: center; }
  .hero-trust-bar { flex-direction: column; gap: .6rem; align-items: flex-start; }
  .trust-sep { display: none; }
  .layanan-grid { grid-template-columns: 1fr; }
  .stat-grid { grid-template-columns: 1fr 1fr; }
  .program-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .testi-card { padding: 1.5rem; }
}

@media (max-width: 420px) {
  .stat-grid { grid-template-columns: 1fr; }
  .topbar-left .topbar-link:nth-child(2) { display: none; }
}

/* ============================================================
   INNER PAGES – SHARED COMPONENTS
   ============================================================ */

/* -- Breadcrumb Bar -- */
.breadcrumb-bar { background: var(--bg-gray); border-bottom: 1px solid var(--border); padding: .6rem 0; }
.breadcrumb { display: flex; align-items: center; gap: .4rem; flex-wrap: wrap; font-size: .8125rem; color: var(--muted); }
.breadcrumb a { color: var(--muted); transition: color var(--tr); }
.breadcrumb a:hover { color: var(--red); }
.breadcrumb-sep { color: var(--light); font-size: .7rem; }
.breadcrumb-current { color: var(--text); font-weight: 500; }

/* -- Inner Page Hero -- */
.inner-hero { background: linear-gradient(130deg, var(--navy) 0%, #152b6e 60%, #1a1a5a 100%); padding: 3.5rem 0 3rem; position: relative; overflow: hidden; }
.inner-hero::before { content: ''; position: absolute; inset: 0; background-image: repeating-linear-gradient(45deg, transparent, transparent 60px, rgba(255,255,255,.022) 60px, rgba(255,255,255,.022) 62px); }
.inner-hero::after { content: ''; position: absolute; right: -120px; top: -80px; width: 400px; height: 400px; border-radius: 50%; background: radial-gradient(circle, rgba(185,28,28,.25) 0%, transparent 70%); }
.inner-hero-content { position: relative; z-index: 1; color: #fff; max-width: 720px; }
.inner-hero-kicker { display: inline-block; font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,.6); margin-bottom: .6rem; }
.inner-hero h1 { font-family: var(--font-h); font-size: clamp(1.6rem, 4vw, 2.5rem); font-weight: 900; line-height: 1.25; margin-bottom: .75rem; }
.inner-hero p { color: rgba(255,255,255,.75); font-size: 1.0625rem; line-height: 1.75; max-width: 600px; }

/* -- Page Body Layout -- */
.page-body { padding: var(--section) 0; background: var(--white); }
.page-body--gray { background: var(--bg-gray); }
.page-layout { display: grid; grid-template-columns: 1fr 300px; gap: 3rem; align-items: start; }
.page-content h2 { font-family: var(--font-h); font-size: 1.5rem; font-weight: 700; margin: 2rem 0 .75rem; color: var(--text); }
.page-content h2:first-child { margin-top: 0; }
.page-content h3 { font-family: var(--font-h); font-size: 1.15rem; font-weight: 700; margin: 1.5rem 0 .5rem; color: var(--text); }
.page-content p { color: var(--muted); line-height: 1.8; margin-bottom: 1rem; font-size: .9375rem; }
.page-content ul, .page-content ol { padding-left: 1.25rem; margin-bottom: 1rem; }
.page-content li { color: var(--muted); font-size: .9375rem; line-height: 1.75; margin-bottom: .35rem; }
.page-content ul li { list-style: disc; }
.page-content ol li { list-style: decimal; }
.page-content strong { color: var(--text); font-weight: 600; }
.page-content a { color: var(--red); text-decoration: underline; }
.page-content hr { border: none; border-top: 1px solid var(--border); margin: 2rem 0; }

/* -- Sidebar -- */
.page-sidebar { display: flex; flex-direction: column; gap: 1.25rem; }
.sidebar-box { background: var(--bg-gray); border: 1px solid var(--border); border-radius: var(--r-md); padding: 1.5rem; }
.sidebar-box h4 { font-family: var(--font-h); font-size: .875rem; font-weight: 700; color: var(--text); margin-bottom: .9rem; padding-bottom: .6rem; border-bottom: 2px solid var(--red); }
.sidebar-nav { display: flex; flex-direction: column; gap: .1rem; }
.sidebar-nav a { display: flex; align-items: center; gap: .5rem; padding: .55rem .75rem; font-size: .875rem; color: var(--text); border-radius: var(--r-sm); transition: background var(--tr), color var(--tr); }
.sidebar-nav a:hover, .sidebar-nav a.active { background: var(--red-light); color: var(--red); font-weight: 600; }
.sidebar-nav a svg { width: 15px; height: 15px; flex-shrink: 0; }
.sidebar-contact p { font-size: .875rem; color: var(--muted); margin-bottom: .5rem; display: flex; align-items: center; gap: .5rem; }
.sidebar-contact svg { width: 15px; height: 15px; color: var(--red); flex-shrink: 0; }
.sidebar-contact a { color: var(--red); }

/* -- Info Box / Alert -- */
.info-box { background: var(--navy-light); border-left: 4px solid var(--navy); border-radius: 0 var(--r-md) var(--r-md) 0; padding: 1.25rem 1.5rem; margin: 1.5rem 0; }
.info-box--red { background: var(--red-light); border-color: var(--red); }
.info-box--green { background: var(--success-bg); border-color: var(--success); }
.info-box h4 { font-family: var(--font-h); font-size: .9rem; font-weight: 700; margin-bottom: .4rem; }
.info-box p { color: var(--muted); font-size: .875rem; margin-bottom: 0; }

/* -- Cards Grid (3-up) -- */
.cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin: 2rem 0; }
.cards-grid--2 { grid-template-columns: repeat(2, 1fr); }
.card { background: var(--white); border: 1px solid var(--border); border-radius: var(--r-md); padding: 1.75rem; transition: box-shadow var(--tr), transform var(--tr); }
.card:hover { box-shadow: var(--sh-md); transform: translateY(-3px); }
.card-icon { width: 48px; height: 48px; background: var(--red-light); border-radius: var(--r-md); display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; }
.card-icon svg { width: 24px; height: 24px; color: var(--red); }
.card h3 { font-family: var(--font-h); font-size: 1rem; font-weight: 700; margin-bottom: .5rem; }
.card p { font-size: .875rem; color: var(--muted); line-height: 1.65; }

/* -- Steps / Process -- */
.steps { display: flex; flex-direction: column; gap: 0; }
.step { display: grid; grid-template-columns: 48px 1fr; gap: 1.25rem; align-items: start; padding: 1.5rem 0; border-bottom: 1px solid var(--border); }
.step:last-child { border-bottom: none; }
.step-num { width: 48px; height: 48px; background: var(--navy); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--font-h); font-weight: 700; font-size: 1.1rem; flex-shrink: 0; }
.step h4 { font-family: var(--font-h); font-size: 1rem; font-weight: 700; margin-bottom: .35rem; }
.step p { font-size: .875rem; color: var(--muted); line-height: 1.65; margin: 0; }

/* -- FAQ -- */
.faq-list { display: flex; flex-direction: column; gap: .75rem; }
.faq-item { border: 1px solid var(--border); border-radius: var(--r-md); overflow: hidden; }
.faq-q { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.1rem 1.25rem; cursor: pointer; font-family: var(--font-h); font-size: .9375rem; font-weight: 700; color: var(--text); background: var(--white); transition: background var(--tr); user-select: none; }
.faq-q:hover { background: var(--bg-gray); }
.faq-q.open { background: var(--navy); color: #fff; }
.faq-chevron { width: 18px; height: 18px; flex-shrink: 0; transition: transform var(--tr); color: var(--muted); }
.faq-q.open .faq-chevron { transform: rotate(180deg); color: rgba(255,255,255,.7); }
.faq-a { display: none; padding: 1rem 1.25rem 1.25rem; background: var(--bg-gray); font-size: .9rem; color: var(--muted); line-height: 1.75; }
.faq-item.open .faq-a { display: block; }

/* -- Team / Struktur -- */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.team-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--r-md); padding: 1.75rem; text-align: center; transition: box-shadow var(--tr), transform var(--tr); }
.team-card:hover { box-shadow: var(--sh-md); transform: translateY(-3px); }
.team-avatar { width: 80px; height: 80px; border-radius: 50%; background: linear-gradient(135deg, var(--navy), var(--navy-dark)); display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; font-size: 2rem; color: #fff; font-family: var(--font-h); font-weight: 700; border: 3px solid var(--red-light); }
.team-name { font-family: var(--font-h); font-size: .9375rem; font-weight: 700; margin-bottom: .25rem; }
.team-role { font-size: .8125rem; color: var(--red); font-weight: 600; margin-bottom: .5rem; }
.team-dept { font-size: .8rem; color: var(--muted); }

/* -- Timeline -- */
.timeline { position: relative; padding-left: 2.5rem; }
.timeline::before { content: ''; position: absolute; left: .75rem; top: 0; bottom: 0; width: 2px; background: var(--border); }
.timeline-item { position: relative; margin-bottom: 2rem; }
.timeline-dot { position: absolute; left: -2rem; top: .3rem; width: 14px; height: 14px; border-radius: 50%; background: var(--red); border: 3px solid var(--white); box-shadow: 0 0 0 2px var(--red); }
.timeline-year { font-size: .78rem; font-weight: 700; color: var(--red); text-transform: uppercase; letter-spacing: .06em; margin-bottom: .25rem; }
.timeline-title { font-family: var(--font-h); font-size: 1rem; font-weight: 700; margin-bottom: .35rem; }
.timeline-desc { font-size: .875rem; color: var(--muted); line-height: 1.65; }

/* -- Legalitas / Dokumen -- */
.doc-list { display: flex; flex-direction: column; gap: .75rem; }
.doc-item { display: flex; align-items: center; gap: 1rem; background: var(--white); border: 1px solid var(--border); border-radius: var(--r-md); padding: 1rem 1.25rem; transition: box-shadow var(--tr), border-color var(--tr); }
.doc-item:hover { box-shadow: var(--sh-sm); border-color: var(--navy); }
.doc-icon { width: 44px; height: 44px; background: var(--navy-light); border-radius: var(--r-sm); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.doc-icon svg { width: 22px; height: 22px; color: var(--navy); }
.doc-info { flex: 1; }
.doc-name { font-weight: 600; font-size: .9375rem; margin-bottom: .15rem; }
.doc-meta { font-size: .8rem; color: var(--muted); }
.doc-badge { font-size: .72rem; font-weight: 700; padding: .25rem .75rem; border-radius: var(--r-full); background: var(--success-bg); color: var(--success); white-space: nowrap; }

/* -- Contact Info Block -- */
.contact-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.contact-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--r-md); padding: 1.75rem; }
.contact-card-icon { width: 48px; height: 48px; background: var(--red-light); border-radius: var(--r-md); display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; }
.contact-card-icon svg { width: 24px; height: 24px; color: var(--red); }
.contact-card h3 { font-family: var(--font-h); font-size: 1rem; font-weight: 700; margin-bottom: .6rem; }
.contact-card p, .contact-card a { font-size: .9rem; color: var(--muted); line-height: 1.7; display: block; }
.contact-card a { color: var(--red); transition: opacity var(--tr); }
.contact-card a:hover { opacity: .75; }

/* -- Inner Page Form -- */
.inner-form { background: var(--white); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 2.25rem; }
.inner-form h3 { font-family: var(--font-h); font-size: 1.15rem; font-weight: 700; margin-bottom: 1.5rem; padding-bottom: .75rem; border-bottom: 2px solid var(--red); }
.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: .4rem; margin-bottom: 1rem; }
.form-group label { font-size: .875rem; font-weight: 600; color: var(--text); }
.form-group label .req { color: var(--red); }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: .7rem 1rem; border: 1.5px solid var(--border); border-radius: var(--r-sm); font-size: .9375rem; color: var(--text); background: var(--bg); transition: border-color var(--tr), box-shadow var(--tr); appearance: none; }
.form-group select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3E%3Cpath stroke='%236B7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right .75rem center; background-size: 1.25em; padding-right: 2.5rem; }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--navy); box-shadow: 0 0 0 3px rgba(30,58,138,.12); background: #fff; }
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--light); }

/* -- Stat Row (inline) -- */
.stat-row { display: flex; gap: 2rem; flex-wrap: wrap; padding: 1.75rem; background: var(--navy); border-radius: var(--r-lg); margin: 2rem 0; }
.stat-row-item { text-align: center; flex: 1; min-width: 100px; }
.stat-row-val { font-family: var(--font-h); font-size: 1.75rem; font-weight: 900; color: #fff; }
.stat-row-lbl { font-size: .78rem; color: rgba(255,255,255,.65); font-weight: 500; }

/* -- Inner Responsive -- */
@media (max-width: 900px) {
  .page-layout { grid-template-columns: 1fr; }
  .page-sidebar { order: -1; }
  .cards-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .cards-grid, .cards-grid--2, .team-grid { grid-template-columns: 1fr; }
  .form-grid-2 { grid-template-columns: 1fr; }
  .stat-row { gap: 1.25rem; }
}


/* ─── Related Pages Section ─────────────────── */
.related-pages { margin: 3rem 0 1rem; padding-top: 2rem; border-top: 2px solid var(--border); }
.related-pages-title { font-family: var(--font-h); font-size: 1rem; font-weight: 700; color: var(--text); margin-bottom: 1.25rem; display: flex; align-items: center; gap: .6rem; }
.related-pages-title::before { content: ''; display: block; width: 4px; height: 1.1em; background: var(--red); border-radius: 2px; flex-shrink: 0; }
.related-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.related-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--r-md); padding: 1.125rem 1.25rem; text-decoration: none; color: var(--text); transition: border-color var(--tr), box-shadow var(--tr), transform var(--tr); display: flex; flex-direction: column; gap: .4rem; }
.related-card:hover { border-color: var(--red); box-shadow: var(--sh-sm); transform: translateY(-2px); color: var(--text); }
.related-card-title { font-family: var(--font-h); font-size: .875rem; font-weight: 700; color: var(--navy); line-height: 1.4; }
.related-card:hover .related-card-title { color: var(--red); }
.related-card-desc { font-size: .775rem; color: var(--muted); line-height: 1.55; }
.related-card-arrow { font-size: .75rem; color: var(--red); font-weight: 700; margin-top: auto; }
@media (max-width: 640px) { .related-cards { grid-template-columns: 1fr; } }

/* ─── Hotline Page ───────────────────────────────────────── */
.hotline-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
}
.hotline-card {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.25rem 1.5rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  transition: transform var(--tr), box-shadow var(--tr), border-color var(--tr);
}
.hotline-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--sh-sm);
  border-color: var(--red);
}
.hotline-card--primary { border-left: 4px solid var(--red); }
.hotline-card--green   { border-left: 4px solid var(--success); }

/* ← The key fix: constrain the icon box so SVG can't overflow */
.hotline-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;        /* prevent flex-shrink squishing */
  background: var(--red-light);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
/* Force all SVGs inside .hotline-icon to exactly 24×24 */
.hotline-icon svg {
  width: 24px !important;
  height: 24px !important;
  max-width: 24px;
  max-height: 24px;
  color: var(--red);
  flex-shrink: 0;
}
.hotline-card--green .hotline-icon { background: var(--success-bg); }
.hotline-card--green .hotline-icon svg { color: var(--success); }

.hotline-info  { flex: 1; min-width: 0; }
.hotline-label {
  font-size: .75rem;
  color: var(--muted);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: .2rem;
}
.hotline-number {
  font-family: var(--font-h);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--red);
  display: block;
  line-height: 1.25;
  margin-bottom: .2rem;
  text-decoration: none;
}
.hotline-number:hover { text-decoration: underline; }
.hotline-hours {
  font-size: .8125rem;
  color: var(--muted);
  font-weight: 500;
}

@media (max-width: 640px) {
  .hotline-card {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
    padding: 1.25rem;
  }
  .hotline-icon { margin: 0 auto; }
  .hotline-number { font-size: 1.05rem; }
}

