/* ===== KOMPONEN CUSTOM DROPDOWN (dipakai di semua halaman via JS) ===== */
.dropdown{ position:relative; cursor:pointer; user-select:none; }
.dropdown select.custom-select-native{
  position:absolute; opacity:0; pointer-events:none; width:1px; height:1px;
}
.custom-select-trigger{
  flex:1; overflow:hidden; text-overflow:ellipsis; white-space:nowrap;
}
.dropdown svg{ transition: transform .22s ease; flex-shrink:0; }
.dropdown.open svg{ transform: rotate(180deg); }
.custom-select-panel{
  position:absolute; top: calc(100% + 10px); left:0; right:0;
  background:#fff; border-radius:14px;
  box-shadow: 0 18px 44px rgba(10,10,60,0.18);
  border: 1px solid var(--border, #E7E8F0);
  padding: 8px;
  max-height: 280px; overflow-y:auto;
  z-index: 60;
  opacity:0; visibility:hidden;
  transform: translateY(-10px) scale(.97);
  transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
}
.dropdown.open .custom-select-panel{
  opacity:1; visibility:visible; transform: translateY(0) scale(1);
}
.custom-select-option{
  padding: 11px 14px; border-radius: 10px;
  font-size:14.5px; font-weight:600; color: var(--navy, #000035);
  transition: background .15s ease, color .15s ease;
  white-space: normal;
}
.custom-select-option:hover{ background:#EAF0FE; }
.custom-select-option.selected{ background: var(--navy, #000035); color:#fff; }

/* ===== dari index.html ===== */
  :root{
    --navy: #000035;
    --navy-soft: #0a0a4a;
    --navy-deep: #05051C;
    --gold: #D4A72C;
    --gold-light: #E8C158;
    --bg: #F7F8FC;
    --text-muted: #6B7280;
    --border: #E7E8F0;
  }
  *{box-sizing:border-box; margin:0; padding:0;}
  html{ scroll-behavior:smooth; }
  section[id]{ scroll-margin-top: 90px; }
  body{
    font-family:'Plus Jakarta Sans', sans-serif;
    color: var(--navy);
    background: #fff;
    -webkit-font-smoothing: antialiased;
  }
  a{ text-decoration:none; color:inherit; }
  ul{ list-style:none; }
  img{ max-width:100%; display:block; }
  .container{
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
  }

  /* NAVBAR */
  header.navbar{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding: 18px 40px;
    border-bottom: 1px solid rgba(255,255,255,0.25);
    background: rgba(255,255,255,0.55);
    backdrop-filter: blur(16px) saturate(160%);
    -webkit-backdrop-filter: blur(16px) saturate(160%);
    position: fixed;
    top:0; left:0; right:0;
    z-index: 100;
    box-shadow: 0 8px 30px rgba(10,10,60,0.05);
  }
  body{ padding-top: 78px; }
  .brand{ display:flex; align-items:center; gap:10px; }
  .brand-logo{
    height: 42px;
    width: auto;
    object-fit: contain;
    display:block;
  }
  .brand-marks{ display:flex; gap:6px; }
  .brand-mark{
    width:36px; height:36px;
    border-radius:8px;
    display:flex; align-items:center; justify-content:center;
    font-weight:800; font-size:16px; color:#fff;
  }
  .brand-mark.u{ background: var(--navy); }
  .brand-mark.d{ background: var(--gold); color: var(--navy); }
  .brand-name{ line-height:1.1; }
  .brand-name .top{ font-weight:800; font-size:15px; color: var(--navy); }
  .brand-name .sub{ font-size:12px; color:#9CA0B0; letter-spacing:0.3px; }

  nav.main-nav{ display:flex; align-items:center; gap:34px; }
  nav.main-nav a{
    font-size:15px; font-weight:600; color:#25253F;
    transition: color .15s ease;
  }
  nav.main-nav a:hover{ color: var(--navy); }
  nav.main-nav a.btn-aspirasi{ color:#fff; }
  nav.main-nav a.btn-aspirasi:hover{ color:#fff; }

  .btn-aspirasi{
    background: var(--navy);
    color:#fff;
    font-weight:700;
    font-size:14.5px;
    padding: 12px 22px;
    border-radius: 10px;
    white-space:nowrap;
  }
  .navbar-right{ display:flex; align-items:center; gap:14px; }
  .hamburger{
    display:none; width:40px; height:40px; border:none; background:transparent;
    align-items:center; justify-content:center; cursor:pointer; color: var(--navy); flex-shrink:0;
  }
  .mobile-cta{ display:none; }

  /* HERO */
  section.hero{
    padding: 60px 40px 90px;
  }
  .hero-grid{
    max-width:1280px;
    margin:0 auto;
    display:grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items:center;
  }
  .badge{
    display:inline-block;
    background: #EAF0FE;
    color: var(--navy);
    font-weight:700;
    font-size:13.5px;
    padding: 9px 18px;
    border-radius: 999px;
    margin-bottom: 26px;
  }
  h1.hero-title{
    font-size: 56px;
    line-height: 1.12;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 24px;
  }
  h1.hero-title .gold{ color: var(--gold); }
  p.hero-desc{
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-muted);
    max-width: 520px;
    margin-bottom: 34px;
  }
  .hero-actions{ display:flex; gap:14px; }
  .btn-primary{
    background: var(--navy);
    color:#fff;
    font-weight:700;
    font-size:15px;
    padding: 16px 26px;
    border-radius: 10px;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  }
  .btn-primary:hover{
    transform: translateY(-4px);
    box-shadow: 0 14px 28px rgba(0,0,53,0.28);
    background: var(--navy-soft);
  }
  .btn-secondary{
    background:#fff;
    color: var(--navy);
    font-weight:700;
    font-size:15px;
    padding: 16px 26px;
    border-radius: 10px;
    border: 1px solid var(--border);
    display:flex; align-items:center; gap:8px;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  }
  .btn-secondary:hover{
    transform: translateY(-4px);
    box-shadow: 0 14px 28px rgba(10,10,60,0.12);
    border-color: var(--gold);
  }
  .btn-secondary svg{ transition: transform .25s ease; }
  .btn-secondary:hover svg{ transform: translateX(4px); }

  .hero-media{ position:relative; }
  .hero-img-wrap{
    border-radius: 22px;
    overflow:hidden;
    aspect-ratio: 4/3.1;
    box-shadow: 0 20px 50px rgba(10,10,60,0.14);
    animation: heroImgIn .7s ease both;
  }
  .hero-img-wrap img{
    width:100%; height:100%; object-fit:cover;
    transition: transform .6s ease;
  }
  .hero-img-wrap:hover img{ transform: scale(1.06); }
  @keyframes heroImgIn{
    from{ opacity:0; transform: translateY(20px) scale(.97); }
    to{ opacity:1; transform: translateY(0) scale(1); }
  }
  .hero-float-card{
    position:absolute;
    left: 26px;
    bottom: -26px;
    background: rgba(255,255,255,0.65);
    backdrop-filter: blur(14px) saturate(160%);
    -webkit-backdrop-filter: blur(14px) saturate(160%);
    border: 1px solid rgba(255,255,255,0.5);
    border-radius: 16px;
    box-shadow: 0 18px 40px rgba(10,10,60,0.18);
    padding: 14px 20px;
    display:flex; align-items:center; gap:12px;
    text-decoration:none;
    animation: floatUpDown 3.2s ease-in-out infinite;
    transition: box-shadow .2s ease;
  }
  .hero-float-card:hover{
    box-shadow: 0 22px 46px rgba(10,10,60,0.24);
    animation-play-state: paused;
  }
  @keyframes floatUpDown{
    0%   { transform: translateY(0); }
    50%  { transform: translateY(-10px); }
    100% { transform: translateY(0); }
  }
  .hero-float-icon{
    width:44px; height:44px;
    border-radius:12px;
    background: var(--gold);
    display:flex; align-items:center; justify-content:center;
    color:var(--navy);
    flex-shrink:0;
  }
  .hero-float-card .label{ font-size:12.5px; color:#6B6E85; margin-bottom:2px; }
  .hero-float-card .value{ font-size:14.5px; font-weight:800; color: var(--navy); }

  /* QUICK LINKS */
  section.quick-links{
    padding: 90px 40px 90px;
    background:#fff;
  }
  .quick-grid{
    max-width:1280px;
    margin: 0 auto;
    display:grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }
  .quick-card{
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 38px 28px;
    text-align:center;
    transition: box-shadow .2s ease, transform .2s ease;
  }
  .quick-card:hover{
    box-shadow: 0 16px 30px rgba(10,10,60,0.08);
    transform: translateY(-3px);
  }
  .quick-icon{
    width:64px; height:64px;
    border-radius:50%;
    background:#EAF0FE;
    display:flex; align-items:center; justify-content:center;
    margin: 0 auto 22px;
    color: var(--navy);
    transition: background .18s ease, color .18s ease;
  }
  .quick-card h3{ font-size:19px; font-weight:700; }
  .quick-card:hover .quick-icon,
  .quick-card.active .quick-icon{
    background: var(--navy);
    color: #fff;
  }

  /* TENTANG */
  section.tentang{
    padding: 40px 40px 100px;
  }
  .tentang-grid{
    max-width:1280px;
    margin:0 auto;
    display:grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items:center;
  }
  .eyebrow{
    display:flex; align-items:center; gap:10px;
    color: var(--gold);
    font-weight:700;
    font-size:14px;
    margin-bottom: 18px;
  }
  .eyebrow .line{ width:28px; height:3px; background: var(--gold); border-radius:2px; }
  h2.tentang-title{
    font-size: 38px;
    font-weight: 800;
    line-height:1.2;
    margin-bottom: 22px;
  }
  p.tentang-desc{
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 34px;
  }
  .tentang-info{ display:flex; gap:44px; }
  .info-item{ display:flex; gap:12px; align-items:flex-start; max-width:220px; }
  .info-icon{ color: var(--navy); flex-shrink:0; margin-top:2px; }
  .info-item h4{ font-size:16px; font-weight:700; margin-bottom:6px; }
  .info-item p{ font-size:14px; color: var(--text-muted); line-height:1.6; }

  .tentang-media{ position:relative; height: 400px; }
  .tentang-img1{
    position:absolute; left:0; top:0;
    width:63%; height:88%;
    border-radius: 20px; overflow:hidden;
    box-shadow: 0 18px 40px rgba(10,10,60,0.12);
    animation: tentangImgIn .7s ease both;
    transition: transform .4s ease, box-shadow .4s ease;
  }
  .tentang-img1:hover{ transform: translateY(-6px); box-shadow: 0 26px 50px rgba(10,10,60,0.18); }
  .tentang-img2{
    position:absolute; right:0; bottom:0;
    width:52%; height:70%;
    border-radius: 20px; overflow:hidden;
    border: 6px solid #fff;
    box-shadow: 0 18px 40px rgba(10,10,60,0.14);
    animation: tentangImgIn .7s ease .15s both;
    transition: transform .4s ease, box-shadow .4s ease;
  }
  .tentang-img2:hover{ transform: translateY(-6px); box-shadow: 0 26px 50px rgba(10,10,60,0.2); }
  .tentang-img1 img, .tentang-img2 img{
    width:100%; height:100%; object-fit:cover;
    transition: transform .6s ease;
  }
  .tentang-img1:hover img, .tentang-img2:hover img{ transform: scale(1.07); }
  @keyframes tentangImgIn{
    from{ opacity:0; transform: translateY(24px); }
    to{ opacity:1; transform: translateY(0); }
  }
  .tentang-float{
    position:absolute;
    left: 50%; top: 45%;
    transform: translate(-30%, -50%);
    background:#fff;
    border-radius: 16px;
    box-shadow: 0 18px 40px rgba(10,10,60,0.18);
    padding: 20px 28px;
    text-align:center;
    z-index:5;
  }
  .tentang-float .num{ font-size: 26px; font-weight:800; color: var(--navy); }
  .tentang-float .lbl{ font-size:12.5px; color:#9CA0B0; margin-top:4px; }

  /* STATS */
  section.stats{
    background: var(--navy);
    padding: 70px 40px;
  }
  .stats-grid{
    max-width:1280px;
    margin:0 auto;
    display:grid;
    grid-template-columns: repeat(4,1fr);
  }
  .stat-item{
    text-align:center;
    padding: 0 20px;
    border-right: 1px solid rgba(255,255,255,0.12);
  }
  .stat-item:last-child{ border-right:none; }
  .stat-num{
    font-size: 42px;
    font-weight: 800;
    color: var(--gold);
    margin-bottom: 10px;
  }
  .stat-label{ font-size:15px; color:#B9BBD3; }

  /* PRODUK HUKUM */
  section.produk{
    padding: 100px 40px;
  }
  .produk-wrap{ max-width:1280px; margin:0 auto; }
  .section-head{
    display:flex; justify-content:space-between; align-items:flex-end; margin-bottom:44px;
  }
  h2.section-title{ font-size: 34px; font-weight:800; margin-top:14px; }
  .lihat-semua{ font-weight:700; font-size:15px; display:flex; align-items:center; gap:8px; color: var(--navy); }
  .produk-grid{
    display:grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
  }
  .produk-card{
    background:#fff;
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 28px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;
    box-shadow: 0 8px 22px rgba(10,10,60,0.05);
    transition: transform .25s cubic-bezier(.34,1.56,.64,1), box-shadow .22s ease, border-color .22s ease;
    cursor: pointer;
  }
  .produk-card:hover{
    transform: translateY(-6px);
    box-shadow: 0 18px 36px rgba(10,10,60,0.12);
    border-color: rgba(212,167,44,0.4);
  }
  .produk-card:active{
    transform: scale(.97) translateY(0);
    box-shadow: 0 6px 14px rgba(10,10,60,0.15);
    transition: transform .12s ease-out, box-shadow .12s ease-out;
  }
  .produk-tags{ display:flex; align-items:center; gap:10px; margin-bottom:16px; }
  .tag{
    background:#EAF0FE;
    color: var(--navy);
    font-weight:700;
    font-size:12.5px;
    padding: 6px 12px;
    border-radius: 999px;
  }
  .tag-code{ color:#9CA0B0; font-size:13px; font-weight:600; }
  .produk-card h3{ font-size:19px; font-weight:700; line-height:1.4; }
  .btn-unduh{
    background: var(--navy);
    color: #fff;
    font-weight:700;
    font-size:14px;
    padding: 12px 18px;
    border-radius: 10px;
    display:flex; align-items:center; gap:8px;
    white-space:nowrap;
    flex-shrink:0;
    transition: background .15s ease;
  }
  .btn-unduh:hover{ background: var(--navy-soft); }

  /* BERITA */
  section.berita{
    padding: 90px 40px 110px;
    background: var(--bg);
    text-align:center;
  }
  .berita-wrap{ max-width:1280px; margin:0 auto; }
  section.berita .eyebrow{ justify-content:center; margin-bottom:16px; }
  section.berita h2{ font-size: 38px; font-weight:800; }
  .berita-head-row{
    display:flex; align-items:center; justify-content:space-between;
    margin-bottom: 50px;
  }
  .berita-head-row .lihat-semua{
    font-weight:700; font-size:15px; display:flex; align-items:center; gap:8px; color: var(--navy);
  }
  .berita-grid{
    display:grid;
    grid-template-columns: repeat(3,1fr);
    gap: 26px;
    text-align:left;
  }
  .berita-card{
    background:#fff;
    border-radius: 18px;
    overflow:hidden;
    box-shadow: 0 10px 30px rgba(10,10,60,0.06);
    display:block;
    transition: transform .25s ease, box-shadow .25s ease;
  }
  .berita-card:hover{
    transform: translateY(-8px);
    box-shadow: 0 22px 44px rgba(10,10,60,0.14);
  }
  .berita-img{ position:relative; height: 200px; overflow:hidden; }
  .berita-img img{ width:100%; height:100%; object-fit:cover; transition: transform .4s ease; }
  .berita-card:hover .berita-img img{ transform: scale(1.08); }
  .berita-date{
    position:absolute; top:16px; left:16px;
    background:#fff;
    font-weight:700;
    font-size:13px;
    padding: 7px 14px;
    border-radius: 999px;
  }
  .berita-body{ padding: 24px; }
  .berita-body h3{ font-size:18px; font-weight:700; line-height:1.4; margin-bottom:16px; }
  .baca-link{ font-weight:700; font-size:14.5px; color: var(--navy); display:flex; align-items:center; gap:6px; }
  .baca-link svg{ transition: transform .25s ease; }
  .berita-card:hover .baca-link svg{ transform: translateX(5px); }

  /* CTA */
  section.cta{
    background: var(--navy);
    padding: 110px 40px;
    text-align:center;
    position:relative;
    overflow:hidden;
  }
  .cta-ring{
    position:absolute;
    border: 1px solid rgba(255,255,255,0.06);
    border-radius:50%;
  }
  .cta-ring.left{ width:420px; height:420px; left:-160px; top:-80px; }
  .cta-ring.right{ width:420px; height:420px; right:-160px; bottom:-120px; }
  .cta-content{ position:relative; z-index:2; max-width: 760px; margin:0 auto; }
  h2.cta-title{ font-size: 44px; font-weight:800; color:#fff; line-height:1.25; margin-bottom: 22px; }
  p.cta-desc{ color:#C7C8DE; font-size:17px; line-height:1.7; margin-bottom: 40px; }
  .btn-gold{
    background: var(--gold);
    color: var(--navy);
    font-weight:800;
    font-size:15.5px;
    padding: 18px 34px;
    border-radius: 12px;
    display:inline-flex; align-items:center; gap:10px;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  }
  .btn-gold:hover{
    transform: translateY(-4px);
    box-shadow: 0 16px 34px rgba(212,167,44,0.35);
    background: var(--gold-light);
  }
  .btn-gold:active{
    transform: translateY(-1px);
  }

  /* FOOTER */
  footer{
    background: var(--navy-deep);
    padding: 70px 40px 30px;
    color:#fff;
  }
  .footer-grid{
    max-width:1280px;
    margin:0 auto;
    display:grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 44px;
  }
  .footer-brand{ display:flex; align-items:center; gap:10px; margin-bottom:20px; }
  .footer-brand .brand-mark{ width:34px; height:34px; font-size:14px; }
  .footer-logo{ height: 38px; }
  .footer-brand span{ font-weight:800; font-size:16px; }
  p.footer-desc{ color:#A6A8C4; font-size:14.5px; line-height:1.7; max-width:340px; margin-bottom:24px; }
  .socials{ display:flex; gap:12px; }
  .social-btn{
    width:38px; height:38px;
    border-radius:50%;
    background: rgba(255,255,255,0.08);
    display:flex; align-items:center; justify-content:center;
    font-weight:700; font-size:13px;
  }
  footer h4{ font-size:16px; font-weight:700; margin-bottom:22px; }
  footer .footer-links li{ margin-bottom:16px; }
  footer .footer-links a{ color:#B9BBD3; font-size:14.5px; }
  footer .footer-links a:hover{ color:#fff; }
  .kontak-item{ display:flex; align-items:center; gap:10px; margin-bottom:16px; color:#B9BBD3; font-size:14.5px; }
  .kontak-icon{ color: var(--gold); flex-shrink:0; }
  .footer-bottom{
    max-width:1280px;
    margin:0 auto;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 26px;
    display:flex; justify-content:space-between; align-items:center;
    color:#8688AB; font-size:13.5px;
  }
  .footer-bottom-links{ display:flex; gap:26px; }
  .footer-bottom-links a{ color:#8688AB; }
  .footer-bottom-links a:hover{ color:#fff; }

  /* ===== RESPONSIVE ===== */
  @media (max-width: 1100px){
    .container{ padding: 0 24px; }
    .hero{ padding-left:24px; padding-right:24px; }
    .hero-grid{ gap:36px; }
    h1.hero-title{ font-size: 44px; }
    .quick-grid{ grid-template-columns: repeat(2, 1fr); }
    .tentang-grid{ gap:36px; }
    .produk-grid{ grid-template-columns: 1fr; }
    .berita-grid{ grid-template-columns: repeat(2,1fr); }
    .stats-grid{ grid-template-columns: repeat(2,1fr); gap: 28px 0; }
    .stat-item{ border-right:none; padding-bottom:20px; }
    .footer-grid{ grid-template-columns: 1fr 1fr; gap: 36px 24px; }
  }

  @media (max-width: 900px){
    header.navbar{ padding: 14px 20px; }
    .brand-name .sub{ display:none; }
    nav.main-nav{
      position:fixed;
      top:70px; left:0; right:0;
      background:#fff;
      flex-direction:column;
      align-items:flex-start;
      gap:0;
      padding: 0 20px;
      max-height:0;
      overflow:hidden;
      opacity:0;
      transition: max-height .3s ease, opacity .25s ease, padding .3s ease;
      box-shadow: 0 16px 30px rgba(10,10,60,0.08);
      border-bottom: 1px solid var(--border);
    }
    nav.main-nav.open{ max-height:560px; opacity:1; padding: 10px 20px 24px; }
    nav.main-nav a{ width:100%; padding: 14px 0; border-bottom: 1px solid var(--border); font-size:16px; }
    .navbar-right .btn-aspirasi{ display:none; }
    .mobile-cta{ display:block; margin-top: 14px; text-align:center; width:100%; }
    .hamburger{ display:flex; }

    section.hero{ padding: 40px 20px 60px; }
    .hero-grid{ grid-template-columns: 1fr; }
    .hero-media{ order:-1; }
    h1.hero-title{ font-size: 36px; }
    p.hero-desc{ max-width:100%; }
    .hero-actions{ flex-wrap:wrap; }
    .hero-float-card{ left:14px; }

    section.quick-links{ padding: 50px 20px; }
    section.tentang{ padding: 20px 20px 60px; }
    .tentang-grid{ grid-template-columns: 1fr; }
    .tentang-media{ height: 320px; order:-1; }
    h2.tentang-title{ font-size: 30px; }
    .tentang-info{ flex-wrap:wrap; gap:24px; }

    section.stats{ padding: 44px 20px; }
    .stat-num{ font-size: 32px; }

    section.produk{ padding: 60px 20px; }
    .section-head{ flex-direction:column; align-items:flex-start; gap:14px; }
    .produk-card{ flex-direction:column; align-items:flex-start; }
    .btn-unduh{ width:100%; justify-content:center; }

    section.berita{ padding: 60px 20px 70px; }
    .berita-head-row{ flex-direction:column; align-items:flex-start; gap:14px; }
    .berita-grid{ grid-template-columns: 1fr; }

    section.cta{ padding: 70px 20px; }
    h2.cta-title{ font-size: 30px; }

    footer{ padding: 50px 20px 24px; }
    .footer-grid{ grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom{ flex-direction:column; align-items:flex-start; gap:14px; }
  }

  @media (max-width: 480px){
    .quick-grid{ grid-template-columns: 1fr; }
    .stats-grid{ grid-template-columns: 1fr 1fr; }
    h1.hero-title{ font-size: 30px; }
    h2.section-title{ font-size: 26px; }
  }

/* ===== dari produk-hukum.html ===== */
  :root{
    --navy: #000035;
    --navy-soft: #0a0a4a;
    --navy-deep: #05051C;
    --gold: #D4A72C;
    --gold-light: #E8C158;
    --bg: #F7F8FC;
    --text-muted: #6B7280;
    --border: #E7E8F0;
  }
  *{box-sizing:border-box; margin:0; padding:0;}
  html{ scroll-behavior:smooth; }
  body{
    font-family:'Plus Jakarta Sans', sans-serif;
    color: var(--navy);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    padding-top: 78px;
  }
  a{ text-decoration:none; color:inherit; }
  ul{ list-style:none; }
  img{ max-width:100%; display:block; }
  button{ font-family:inherit; cursor:pointer; }
  .container{ max-width: 1280px; margin: 0 auto; padding: 0 40px; }

  /* NAVBAR (shared) */
  header.navbar{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding: 18px 40px;
    border-bottom: 1px solid rgba(255,255,255,0.25);
    background: rgba(255,255,255,0.75);
    backdrop-filter: blur(16px) saturate(160%);
    -webkit-backdrop-filter: blur(16px) saturate(160%);
    position: fixed;
    top:0; left:0; right:0;
    z-index: 100;
    box-shadow: 0 8px 30px rgba(10,10,60,0.05);
  }
  .brand{ display:flex; align-items:center; gap:10px; }
  .brand-marks{ display:flex; gap:6px; }
  .brand-mark{
    width:36px; height:36px;
    border-radius:8px;
    display:flex; align-items:center; justify-content:center;
    font-weight:800; font-size:16px; color:#fff;
  }
  .brand-mark.u{ background: var(--navy); }
  .brand-mark.d{ background: var(--gold); color: var(--navy); }
  .brand-name{ line-height:1.1; }
  .brand-name .top{ font-weight:800; font-size:15px; color: var(--navy); }
  .brand-name .sub{ font-size:12px; color:#9CA0B0; letter-spacing:0.3px; }
  nav.main-nav{ display:flex; align-items:center; gap:34px; }
  nav.main-nav a{ font-size:15px; font-weight:600; color:#25253F; transition: color .15s ease; }
  nav.main-nav a:hover, nav.main-nav a.active{ color: var(--navy); }
  nav.main-nav a.btn-aspirasi{ color:#fff; }
  nav.main-nav a.btn-aspirasi:hover{ color:#fff; }
  .btn-aspirasi{
    background: var(--navy); color:#fff; font-weight:700; font-size:14.5px;
    padding: 12px 22px; border-radius: 10px; white-space:nowrap;
  }
  .navbar-right{ display:flex; align-items:center; gap:14px; }
  .hamburger{
    display:none; width:40px; height:40px; border:none; background:transparent;
    align-items:center; justify-content:center; cursor:pointer; color: var(--navy); flex-shrink:0;
  }
  .mobile-cta{ display:none; }

  /* PAGE HERO */
  section.page-hero{ padding: 64px 40px 40px; }
  .eyebrow{
    display:flex; align-items:center; gap:10px;
    color: var(--gold); font-weight:700; font-size:14px; margin-bottom: 18px;
  }
  .eyebrow .line{ width:28px; height:3px; background: var(--gold); border-radius:2px; }
  h1.page-title{ font-size: 46px; font-weight: 800; letter-spacing:-1px; margin-bottom: 20px; }
  p.page-desc{ font-size: 16.5px; line-height:1.7; color: var(--text-muted); max-width: 640px; }

  /* SEARCH BAR */
  section.search-bar{ padding: 30px 40px 10px; }
  .search-panel{
    max-width:1280px; margin:0 auto;
    background:#fff;
    border-radius: 20px;
    box-shadow: 0 10px 34px rgba(10,10,60,0.06);
    padding: 26px;
    display:flex; gap:14px; flex-wrap:wrap;
  }
  .search-input{
    flex: 1 1 320px;
    display:flex; align-items:center; gap:10px;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 14px 18px;
    color: var(--text-muted);
  }
  .search-input input{
    border:none; outline:none; font-size:15px; width:100%;
    font-family:inherit; color: var(--navy);
  }
  .search-input input::placeholder{ color:#A6A9BE; }
  .dropdown{
    display:flex; align-items:center; gap:10px;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 14px 18px;
    font-weight:600; font-size:15px;
    color: var(--navy);
    white-space:nowrap;
    background:#fff;
    position:relative;
  }
  .dropdown select{
    appearance:none;
    -webkit-appearance:none;
    border:none;
    outline:none;
    background:transparent;
    font-family:inherit;
    font-weight:600;
    font-size:15px;
    color: var(--navy);
    cursor:pointer;
    padding-right:4px;
  }
  .filter-pill{
    display:flex; align-items:center; gap:10px;
    background: #EAF0FE;
    border: 1px solid #EAF0FE;
    border-radius: 12px;
    padding: 14px 20px;
    font-weight:700; font-size:15px;
    color: var(--navy);
    white-space:nowrap;
    font-family:inherit;
    transition: background .15s ease;
  }
  .filter-pill:hover{ background:#DCE7FD; }

  .empty-state{
    max-width:1280px; margin: 40px auto 0;
    text-align:center;
    color: var(--text-muted);
    font-size:15px;
    background:#fff;
    border-radius:20px;
    padding: 50px 30px;
    box-shadow: 0 10px 30px rgba(10,10,60,0.05);
  }

  /* DOCUMENT LIST */
  section.doc-list{ padding: 30px 40px 10px; }
  .doc-wrap{ max-width:1280px; margin:0 auto; display:flex; flex-direction:column; gap:20px; }
  .doc-card{
    background:#fff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(10,10,60,0.05);
    padding: 30px;
    display:flex;
    gap:22px;
    align-items:flex-start;
    transition: transform .22s ease, box-shadow .22s ease;
  }
  .doc-card:hover{
    transform: translateY(-6px);
    box-shadow: 0 18px 38px rgba(10,10,60,0.12);
  }
  .doc-icon{
    width:56px; height:56px; flex-shrink:0;
    border-radius:50%;
    background:#EAF0FE;
    color: var(--navy);
    display:flex; align-items:center; justify-content:center;
    transition: background .18s ease, color .18s ease;
  }
  .doc-card:hover .doc-icon{
    background: var(--navy);
    color: #fff;
  }
  .doc-body{ flex:1; }
  .doc-tags{ display:flex; align-items:center; gap:10px; margin-bottom:14px; flex-wrap:wrap; }
  .tag{
    background:#EEF0F5; color:#3B3D52; font-weight:700; font-size:12.5px;
    padding: 6px 12px; border-radius: 999px;
  }
  .tag-year{ background:#FCF2DA; color:#B4841C; }
  .tag-code{ background:#EAF0FE; color: var(--navy); }
  .tag-parlemen{ background: var(--navy); color:#fff; }
  .doc-body h3{ font-size:20px; font-weight:700; margin-bottom:10px; }
  .doc-body p{ font-size:14.5px; color: var(--text-muted); line-height:1.7; max-width: 760px; }
  .btn-unduh{
    background: #fff; color: var(--navy); font-weight:700; font-size:14px;
    padding: 13px 20px; border-radius: 10px;
    border: 1px solid var(--border);
    display:flex; align-items:center; gap:8px; white-space:nowrap; flex-shrink:0;
    transition: background .15s ease, color .15s ease, border-color .15s ease;
    align-self:flex-start;
  }
  .btn-unduh:hover{ background: var(--navy); color:#fff; border-color: var(--navy); }

  /* PAGINATION */
  section.pagination-wrap{ padding: 20px 40px 90px; }
  .pagination-row{
    max-width:1280px; margin:0 auto;
    display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:16px;
  }
  .pagination-info{ font-size:14.5px; color: var(--text-muted); }
  .pagination-info b{ color: var(--navy); }
  .pagination-controls{ display:flex; gap:10px; }
  .page-btn{
    width:40px; height:40px;
    border: 1px solid var(--border);
    border-radius: 10px;
    display:flex; align-items:center; justify-content:center;
    font-weight:700; font-size:14.5px;
    color: var(--navy);
    background:#fff;
  }
  .page-btn.active{ background: var(--navy); color:#fff; border-color: var(--navy); }
  .page-btn:disabled{ color:#C7C9D6; cursor:not-allowed; }

  .doc-item{ display: none; }
  .doc-item.show{ display:flex; }

  /* FOOTER (shared) */
  footer{ background: var(--navy-deep); padding: 70px 40px 30px; color:#fff; }
  .footer-grid{
    max-width:1280px; margin:0 auto;
    display:grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 60px; padding-bottom: 44px;
  }
  .footer-brand{ display:flex; align-items:center; gap:10px; margin-bottom:20px; }
  .footer-brand .brand-mark{ width:34px; height:34px; font-size:14px; }
  .footer-brand span{ font-weight:800; font-size:16px; }
  p.footer-desc{ color:#A6A8C4; font-size:14.5px; line-height:1.7; max-width:340px; margin-bottom:24px; }
  .socials{ display:flex; gap:12px; }
  .social-btn{
    width:38px; height:38px; border-radius:50%; background: rgba(255,255,255,0.08);
    display:flex; align-items:center; justify-content:center; font-weight:700; font-size:13px;
  }
  footer h4{ font-size:16px; font-weight:700; margin-bottom:22px; }
  footer .footer-links li{ margin-bottom:16px; }
  footer .footer-links a{ color:#B9BBD3; font-size:14.5px; }
  footer .footer-links a:hover{ color:#fff; }
  .kontak-item{ display:flex; align-items:center; gap:10px; margin-bottom:16px; color:#B9BBD3; font-size:14.5px; }
  .kontak-icon{ color: var(--gold); flex-shrink:0; }
  .footer-bottom{
    max-width:1280px; margin:0 auto; border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 26px; display:flex; justify-content:space-between; align-items:center;
    color:#8688AB; font-size:13.5px; flex-wrap:wrap; gap:14px;
  }
  .footer-bottom-links{ display:flex; gap:26px; }
  .footer-bottom-links a{ color:#8688AB; }
  .footer-bottom-links a:hover{ color:#fff; }

  @media (max-width: 1100px){
    .container{ padding: 0 24px; }
    section.page-hero{ padding: 54px 24px 30px; }
    section.search-bar{ padding: 20px 24px 10px; }
    section.doc-list{ padding: 20px 24px 10px; }
    section.pagination-wrap{ padding: 20px 24px 70px; }
  }

  @media (max-width: 900px){
    header.navbar{ padding: 14px 20px; }
    .brand-name .sub{ display:none; }
    nav.main-nav{
      position:fixed;
      top:70px; left:0; right:0;
      background:#fff;
      flex-direction:column;
      align-items:flex-start;
      gap:0;
      padding: 0 20px;
      max-height:0;
      overflow:hidden;
      opacity:0;
      transition: max-height .3s ease, opacity .25s ease, padding .3s ease;
      box-shadow: 0 16px 30px rgba(10,10,60,0.08);
      border-bottom: 1px solid var(--border);
    }
    nav.main-nav.open{ max-height:560px; opacity:1; padding: 10px 20px 24px; }
    nav.main-nav a{ width:100%; padding: 14px 0; border-bottom: 1px solid var(--border); font-size:16px; }
    .navbar-right .btn-aspirasi{ display:none; }
    .mobile-cta{ display:block; margin-top: 14px; text-align:center; width:100%; }
    .hamburger{ display:flex; }

    section.page-hero{ padding: 40px 20px 24px; }
    h1.page-title{ font-size: 32px; }

    .search-panel{ flex-direction:column; padding:18px; }
    .dropdown, .filter-pill, .search-input{ width:100%; }

    .doc-card{ flex-direction:column; padding: 22px; }
    .btn-unduh{ align-self:stretch; justify-content:center; }
    .doc-tags{ flex-wrap:wrap; }

    .pagination-row{ flex-direction:column; align-items:flex-start; gap:14px; }

    .footer-grid{ grid-template-columns:1fr; gap:32px; }
    .footer-bottom{ flex-direction:column; align-items:flex-start; gap:14px; }
  }

  @media (max-width: 480px){
    h1.page-title{ font-size: 26px; }
    .doc-info h3{ font-size: 15.5px; }
  }

/* ===== dari dokumentasi.html ===== */
  :root{
    --navy: #000035;
    --navy-soft: #0a0a4a;
    --navy-deep: #05051C;
    --gold: #D4A72C;
    --gold-light: #E8C158;
    --bg: #F7F8FC;
    --text-muted: #6B7280;
    --border: #E7E8F0;
  }
  *{box-sizing:border-box; margin:0; padding:0;}
  html{ scroll-behavior:smooth; }
  body{
    font-family:'Plus Jakarta Sans', sans-serif;
    color: var(--navy);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    padding-top: 78px;
  }
  a{ text-decoration:none; color:inherit; }
  ul{ list-style:none; }
  img{ max-width:100%; display:block; }
  button{ font-family:inherit; cursor:pointer; }
  .container{ max-width: 1280px; margin: 0 auto; padding: 0 40px; }

  /* NAVBAR */
  header.navbar{
    display:flex; align-items:center; justify-content:space-between;
    padding: 18px 40px;
    border-bottom: 1px solid rgba(255,255,255,0.25);
    background: rgba(255,255,255,0.75);
    backdrop-filter: blur(16px) saturate(160%);
    -webkit-backdrop-filter: blur(16px) saturate(160%);
    position: fixed; top:0; left:0; right:0; z-index: 100;
    box-shadow: 0 8px 30px rgba(10,10,60,0.05);
  }
  .brand{ display:flex; align-items:center; gap:10px; }
  .brand-marks{ display:flex; gap:6px; }
  .brand-mark{
    width:36px; height:36px; border-radius:8px;
    display:flex; align-items:center; justify-content:center;
    font-weight:800; font-size:16px; color:#fff;
  }
  .brand-mark.u{ background: var(--navy); }
  .brand-mark.d{ background: var(--gold); color: var(--navy); }
  .brand-name{ line-height:1.1; }
  .brand-name .top{ font-weight:800; font-size:15px; color: var(--navy); }
  .brand-name .sub{ font-size:12px; color:#9CA0B0; letter-spacing:0.3px; }
  nav.main-nav{ display:flex; align-items:center; gap:34px; }
  nav.main-nav a{ font-size:15px; font-weight:600; color:#25253F; transition: color .15s ease; }
  nav.main-nav a:hover, nav.main-nav a.active{ color: var(--navy); }
  nav.main-nav a.btn-aspirasi{ color:#fff; }
  nav.main-nav a.btn-aspirasi:hover{ color:#fff; }
  .btn-aspirasi{
    background: var(--navy); color:#fff; font-weight:700; font-size:14.5px;
    padding: 12px 22px; border-radius: 10px; white-space:nowrap;
  }
  .navbar-right{ display:flex; align-items:center; gap:14px; }
  .hamburger{
    display:none; width:40px; height:40px; border:none; background:transparent;
    align-items:center; justify-content:center; cursor:pointer; color: var(--navy); flex-shrink:0;
  }
  .mobile-cta{ display:none; }

  /* PAGE HERO */
  section.page-hero{ padding: 64px 40px 40px; }
  .eyebrow{
    display:flex; align-items:center; gap:10px;
    color: var(--gold); font-weight:700; font-size:14px; margin-bottom: 18px;
  }
  .eyebrow .line{ width:28px; height:3px; background: var(--gold); border-radius:2px; }
  h1.page-title{ font-size: 46px; font-weight: 800; letter-spacing:-1px; margin-bottom: 20px; }
  p.page-desc{ font-size: 16.5px; line-height:1.7; color: var(--text-muted); max-width: 640px; }

  /* SEARCH BAR */
  section.search-bar{ padding: 30px 40px 10px; }
  .search-panel{
    max-width:1280px; margin:0 auto;
    background:#fff;
    border-radius: 20px;
    box-shadow: 0 10px 34px rgba(10,10,60,0.06);
    padding: 26px;
    display:flex; gap:14px; flex-wrap:wrap;
  }
  .search-input{
    flex: 1 1 320px;
    display:flex; align-items:center; gap:10px;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 14px 18px;
    color: var(--text-muted);
  }
  .search-input input{
    border:none; outline:none; font-size:15px; width:100%;
    font-family:inherit; color: var(--navy);
  }
  .search-input input::placeholder{ color:#A6A9BE; }
  .dropdown{
    display:flex; align-items:center; gap:10px;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 14px 18px;
    background:#fff;
    white-space:nowrap;
  }
  .dropdown select{
    appearance:none; -webkit-appearance:none;
    border:none; outline:none; background:transparent;
    font-family:inherit; font-weight:600; font-size:15px;
    color: var(--navy); cursor:pointer; padding-right:4px;
  }

  /* GALLERY GRID */
  section.gallery-list{ padding: 30px 40px 100px; }
  .gallery-grid{
    max-width:1280px; margin:0 auto;
    display:grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 26px;
  }
  .gallery-card{
    background:#fff;
    border-radius: 18px;
    overflow:hidden;
    box-shadow: 0 10px 30px rgba(10,10,60,0.06);
    display:block;
    transition: transform .18s ease, box-shadow .18s ease;
  }
  .gallery-card:hover{ transform: translateY(-4px); box-shadow: 0 18px 40px rgba(10,10,60,0.12); }
  .gallery-thumb{ position:relative; height: 220px; overflow:hidden; }
  .gallery-thumb img{ width:100%; height:100%; object-fit:cover; transition: transform .3s ease; }
  .gallery-card:hover .gallery-thumb img{ transform: scale(1.06); }
  .gallery-badge{
    position:absolute; top:14px; left:14px;
    background:#fff; color: var(--navy);
    font-weight:700; font-size:12.5px;
    padding: 7px 14px; border-radius: 999px;
  }
  .gallery-count{
    position:absolute; top:14px; right:14px;
    background: rgba(10,10,40,0.65);
    color:#fff; font-weight:700; font-size:12.5px;
    padding: 7px 12px; border-radius: 999px;
    display:flex; align-items:center; gap:5px;
  }
  .gallery-overlay{
    position:absolute; inset:0;
    background: rgba(5,5,28,0.45);
    display:flex; align-items:center; justify-content:center;
    opacity:0;
    transition: opacity .2s ease;
  }
  .gallery-card:hover .gallery-overlay{ opacity:1; }
  .lihat-galeri-pill{
    background: rgba(212,167,44,0.9);
    color: var(--navy);
    font-weight:700; font-size:14.5px;
    padding: 12px 22px;
    border-radius: 999px;
    display:flex; align-items:center; gap:9px;
    backdrop-filter: blur(4px);
  }
  .gallery-body{ padding: 20px 22px 24px; }
  .tag-parlemen-mini{
    display:inline-block; background: var(--navy); color:#fff; font-weight:700; font-size:11px;
    padding: 4px 10px; border-radius: 999px; margin-bottom:10px;
  }
  .gallery-body h3{ font-size:17px; font-weight:700; line-height:1.4; margin-bottom:12px; }
  .gallery-meta{ display:flex; flex-direction:column; gap:7px; }
  .meta-row{ display:flex; align-items:center; gap:8px; font-size:13.5px; color: var(--text-muted); }
  .meta-row svg{ flex-shrink:0; color:#A6A9BE; }

  .empty-state{
    max-width:1280px; margin: 0 auto;
    text-align:center; color: var(--text-muted); font-size:15px;
    background:#fff; border-radius:20px; padding: 50px 30px;
    box-shadow: 0 10px 30px rgba(10,10,60,0.05);
  }

  /* PAGINATION */
  section.pagination-wrap{ padding: 20px 40px 90px; }
  .pagination-row{
    max-width:1280px; margin:0 auto;
    display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:16px;
  }
  .pagination-info{ font-size:14.5px; color: var(--text-muted); }
  .pagination-info b{ color: var(--navy); }
  .pagination-controls{ display:flex; gap:10px; }
  .page-btn{
    width:40px; height:40px; border: 1px solid var(--border); border-radius: 10px;
    display:flex; align-items:center; justify-content:center;
    font-weight:700; font-size:14.5px; color: var(--navy); background:#fff;
  }
  .page-btn.active{ background: var(--navy); color:#fff; border-color: var(--navy); }
  .page-btn:disabled{ color:#C7C9D6; cursor:not-allowed; }

  /* FOOTER */
  footer{ background: var(--navy-deep); padding: 70px 40px 30px; color:#fff; }
  .footer-grid{
    max-width:1280px; margin:0 auto;
    display:grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 60px; padding-bottom: 44px;
  }
  .footer-brand{ display:flex; align-items:center; gap:10px; margin-bottom:20px; }
  .footer-brand .brand-mark{ width:34px; height:34px; font-size:14px; }
  .footer-brand span{ font-weight:800; font-size:16px; }
  p.footer-desc{ color:#A6A8C4; font-size:14.5px; line-height:1.7; max-width:340px; margin-bottom:24px; }
  .socials{ display:flex; gap:12px; }
  .social-btn{
    width:38px; height:38px; border-radius:50%; background: rgba(255,255,255,0.08);
    display:flex; align-items:center; justify-content:center; font-weight:700; font-size:13px;
  }
  footer h4{ font-size:16px; font-weight:700; margin-bottom:22px; }
  footer .footer-links li{ margin-bottom:16px; }
  footer .footer-links a{ color:#B9BBD3; font-size:14.5px; }
  footer .footer-links a:hover{ color:#fff; }
  .kontak-item{ display:flex; align-items:center; gap:10px; margin-bottom:16px; color:#B9BBD3; font-size:14.5px; }
  .kontak-icon{ color: var(--gold); flex-shrink:0; }
  .footer-bottom{
    max-width:1280px; margin:0 auto; border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 26px; display:flex; justify-content:space-between; align-items:center;
    color:#8688AB; font-size:13.5px; flex-wrap:wrap; gap:14px;
  }
  .footer-bottom-links{ display:flex; gap:26px; }
  .footer-bottom-links a{ color:#8688AB; }
  .footer-bottom-links a:hover{ color:#fff; }

  @media (max-width: 1100px){ .gallery-grid{ grid-template-columns: repeat(2,1fr); } .container{ padding:0 24px; } .page-hero{ padding:56px 24px 30px; } .search-bar{ padding:20px 24px 10px; } section.gallery-list{ padding: 30px 24px 90px; } }

  @media (max-width: 900px){
    header.navbar{ padding: 14px 20px; }
    .brand-name .sub{ display:none; }
    nav.main-nav{
      position:fixed; top:70px; left:0; right:0; background:#fff;
      flex-direction:column; align-items:flex-start; gap:0; padding: 0 20px;
      max-height:0; overflow:hidden; opacity:0;
      transition: max-height .3s ease, opacity .25s ease, padding .3s ease;
      box-shadow: 0 16px 30px rgba(10,10,60,0.08); border-bottom: 1px solid var(--border);
    }
    nav.main-nav.open{ max-height:560px; opacity:1; padding: 10px 20px 24px; }
    nav.main-nav a{ width:100%; padding: 14px 0; border-bottom: 1px solid var(--border); font-size:16px; }
    .navbar-right .btn-aspirasi{ display:none; }
    .mobile-cta{ display:block; margin-top: 14px; text-align:center; width:100%; }
    .hamburger{ display:flex; }

    section.page-hero{ padding: 40px 20px 30px; }
    h1.page-title{ font-size: 34px; }
    p.page-desc{ font-size:15px; }

    section.search-bar{ padding: 20px 20px 10px; }
    .search-panel{ padding: 18px; flex-direction:column; align-items:stretch; }
    .dropdown{ justify-content:space-between; }

    section.gallery-list{ padding: 30px 20px 70px; }
    .gallery-grid{ grid-template-columns: 1fr 1fr; gap:16px; }

    section.pagination-wrap{ padding: 20px 20px 70px; }
    .pagination-row{ flex-direction:column; align-items:flex-start; gap:14px; }

    footer{ padding: 50px 20px 24px; }
    .footer-grid{ grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom{ flex-direction:column; align-items:flex-start; gap:14px; }
  }

  @media (max-width: 560px){
    .gallery-grid{ grid-template-columns: 1fr; }
    h1.page-title{ font-size: 28px; }
  }

/* ===== dari galeri-detail.html ===== */
  :root{
    --navy: #000035;
    --navy-soft: #0a0a4a;
    --navy-deep: #05051C;
    --gold: #D4A72C;
    --bg: #F7F8FC;
    --text-muted: #6B7280;
    --border: #E7E8F0;
  }
  *{box-sizing:border-box; margin:0; padding:0;}
  html{ scroll-behavior:smooth; }
  body{
    font-family:'Plus Jakarta Sans', sans-serif;
    color: var(--navy);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    padding-top: 78px;
  }
  a{ text-decoration:none; color:inherit; }
  ul{ list-style:none; }
  img{ max-width:100%; display:block; }
  button{ font-family:inherit; cursor:pointer; background:none; border:none; }
  .container{ max-width: 1280px; margin: 0 auto; padding: 0 40px; }

  /* NAVBAR */
  header.navbar{
    display:flex; align-items:center; justify-content:space-between;
    padding: 18px 40px;
    border-bottom: 1px solid rgba(255,255,255,0.25);
    background: rgba(255,255,255,0.75);
    backdrop-filter: blur(16px) saturate(160%);
    -webkit-backdrop-filter: blur(16px) saturate(160%);
    position: fixed; top:0; left:0; right:0; z-index: 200;
    box-shadow: 0 8px 30px rgba(10,10,60,0.05);
  }
  .brand{ display:flex; align-items:center; gap:10px; }
  .brand-marks{ display:flex; gap:6px; }
  .brand-mark{
    width:36px; height:36px; border-radius:8px;
    display:flex; align-items:center; justify-content:center;
    font-weight:800; font-size:16px; color:#fff;
  }
  .brand-mark.u{ background: var(--navy); }
  .brand-mark.d{ background: var(--gold); color: var(--navy); }
  .brand-name{ line-height:1.1; }
  .brand-name .top{ font-weight:800; font-size:15px; color: var(--navy); }
  .brand-name .sub{ font-size:12px; color:#9CA0B0; letter-spacing:0.3px; }
  nav.main-nav{ display:flex; align-items:center; gap:34px; }
  nav.main-nav a{ font-size:15px; font-weight:600; color:#25253F; transition: color .15s ease; }
  nav.main-nav a:hover, nav.main-nav a.active{ color: var(--navy); }
  nav.main-nav a.btn-aspirasi{ color:#fff; }
  nav.main-nav a.btn-aspirasi:hover{ color:#fff; }
  .btn-aspirasi{
    background: var(--navy); color:#fff; font-weight:700; font-size:14.5px;
    padding: 12px 22px; border-radius: 10px; white-space:nowrap;
  }
  .navbar-right{ display:flex; align-items:center; gap:14px; }
  .hamburger{
    display:none; width:40px; height:40px; border:none; background:transparent;
    align-items:center; justify-content:center; cursor:pointer; color: var(--navy); flex-shrink:0;
  }
  .mobile-cta{ display:none; }

  /* HERO */
  .detail-hero{
    position:relative;
    height: 440px;
    overflow:hidden;
  }
  .detail-hero img{ width:100%; height:100%; object-fit:cover; }
  .detail-hero::after{
    content:'';
    position:absolute; inset:0;
    background: linear-gradient(180deg, rgba(0,0,20,0.35) 0%, rgba(0,0,20,0.15) 40%, rgba(247,248,252,1) 100%);
  }
  .back-btn{
    position:absolute; top:28px; left:40px; z-index:5;
    background:#fff;
    color: var(--navy);
    font-weight:700; font-size:14.5px;
    padding: 12px 22px;
    border-radius: 999px;
    display:flex; align-items:center; gap:10px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  }

  /* INFO CARD */
  .info-card-wrap{ margin-top: -170px; position:relative; z-index:3; padding: 0 40px; }
  .info-card{
    max-width:1200px; margin:0 auto;
    background:#fff;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(10,10,60,0.1);
    padding: 44px;
  }
  .info-top{ display:flex; justify-content:space-between; align-items:flex-start; margin-bottom:22px; }
  .badge{
    background:#EAF0FE; color: var(--navy);
    font-weight:700; font-size:13.5px;
    padding: 8px 18px; border-radius: 999px;
  }
  .share-btn{
    display:flex; align-items:center; gap:8px;
    color: var(--text-muted); font-weight:600; font-size:14.5px;
  }
  .share-btn:hover{ color: var(--navy); }
  h1.detail-title{ font-size: 40px; font-weight:800; line-height:1.2; margin-bottom: 22px; max-width: 800px; }
  .detail-meta{ display:flex; gap:28px; flex-wrap:wrap; padding-bottom: 26px; border-bottom: 1px solid var(--border); margin-bottom: 26px; }
  .meta-item{ display:flex; align-items:center; gap:9px; color: var(--text-muted); font-size:15px; }
  .meta-item svg{ color: var(--gold); flex-shrink:0; }
  p.detail-desc{ font-size: 15.5px; line-height:1.8; color: var(--text-muted); max-width: 900px; }

  /* GALLERY */
  section.photo-gallery{ padding: 60px 40px 30px; }
  .gallery-head{
    max-width:1200px; margin:0 auto 26px;
    display:flex; justify-content:space-between; align-items:center;
  }
  .gallery-head-title{ display:flex; align-items:center; gap:10px; font-size:22px; font-weight:800; color: var(--navy); }
  .gallery-head-title svg{ color: var(--gold); }
  .photo-count-pill{
    background:#EEF0F5; color: var(--navy); font-weight:700; font-size:13.5px;
    padding: 8px 16px; border-radius: 999px;
  }
  .photo-masonry{
    max-width:1200px; margin:0 auto;
    display:grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    grid-template-rows: repeat(2, 200px);
    gap: 16px;
    margin-bottom: 16px;
  }
  .photo-masonry a:nth-child(1){ grid-row: 1 / span 2; }
  .photo-masonry a{ border-radius: 16px; overflow:hidden; display:block; position:relative; }
  .photo-masonry img{ width:100%; height:100%; object-fit:cover; transition: transform .3s ease; }
  .photo-masonry a:hover img{ transform: scale(1.06); }
  .photo-extra-grid{
    max-width:1200px; margin:0 auto;
    display:grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }
  .photo-extra-grid a{
    border-radius: 16px; overflow:hidden; display:block; aspect-ratio: 1/0.85;
  }
  .photo-extra-grid img{ width:100%; height:100%; object-fit:cover; transition: transform .3s ease; }
  .photo-extra-grid a:hover img{ transform: scale(1.06); }

  /* RELATED */
  section.related{ padding: 70px 40px 100px; }
  .related-head{
    max-width:1200px; margin:0 auto 32px;
    display:flex; justify-content:space-between; align-items:center;
  }
  .related-head h2{ font-size: 26px; font-weight:800; }
  .related-head a{ color: var(--gold); font-weight:700; font-size:14.5px; }
  .related-grid{
    max-width:1200px; margin:0 auto;
    display:grid; grid-template-columns: repeat(3,1fr); gap: 24px;
  }
  .related-card{
    background:#fff; border-radius: 18px; overflow:hidden;
    box-shadow: 0 10px 28px rgba(10,10,60,0.06);
    transition: transform .25s ease, box-shadow .25s ease;
    animation: relatedCardIn .55s ease both;
  }
  .related-card:hover{
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(10,10,60,0.14);
  }
  .related-grid .related-card:nth-child(1){ animation-delay: .05s; }
  .related-grid .related-card:nth-child(2){ animation-delay: .15s; }
  .related-grid .related-card:nth-child(3){ animation-delay: .25s; }
  @keyframes relatedCardIn{
    from{ opacity:0; transform: translateY(22px); }
    to{ opacity:1; transform: translateY(0); }
  }
  .related-img{ position:relative; height: 190px; overflow:hidden; }
  .related-img img{ width:100%; height:100%; object-fit:cover; transition: transform .5s ease; }
  .related-card:hover .related-img img{ transform: scale(1.08); }
  .related-date{
    position:absolute; top:14px; left:14px;
    background:#fff; font-weight:700; font-size:12.5px;
    padding: 6px 13px; border-radius: 999px;
  }
  .related-body{ padding: 20px 22px; }
  .related-body h3{ font-size:16.5px; font-weight:700; line-height:1.4; }

  /* FOOTER */
  footer{ background: var(--navy-deep); padding: 70px 40px 30px; color:#fff; }
  .footer-grid{
    max-width:1280px; margin:0 auto;
    display:grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 60px; padding-bottom: 44px;
  }
  .footer-brand{ display:flex; align-items:center; gap:10px; margin-bottom:20px; }
  .footer-brand .brand-mark{ width:34px; height:34px; font-size:14px; }
  .footer-brand span{ font-weight:800; font-size:16px; }
  p.footer-desc{ color:#A6A8C4; font-size:14.5px; line-height:1.7; max-width:340px; margin-bottom:24px; }
  .socials{ display:flex; gap:12px; }
  .social-btn{
    width:38px; height:38px; border-radius:50%; background: rgba(255,255,255,0.08);
    display:flex; align-items:center; justify-content:center; font-weight:700; font-size:13px;
  }
  footer h4{ font-size:16px; font-weight:700; margin-bottom:22px; }
  footer .footer-links li{ margin-bottom:16px; }
  footer .footer-links a{ color:#B9BBD3; font-size:14.5px; }
  footer .footer-links a:hover{ color:#fff; }
  .kontak-item{ display:flex; align-items:center; gap:10px; margin-bottom:16px; color:#B9BBD3; font-size:14.5px; }
  .kontak-icon{ color: var(--gold); flex-shrink:0; }
  .footer-bottom{
    max-width:1280px; margin:0 auto; border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 26px; display:flex; justify-content:space-between; align-items:center;
    color:#8688AB; font-size:13.5px; flex-wrap:wrap; gap:14px;
  }
  .footer-bottom-links{ display:flex; gap:26px; }
  .footer-bottom-links a{ color:#8688AB; }
  .footer-bottom-links a:hover{ color:#fff; }

  .toast{
    position:fixed; bottom:30px; left:50%; transform:translateX(-50%) translateY(20px);
    background: var(--navy); color:#fff; font-weight:600; font-size:14px;
    padding: 13px 24px; border-radius: 999px;
    opacity:0; pointer-events:none;
    transition: opacity .25s ease, transform .25s ease;
    z-index: 999;
  }
  .toast.show{ opacity:1; transform:translateX(-50%) translateY(0); }

  @media (max-width: 1100px){
    .container{ padding: 0 24px; }
    .info-card-wrap{ padding: 0 24px; }
    .photo-gallery{ padding: 50px 24px 30px; }
    section.related{ padding: 60px 24px 90px; }
  }

  @media (max-width: 900px){
    header.navbar{ padding: 14px 20px; }
    .brand-name .sub{ display:none; }
    nav.main-nav{
      position:fixed; top:70px; left:0; right:0; background:#fff;
      flex-direction:column; align-items:flex-start; gap:0; padding: 0 20px;
      max-height:0; overflow:hidden; opacity:0;
      transition: max-height .3s ease, opacity .25s ease, padding .3s ease;
      box-shadow: 0 16px 30px rgba(10,10,60,0.08); border-bottom: 1px solid var(--border);
    }
    nav.main-nav.open{ max-height:560px; opacity:1; padding: 10px 20px 24px; }
    nav.main-nav a{ width:100%; padding: 14px 0; border-bottom: 1px solid var(--border); font-size:16px; }
    .navbar-right .btn-aspirasi{ display:none; }
    .mobile-cta{ display:block; margin-top: 14px; text-align:center; width:100%; }
    .hamburger{ display:flex; }

    .detail-hero{ height: 300px; }
    .back-btn{ left:20px; top:20px; padding: 10px 16px; font-size:13.5px; }
    .info-card-wrap{ margin-top: -100px; padding: 0 20px; }
    .info-card{ padding: 24px; border-radius:18px; }
    h1.detail-title{ font-size:26px; margin-bottom:16px; }
    .detail-meta{ gap:16px; }
    .meta-item{ font-size:13.5px; }
    p.detail-desc{ font-size:14.5px; }

    section.photo-gallery{ padding: 44px 20px 20px; }
    .gallery-head-title{ font-size:19px; }
    .photo-masonry{ grid-template-columns: 1fr 1fr; grid-template-rows: 140px 140px 140px; gap:10px; }
    .photo-masonry a:nth-child(1){ grid-column: 1 / span 2; grid-row: 1; }
    .photo-extra-grid{ grid-template-columns: repeat(2,1fr); gap:10px; }

    section.related{ padding: 50px 20px 70px; }
    .related-head{ flex-direction:column; align-items:flex-start; gap:10px; }
    .related-grid{ grid-template-columns:1fr; }

    footer{ padding: 50px 20px 24px; }
    .footer-grid{ grid-template-columns:1fr; gap:32px; }
    .footer-bottom{ flex-direction:column; align-items:flex-start; gap:14px; }
  }

  @media (max-width: 480px){
    .detail-hero{ height: 240px; }
    h1.detail-title{ font-size:22px; }
    .photo-extra-grid{ grid-template-columns: 1fr; }
  }

/* ===== dari struktur-pengurus.html ===== */
  :root{
    --navy: #000035;
    --navy-soft: #0a0a4a;
    --navy-deep: #05051C;
    --gold: #D4A72C;
    --gold-light: #E8C158;
    --bg: #F7F8FC;
    --text-muted: #6B7280;
    --border: #E7E8F0;
  }
  *{box-sizing:border-box; margin:0; padding:0;}
  html{ scroll-behavior:smooth; }
  body{
    font-family:'Plus Jakarta Sans', sans-serif;
    color: var(--navy);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    padding-top: 78px;
  }
  a{ text-decoration:none; color:inherit; }
  ul{ list-style:none; }
  img{ max-width:100%; display:block; }
  button{ font-family:inherit; cursor:pointer; }
  .container{ max-width: 1280px; margin: 0 auto; padding: 0 40px; }

  /* NAVBAR */
  header.navbar{
    display:flex; align-items:center; justify-content:space-between;
    padding: 18px 40px;
    border-bottom: 1px solid rgba(255,255,255,0.25);
    background: rgba(255,255,255,0.75);
    backdrop-filter: blur(16px) saturate(160%);
    -webkit-backdrop-filter: blur(16px) saturate(160%);
    position: fixed; top:0; left:0; right:0; z-index: 100;
    box-shadow: 0 8px 30px rgba(10,10,60,0.05);
  }
  .brand{ display:flex; align-items:center; gap:10px; }
  .brand-marks{ display:flex; gap:6px; }
  .brand-mark{
    width:36px; height:36px; border-radius:8px;
    display:flex; align-items:center; justify-content:center;
    font-weight:800; font-size:16px; color:#fff;
  }
  .brand-mark.u{ background: var(--navy); }
  .brand-mark.d{ background: var(--gold); color: var(--navy); }
  .brand-name{ line-height:1.1; }
  .brand-name .top{ font-weight:800; font-size:15px; color: var(--navy); }
  .brand-name .sub{ font-size:12px; color:#9CA0B0; letter-spacing:0.3px; }
  nav.main-nav{ display:flex; align-items:center; gap:34px; }
  nav.main-nav a{ font-size:15px; font-weight:600; color:#25253F; transition: color .15s ease; }
  nav.main-nav a:hover, nav.main-nav a.active{ color: var(--navy); }
  nav.main-nav a.btn-aspirasi{ color:#fff; }
  nav.main-nav a.btn-aspirasi:hover{ color:#fff; }
  .btn-aspirasi{
    background: var(--navy); color:#fff; font-weight:700; font-size:14.5px;
    padding: 12px 22px; border-radius: 10px; white-space:nowrap;
  }
  .navbar-right{ display:flex; align-items:center; gap:14px; }
  .hamburger{
    display:none; width:40px; height:40px; border:none; background:transparent;
    align-items:center; justify-content:center; cursor:pointer; color: var(--navy); flex-shrink:0;
  }
  .mobile-cta{ display:none; }

  /* PAGE HERO */
  section.page-hero{ padding: 64px 40px 40px; }
  .eyebrow{
    display:flex; align-items:center; gap:10px;
    color: var(--gold); font-weight:700; font-size:14px; margin-bottom: 18px;
  }
  .eyebrow .line{ width:28px; height:3px; background: var(--gold); border-radius:2px; }
  h1.page-title{ font-size: 46px; font-weight: 800; letter-spacing:-1px; margin-bottom: 20px; }
  p.page-desc{ font-size: 16.5px; line-height:1.7; color: var(--text-muted); max-width: 660px; }
  .parlemen-badge{
    display:inline-flex; align-items:center; gap:16px;
    background: linear-gradient(135deg, #EAF0FE 0%, #F7F2E0 100%);
    border: 1px solid rgba(212,167,44,0.35);
    box-shadow: 0 10px 26px rgba(10,10,60,0.08);
    color: var(--navy);
    padding: 16px 30px 16px 18px; border-radius: 999px;
    text-align:left;
    animation: parlemenBadgeIn .6s ease .1s both;
    transition: transform .25s ease, box-shadow .25s ease;
  }
  .parlemen-badge:hover{
    transform: translateY(-4px) scale(1.01);
    box-shadow: 0 16px 34px rgba(10,10,60,0.14);
  }
  @keyframes parlemenBadgeIn{
    from{ opacity:0; transform: translateY(-14px) scale(.95); }
    to{ opacity:1; transform: translateY(0) scale(1); }
  }
  .parlemen-badge-icon{
    width:52px; height:52px; border-radius:50%; flex-shrink:0;
    background:#fff; border: 2px solid var(--gold);
    display:flex; align-items:center; justify-content:center;
    box-shadow: 0 4px 10px rgba(10,10,60,0.1);
    overflow:hidden;
    transition: transform .3s ease;
  }
  .parlemen-badge:hover .parlemen-badge-icon{ transform: rotate(-8deg) scale(1.08); }
  .parlemen-badge-logo{
    width:100%; height:100%; object-fit:cover; display:block;
  }
  .parlemen-badge-text .name{ font-weight:800; font-size:19px; line-height:1.25; }
  .parlemen-badge-text .periode{
    font-weight:600; font-size:13.5px; color:#6B6E85; margin-top:2px;
  }
  .parlemen-badge-wrap{
    max-width:1280px; margin: 22px auto 0; text-align:center;
  }

  /* SEARCH BAR */
  section.search-bar{ padding: 30px 40px 10px; }
  .search-panel{
    max-width:1280px; margin:0 auto; background:#fff; border-radius: 20px;
    box-shadow: 0 10px 34px rgba(10,10,60,0.06); padding: 26px;
    display:flex; gap:14px;
  }
  .search-input{
    flex:1; display:flex; align-items:center; gap:10px;
    border: 1px solid var(--border); border-radius: 12px; padding: 14px 18px;
    color: var(--text-muted);
  }
  .search-input input{
    border:none; outline:none; font-size:15px; width:100%;
    font-family:inherit; color: var(--navy);
  }
  .search-input input::placeholder{ color:#A6A9BE; }

  /* GROUP SECTIONS */
  section.pengurus-group{ padding: 40px 40px 10px; }

  /* PERIOD DIVIDER (untuk parlemen dengan reshuffle kepengurusan) */
  @keyframes fadeSlideUp{
    from{ opacity:0; transform: translateY(24px); }
    to{ opacity:1; transform: translateY(0); }
  }
  @keyframes pulseGlow{
    0%, 100%{ box-shadow: 0 0 0 0 rgba(212,167,44,0.5); }
    50%{ box-shadow: 0 0 0 8px rgba(212,167,44,0); }
  }

  .period-divider{
    max-width:1280px; margin: 56px auto 0; padding: 0 40px;
    animation: fadeSlideUp .6s ease both;
  }
  .period-divider-inner{
    display:flex; align-items:center; justify-content:space-between; gap:20px;
    background: var(--navy);
    color:#fff;
    padding: 26px 30px;
    border-radius: 18px;
    box-shadow: 0 14px 32px rgba(0,0,53,0.18);
    transition: transform .25s ease, box-shadow .25s ease;
  }
  .period-divider-inner:hover{
    transform: translateY(-4px);
    box-shadow: 0 20px 44px rgba(0,0,53,0.28);
  }
  .period-divider-text h2{ font-size:22px; font-weight:800; color:#fff; margin-bottom:4px; }
  .period-divider-text p{ font-size:13.5px; color:#B9BBD3; }
  .badge-reshuffle{
    flex-shrink:0;
    background: var(--gold); color: var(--navy);
    font-weight:800; font-size:12.5px; letter-spacing:0.6px;
    padding: 8px 16px; border-radius: 999px;
    text-transform:uppercase;
    animation: pulseGlow 2.2s ease-in-out infinite;
  }

  .group-head{
    max-width:1280px; margin: 0 auto 26px;
    display:flex; align-items:center; gap:14px;
    animation: fadeSlideUp .6s ease both;
  }
  .group-head h2{ font-size:24px; font-weight:800; }
  .group-head .komisi-icon{
    width:42px; height:42px; border-radius:12px;
    background:#EAF0FE; color: var(--navy);
    display:flex; align-items:center; justify-content:center;
    flex-shrink:0;
  }
  .group-sub{ color: var(--text-muted); font-size:14px; margin-top:2px; }

  .pengurus-grid{
    max-width:1280px; margin:0 auto;
    display:grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  }
  .pengurus-card{
    background:#fff; border-radius: 18px; overflow:hidden;
    box-shadow: 0 10px 26px rgba(10,10,60,0.06);
    transition: transform .25s cubic-bezier(.34,1.56,.64,1), box-shadow .25s ease;
    animation: fadeSlideUp .5s ease both;
    cursor: pointer;
  }
  .pengurus-card:hover{ transform: translateY(-4px); box-shadow: 0 18px 36px rgba(10,10,60,0.1); }
  .pengurus-card:active{
    transform: scale(.93) translateY(2px);
    box-shadow: 0 4px 10px rgba(10,10,60,0.15);
    transition: transform .12s ease-out, box-shadow .12s ease-out;
  }
  .pengurus-grid .pengurus-card:nth-child(1){ animation-delay: .05s; }
  .pengurus-grid .pengurus-card:nth-child(2){ animation-delay: .1s; }
  .pengurus-grid .pengurus-card:nth-child(3){ animation-delay: .15s; }
  .pengurus-grid .pengurus-card:nth-child(4){ animation-delay: .2s; }
  .pengurus-photo{ position:relative; aspect-ratio: 1/1; overflow:hidden; }
  .pengurus-photo img{ width:100%; height:100%; object-fit:cover; }
  .role-badge{
    position:absolute; top:14px; left:14px;
    background:#fff; color: var(--navy); font-weight:700; font-size:12.5px;
    padding: 7px 14px; border-radius: 999px;
    transition: background .15s ease, color .15s ease;
  }
  .pengurus-card.active .role-badge{ background: var(--gold); color: var(--navy); }
  .pengurus-info{ padding: 20px 22px 22px; }
  .pengurus-info h3{
    font-size:17.5px; font-weight:700; margin-bottom:4px;
    cursor:pointer; transition: color .15s ease;
  }
  .pengurus-info h3:hover{ color: var(--gold); }
  .pengurus-card.active .pengurus-info h3{ color: var(--gold); }
  .pengurus-jabatan{
    font-size:12.5px; font-weight:700; letter-spacing:0.4px;
    color: var(--text-muted); text-transform:uppercase;
    padding-bottom:14px; margin-bottom:14px; border-bottom:1px solid var(--border);
  }
  .pengurus-meta{ display:flex; flex-direction:column; gap:10px; }
  .meta-row{ display:flex; align-items:center; gap:10px; font-size:13.5px; color: var(--text-muted); }
  .meta-icon{
    width:26px; height:26px; border-radius:50%; background:#EAF0FE; color: var(--navy);
    display:flex; align-items:center; justify-content:center; flex-shrink:0;
  }
  .meta-icon.gold{ background:#FCF2DA; color:#B4841C; }

  .empty-state{
    max-width:1280px; margin: 0 auto; text-align:center; color: var(--text-muted);
    font-size:15px; background:#fff; border-radius:20px; padding: 50px 30px;
    box-shadow: 0 10px 30px rgba(10,10,60,0.05);
  }

  section.pengurus-group:last-of-type{ padding-bottom: 90px; }

  /* FOOTER */
  footer{ background: var(--navy-deep); padding: 70px 40px 30px; color:#fff; }
  .footer-grid{
    max-width:1280px; margin:0 auto;
    display:grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 60px; padding-bottom: 44px;
  }
  .footer-brand{ display:flex; align-items:center; gap:10px; margin-bottom:20px; }
  .footer-brand .brand-mark{ width:34px; height:34px; font-size:14px; }
  .footer-brand span{ font-weight:800; font-size:16px; }
  p.footer-desc{ color:#A6A8C4; font-size:14.5px; line-height:1.7; max-width:340px; margin-bottom:24px; }
  .socials{ display:flex; gap:12px; }
  .social-btn{
    width:38px; height:38px; border-radius:50%; background: rgba(255,255,255,0.08);
    display:flex; align-items:center; justify-content:center; font-weight:700; font-size:13px;
  }
  footer h4{ font-size:16px; font-weight:700; margin-bottom:22px; }
  footer .footer-links li{ margin-bottom:16px; }
  footer .footer-links a{ color:#B9BBD3; font-size:14.5px; }
  footer .footer-links a:hover{ color:#fff; }
  .kontak-item{ display:flex; align-items:center; gap:10px; margin-bottom:16px; color:#B9BBD3; font-size:14.5px; }
  .kontak-icon{ color: var(--gold); flex-shrink:0; }
  .footer-bottom{
    max-width:1280px; margin:0 auto; border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 26px; display:flex; justify-content:space-between; align-items:center;
    color:#8688AB; font-size:13.5px; flex-wrap:wrap; gap:14px;
  }
  .footer-bottom-links{ display:flex; gap:26px; }
  .footer-bottom-links a{ color:#8688AB; }
  .footer-bottom-links a:hover{ color:#fff; }

  @media (max-width: 1100px){
    .pengurus-grid{ grid-template-columns: repeat(2,1fr); }
    .container{ padding: 0 24px; }
    .page-hero{ padding: 56px 24px 30px; }
    section.search-bar{ padding: 20px 24px 10px; }
    section.pengurus-group{ padding: 30px 24px 10px; }
  }

  @media (max-width: 900px){
    header.navbar{ padding: 14px 20px; }
    .brand-name .sub{ display:none; }
    nav.main-nav{
      position:fixed; top:70px; left:0; right:0; background:#fff;
      flex-direction:column; align-items:flex-start; gap:0; padding: 0 20px;
      max-height:0; overflow:hidden; opacity:0;
      transition: max-height .3s ease, opacity .25s ease, padding .3s ease;
      box-shadow: 0 16px 30px rgba(10,10,60,0.08); border-bottom: 1px solid var(--border);
    }
    nav.main-nav.open{ max-height:560px; opacity:1; padding: 10px 20px 24px; }
    nav.main-nav a{ width:100%; padding: 14px 0; border-bottom: 1px solid var(--border); font-size:16px; }
    .navbar-right .btn-aspirasi{ display:none; }
    .mobile-cta{ display:block; margin-top: 14px; text-align:center; width:100%; }
    .hamburger{ display:flex; }

    section.page-hero{ padding: 40px 20px 30px; }
    h1.page-title{ font-size: 34px; }
    p.page-desc{ font-size:15px; }

    section.search-bar{ padding: 20px 20px 10px; }
    .search-panel{ padding: 18px; }

    section.pengurus-group{ padding: 30px 20px 10px; }
    .pengurus-grid{ grid-template-columns: 1fr 1fr; gap:16px; }
    .group-head h2{ font-size:20px; }

    .period-divider{ padding: 0 20px; margin-top: 40px; }
    .period-divider-inner{ flex-direction:column; align-items:flex-start; padding: 22px; }
    .period-divider-text h2{ font-size:19px; }

    footer{ padding: 50px 20px 24px; }
    .footer-grid{ grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom{ flex-direction:column; align-items:flex-start; gap:14px; }
  }

  @media (max-width: 560px){
    .pengurus-grid{ grid-template-columns: 1fr; }
    h1.page-title{ font-size: 28px; }
    .footer-grid{ grid-template-columns:1fr; }
  }

