:root {
    --blue: #1b3f8f;
    --blue-dark: #0d2060;
    --gold: #f5a800;
    --white: #ffffff;
    --gray-bg: #f4f5f9;
    --text: #1a1a2e;
    --text-mid: #555577;
    --border: #e0e0ee;
    --theme-font-family: "Poppins", sans-serif;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: "Poppins", sans-serif;
    color: var(--text);
    background: #fff;
    overflow-x: hidden;
}
a {
    text-decoration: none;
    color: inherit;
}
img {
    max-width: 100%;
    display: block;
}

/* ── TOPBAR ───────────────────────────────────── */
.topbar {
    background: #fff;
    border-bottom: 1px solid var(--border);
    padding: 7px 0;
}
.topbar-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.topbar-left a {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-mid);
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s;
}
.topbar-left a:hover {
    color: var(--blue);
}
.topbar-socials {
    display: flex;
    gap: 14px;
}
.topbar-socials a {
    font-size: 15px;
    color: var(--text-mid);
    transition: color 0.2s;
}
.topbar-socials a:hover {
    color: var(--blue);
}

/* ── NAVBAR ───────────────────────────────────── */
nav.nav-white {
    background: var(--blue);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 14px rgba(0, 0, 60, 0.2);
}
.nav-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    align-items: center;
    height: 70px;
    gap: 16px;
}
.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}
.logo-svg {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
}
.logo-name {
    display: block;
    font-size: 18px;
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
}
.logo-sub {
    display: block;
    font-size: 10px;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.nav-menu {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0 auto;
}
.nav-menu > li {
    position: relative;
}
.nav-menu > li > a {
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    text-transform: none;
    letter-spacing: 0;
    min-height: 70px;
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 0 14px;
    white-space: nowrap;
    transition:
        color 0.2s,
        background 0.2s;
}
.nav-menu > li > a:hover {
    color: var(--gold);
    background: rgba(27, 63, 143, 0.05);
}
.nav-menu > li.active > a {
    color: #fff;
    font-weight: 700;
    border-bottom: 3px solid var(--gold);
}
.chevron {
    font-size: 8px;
    opacity: 0.7;
}

/* Dropdown */
.dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 230px;
    list-style: none;
    box-shadow: 0 8px 28px rgba(0, 0, 60, 0.14);
    border-top: 3px solid var(--gold);
    z-index: 999;
}
.dropdown li a {
    display: block;
    padding: 11px 20px;
    font-size: 13px;
    color: var(--text);
    font-weight: 500;
    transition:
        background 0.15s,
        padding 0.15s;
}
.dropdown li a:hover {
    background: #f0f4ff;
    color: var(--gold);
    padding-left: 26px;
}
.nav-menu > li:hover .dropdown {
    display: block;
}
.dropdown li {
    position: relative;
}
.sub-dropdown {
    display: none;
    position: absolute;
    top: 0;
    left: 100%;
    background: #fff;
    min-width: 190px;
    list-style: none;
    box-shadow: 0 8px 28px rgba(0, 0, 60, 0.12);
    border-top: 3px solid var(--blue);
    z-index: 1000;
}
.sub-dropdown li a {
    padding: 10px 18px;
    font-size: 12.5px;
}
.dropdown li:hover .sub-dropdown {
    display: block;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: auto
}
.nav-btn-gabung {
    background: var(--gold);
    color: #111;
    padding: 9px 20px;
    border-radius: 7px;
    font-weight: 500;
    font-size: 14px;
    white-space: nowrap;
    transition: background 0.2s;
    flex-shrink: 0;
}
.nav-btn-gabung:hover {
    background: #e09900;
}
.nav-btn-login {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #fff;
    padding: 9px 20px;
    border-radius: 7px;
    font-weight: 700;
    font-size: 14px;
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    white-space: nowrap;
    transition:
        background 0.2s,
        color 0.2s;
    flex-shrink: 0;
}
.nav-btn-login:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

.nav-search-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: #fff;
    font-size: 16px;
    padding: 4px;
    transition: color 0.2s;
}
.nav-search-btn:hover {
    color: var(--gold);
}
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 6px;
    margin-left: auto;  /* tambah ini */
    margin-right: 8px;  /* jarak dari pinggir kanan */
}
.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
}

/* ── HERO ─────────────────────────────────────── */
.hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    background: var(--blue-dark);
    overflow: hidden;
}
#heroSlider {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}
.hero-slide.active {
    opacity: 1;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(13, 32, 96, 0.93) 40%,
        rgba(13, 32, 96, 0.6) 70%,
        rgba(13, 32, 96, 0.35) 100%
    );
    z-index: 1;
}
.hero-inner {
    position: relative;
    z-index: 3;
    max-width: 1280px;
    margin: 0 auto;
    padding: 80px 32px 60px;
    width: 100%;
}

.hero-badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 99px;
    padding: 7px 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 24px;
}
.hero-badge-pill .pill-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gold);
    flex-shrink: 0;
}

.hero-inner h1 {
    font-size: clamp(36px, 5vw, 68px);
    font-weight: 800;
    color: #fff;
    line-height: 1.05;
    margin-bottom: 16px;
}
.hero-inner h1 .gold {
    color: var(--gold);
}
.hero-inner p.hero-desc {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    max-width: 560px;
    margin-bottom: 32px;
}
.hero-inner p.hero-desc .gold {
    color: var(--gold);
    font-weight: 600;
}

.hero-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}
.btn-gold {
    background: var(--gold);
    color: #111;
    padding: 13px 26px;
    border-radius: 7px;
    font-weight: 700;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background 0.2s;
}
.btn-gold:hover {
    background: #e09900;
}
.btn-outline-white {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 13px 26px;
    border-radius: 7px;
    font-weight: 700;
    font-size: 14px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition:
        background 0.2s,
        border-color 0.2s;
}
.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.18);
    border-color: #fff;
}

.hero-stats {
    display: flex;
    gap: 12px;
}
.hero-stat-box {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 10px;
    padding: 12px 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 0 0 auto;
    width: 450px;
}
.hero-stat-icon {
    font-size: 22px;
    color: var(--gold);
    flex-shrink: 0;
}
.hero-stat-num {
    font-size: 26px;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}
.hero-stat-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 3px;
}

/* ── PROFIL BARU ──────────────────────────────── */
.profil-new {
    background: #fff;
    padding: 72px 32px;
}
.profil-new-inner {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}
.section-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fef3d0;
    border-radius: 99px;
    padding: 8px 20px;
    font-size: 13px;
    font-weight: 700;
    color: var(--blue-dark);
    margin-bottom: 20px;
}
.section-pill .pill-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gold);
}
.profil-new h2 {
    font-size: clamp(22px, 4vw, 32px);
    font-weight: 800;
    color: var(--blue-dark);
    margin-bottom: 12px;
}
.profil-new h2 span {
    color: var(--gold);
}
.profil-new .sub {
    font-size: 15px;
    color: var(--text-mid);
    line-height: 1.7;
    margin-bottom: 32px;
}
.profil-video-wrap {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 60, 0.14);
    margin-bottom: 20px;
}
.profil-video-wrap iframe {
    width: 100%;
    aspect-ratio: 16/9;
    border: none;
    display: block;
}
.periode-card {
    position: absolute;
    bottom: 16px;
    right: 16px;
    background: #fff;
    border-radius: 12px;
    padding: 12px 18px;
    box-shadow: 0 4px 20px rgba(0, 0, 60, 0.15);
    text-align: center;
}
.periode-num {
    font-size: 22px;
    font-weight: 800;
    color: var(--blue-dark);
    line-height: 1;
}
.periode-label {
    font-size: 11px;
    color: var(--text-mid);
    margin-top: 3px;
}

/* ── VISI MISI BARU ───────────────────────────── */
.vm-new {
    background: #f4f5f9;
    padding: 72px 32px;
}
.vm-new-inner {
    max-width: 860px;
    margin: 0 auto;
}
.vm-new h2 {
    font-size: clamp(20px, 3vw, 28px);
    font-weight: 800;
    color: var(--blue-dark);
    margin-bottom: 28px;
}
.vm-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 28px;
}
.vm-card {
    background: #fff;
    border-radius: 14px;
    padding: 24px;
    display: flex;
    gap: 18px;
    align-items: flex-start;
    box-shadow: 0 2px 12px rgba(0, 0, 60, 0.06);
}
.vm-icon-box {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: #f4f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--blue);
    flex-shrink: 0;
}
.vm-icon-box.gold {
    background: #fef3d0;
    color: var(--gold);
}
.vm-card-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--blue-dark);
    margin-bottom: 6px;
}
.vm-card-desc {
    font-size: 14px;
    color: var(--text-mid);
    line-height: 1.7;
}
.btn-outline-blue {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 24px;
    border-radius: 8px;
    border: 2px solid var(--blue);
    color: var(--blue);
    font-weight: 700;
    font-size: 14px;
    transition:
        background 0.2s,
        color 0.2s;
}
.btn-outline-blue:hover {
    background: var(--blue);
    color: #fff;
}

/* ── PROFIL KETUA ─────────────────────────────── */
.profil-ketua {
    background: #fff;
    padding: 64px 32px;
}
.pk-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 60px;
    align-items: start;
}
.pk-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-mid);
    margin-bottom: 6px;
}
.pk-title {
    font-size: clamp(18px, 2.2vw, 24px);
    font-weight: 800;
    color: var(--blue);
    text-transform: uppercase;
    line-height: 1.3;
    margin-bottom: 8px;
}
.pk-divider {
    width: 40px;
    height: 3px;
    background: var(--gold);
    margin-bottom: 24px;
}
.accordion-item {
    border-top: 1px solid var(--border);
}
.accordion-item:last-of-type {
    border-bottom: 1px solid var(--border);
    margin-bottom: 20px;
}
.accordion-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 13px 0;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    user-select: none;
}
.acc-icon {
    color: var(--blue);
    width: 16px;
    font-size: 14px;
}
.accordion-body {
    display: none;
    padding: 2px 0 14px 26px;
}
.accordion-body.open {
    display: block;
}
.accordion-body ul {
    list-style: disc;
    padding-left: 18px;
}
.accordion-body li {
    font-size: 13.5px;
    color: var(--text-mid);
    padding: 4px 0;
    line-height: 1.6;
}
.pk-socials {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}
.pk-soc {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #fff;
    transition: opacity 0.2s;
}
.pk-soc:hover {
    opacity: 0.8;
}
.pk-soc.ig {
    background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #bc1888);
}
.pk-soc.tt {
    background: #010101;
}
.pk-right {
    position: relative;
}
.pk-photo-placeholder {
    width: 100%;
    aspect-ratio: 1/1;
    background: linear-gradient(135deg, #e0e8f8, #b8d0f0);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(27, 63, 143, 0.15);
    font-size: 80px;
}
.pk-name-card {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--blue);
    padding: 14px 20px;
    border-radius: 0 0 12px 12px;
    border-left: 5px solid var(--gold);
}
.pk-name-card-name {
    font-size: 18px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 3px;
}
.pk-name-card-title {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
}

/* ── ANGGOTA DEWAN ────────────────────────────── */
.anggota-dewan {
    background: var(--gold);
    padding: 64px 32px;
}
.ad-inner {
    max-width: 1100px;
    margin: 0 auto;
}
.ad-header {
    text-align: center;
    margin-bottom: 32px;
}
.ad-header-sub {
    font-size: 13px;
    font-weight: 600;
    color: rgba(0, 0, 0, 0.55);
    text-transform: uppercase;
    letter-spacing: 1px;
}
.ad-title {
    font-size: clamp(20px, 2.5vw, 28px);
    font-weight: 800;
    color: var(--blue-dark);
    text-transform: uppercase;
}
.ad-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}
.ad-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 60, 0.07);
    transition:
        transform 0.2s,
        box-shadow 0.2s;
    text-align: center;
    padding-bottom: 20px;
}
.ad-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(0, 0, 60, 0.13);
}
.ad-photo-placeholder {
    width: 100%;
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, #e0e8f8, #c4d8f0);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(27, 63, 143, 0.18);
    font-size: 60px;
}
.ad-card-body {
    padding: 16px 14px 0;
}
.ad-name {
    font-size: 15px;
    font-weight: 700;
    color: var(--blue);
    margin-bottom: 6px;
}
.ad-jabatan {
    font-size: 12.5px;
    color: var(--text-mid);
    line-height: 1.55;
    margin-bottom: 12px;
}
.ad-socials {
    display: flex;
    gap: 8px;
    justify-content: center;
}
.ad-soc {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    color: #fff;
    transition: opacity 0.2s;
}
.ad-soc:hover {
    opacity: 0.8;
}
.ad-soc.ig {
    background: linear-gradient(135deg, #f09433, #dc2743, #bc1888);
}
.ad-soc.tt {
    background: #010101;
}

.program-section {
  padding: 80px 0;
  margin: 60px 0;
  background: #f4f5f9;
}

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

.program-pill {
  display: inline-block;
  background: rgba(245, 168, 0, 0.15);
  color: #F5A800;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 18px;
  border-radius: 99px;
  margin-bottom: 16px;
  font-family: 'Poppins', sans-serif;
}

.program-title {
  font-size: 36px;
  font-weight: 700;
  color: #0d2060;
  font-family: 'Poppins', sans-serif;
  margin-bottom: 12px;
}

.program-title span {
  color: #F5A800;
}

.program-subtitle {
  font-size: 15px;
  color: #555577;
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

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

.program-card {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  border: 1px solid #e0e0ee;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: box-shadow 0.3s, transform 0.3s;
}

.program-card:hover {
  box-shadow: 0 8px 32px rgba(27, 63, 143, 0.12);
  transform: translateY(-4px);
}

.program-icon {
  width: 52px;
  height: 52px;
  background: #f4f5f9;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #1B3F8F;
  flex-shrink: 0;
}

.program-card-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.program-card-top {
  display: flex;
  align-items: center;
  gap: 10px;
}

.program-card-top h3 {
  font-size: 16px;
  font-weight: 700;
  color: #0d2060;
  font-family: 'Poppins', sans-serif;
  margin: 0;
}

.program-badge {
  font-size: 11px;
  font-weight: 600;
  background: rgba(245, 168, 0, 0.15);
  color: #F5A800;
  padding: 3px 10px;
  border-radius: 99px;
}

.program-card p {
  font-size: 13px;
  color: #555577;
  line-height: 1.6;
  margin: 0;
}

.program-link {
  font-size: 13px;
  font-weight: 600;
  color: #1B3F8F;
  text-decoration: none;
  margin-top: 4px;
}

.program-link:hover {
  color: #F5A800;
}

@media (max-width: 768px) {
  .program-grid {
    grid-template-columns: 1fr;
  }

  .program-title {
    font-size: 26px;
  }
}

/* ── BERITA ───────────────────────────────────── */
.berita-section {
    background: var(--blue-dark);
    padding: 56px 32px;
}
.berita-inner {
    max-width: 1100px;
    margin: 0 auto;
}
.berita-cat {
    margin-bottom: 52px;
}
.berita-cat:last-child {
    margin-bottom: 0;
}
.berita-cat-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 6px;
}
.berita-cat-title {
    font-size: 20px;
    font-weight: 800;
    color: #fff;
}
.btn-selengkapnya {
    background: var(--gold);
    color: #111;
    padding: 8px 18px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: background 0.2s;
}
.btn-selengkapnya:hover {
    background: #e09900;
}
.berita-sep {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 18px;
}
.berita-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}
.berita-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition:
        transform 0.2s,
        box-shadow 0.2s;
}
.berita-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 32px rgba(0, 0, 60, 0.22);
}
.berita-card.text-only {
    padding: 22px;
}
.berita-img-placeholder {
    width: 100%;
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, #dde5f5, #b8caea);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(27, 63, 143, 0.18);
    font-size: 28px;
}
.berita-card-body {
    padding: 14px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.berita-card-title {
    font-size: 14.5px;
    font-weight: 700;
    color: var(--blue);
    line-height: 1.45;
    margin-bottom: 6px;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.berita-card-excerpt {
    font-size: 13px;
    color: var(--text-mid);
    line-height: 1.6;
    flex: 1;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.berita-card-date {
    font-size: 12px;
    color: #aab;
    margin-top: auto;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* ── PPID ─────────────────────────────────────── */
.ppid {
    background: #fff;
    padding: 56px 32px;
}
.ppid-inner {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}
.ppid-title {
    font-size: clamp(16px, 2vw, 20px);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}
.ppid-divider {
    width: 48px;
    height: 3px;
    background: var(--gold);
    margin: 0 auto 28px;
}
.ppid-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}
.ppid-card {
    background: var(--blue);
    border-radius: 10px;
    padding: 30px 20px;
    text-align: center;
    cursor: pointer;
    transition:
        background 0.2s,
        transform 0.2s;
}
.ppid-card:hover {
    background: var(--blue-dark);
    transform: translateY(-2px);
}
.ppid-card i {
    font-size: 30px;
    color: #fff;
    margin-bottom: 12px;
}
.ppid-card-title {
    font-size: 14.5px;
    font-weight: 700;
    color: #fff;
    line-height: 1.4;
    margin-bottom: 10px;
}
.ppid-card-line {
    width: 32px;
    height: 2px;
    background: var(--gold);
    margin: 0 auto;
}

/* ── GABUNG ───────────────────────────────────── */
.gabung {
    background: #f0f2f8;
    padding: 56px 32px;
}
.gabung-inner {
    max-width: 650px;
}
.gabung-title {
    font-size: clamp(20px, 2.5vw, 26px);
    font-weight: 800;
    text-transform: uppercase;
    color: var(--blue);
    text-decoration: underline;
    text-decoration-color: var(--gold);
    text-underline-offset: 6px;
    margin-bottom: 14px;
}
.gabung-desc {
    font-size: 15px;
    color: var(--text-mid);
    line-height: 1.7;
    margin-bottom: 24px;
}
.btn-gabung {
    background: var(--gold);
    color: #111;
    padding: 12px 26px;
    border-radius: 7px;
    font-weight: 700;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background 0.2s;
}
.btn-gabung:hover {
    background: #e09900;
}

/* ── CTA BANNER ──────────────────────────────── */
.cta-banner {
    background: var(--blue-dark);
    border-radius: 16px;
    padding: 40px 32px;
    text-align: center;
    max-width: 1100px;
    margin: 0 auto 56px;
}
.cta-banner h2 {
    font-size: clamp(18px, 3vw, 24px);
    font-weight: 800;
    color: #fff;
    margin-bottom: 10px;
}
.cta-banner p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 24px;
}
.cta-btns {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}
.btn-gold-full {
    background: var(--gold);
    color: #111;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background 0.2s;
}
.btn-gold-full:hover {
    background: #e09900;
}

/* Gallery */

.gallery-section-header {
    text-align: center;
    margin-bottom: 32px;
}

.gallery-section-title {
    display: inline-block;
    font-size: 28px;
    font-weight: 700;
    color: #1b3f8f;
    font-family: "Poppins", sans-serif;
    position: relative;
    padding-bottom: 10px;
}

.gallery-section-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 4px;
    background: #f5a800;
    border-radius: 2px;
}

.gallery-scroll-section {
    padding: 60px 0;
    background: #fff;
    overflow: hidden;
}

.gallery-scroll-wrapper {
    overflow: hidden;
    width: 100%;
}

.gallery-scroll-track {
    display: flex;
    gap: 16px;
    width: max-content;
    animation: scrollLeft 30s linear infinite;
}

.gallery-scroll-track:hover {
    animation-play-state: paused;
}

.gallery-scroll-item {
    position: relative;
    width: 280px;
    height: 200px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
}

.gallery-scroll-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gallery-scroll-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(13, 32, 96, 0.85));
    padding: 20px 14px 12px;
    opacity: 0;
    transition: opacity 0.3s;
}

.gallery-scroll-item:hover .gallery-scroll-overlay {
    opacity: 1;
}

.gallery-scroll-overlay span {
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    font-family: "Poppins", sans-serif;
}

@keyframes scrollLeft {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* ── FOOTER ───────────────────────────────────── */
footer {
    background: #fff;
    border-top: 1px solid var(--border);
    padding: 28px 32px 0;
}
.footer-addr-wrap {
    max-width: 1280px;
    margin: 0 auto;
    padding-bottom: 24px;
}
.footer-addr-title {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 3px;
}
.footer-addr-text {
    font-size: 13px;
    color: var(--text-mid);
    margin-bottom: 16px;
    line-height: 1.6;
}
.footer-bottom {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    border-top: 1px solid var(--border);
    flex-wrap: wrap;
    gap: 10px;
}
.footer-copy {
    font-size: 13px;
    color: var(--text-mid);
}
.footer-socials {
    display: flex;
    gap: 16px;
}
.footer-socials a {
    font-size: 18px;
    color: var(--blue);
    transition: color 0.2s;
}
.footer-socials a:hover {
    color: var(--gold);
}

/* ── MOBILE MENU ──────────────────────────────── */
.mobile-menu {
    display: none;
    background: var(--blue);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 6px 20px 14px;
}
.mobile-menu.open {
    display: block;
}
.m-item {
    padding: 12px 0;
    font-size: 13px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.88);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.m-item a {
    color: inherit;
}
.m-sub {
    display: none;
    padding: 4px 0 8px 14px;
}
.m-sub.open {
    display: block;
}
.m-sub a {
    display: block;
    padding: 7px 0;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-weight: 400;
    text-transform: none;
}
.m-btn-gabung a {
    color: var(--gold) !important;
    font-weight: 700;
}
.m-btn-login a {
    color: rgba(255, 255, 255, 0.6) !important;
}

/* ── SEARCH OVERLAY ───────────────────────────── */
.search-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(13, 32, 96, 0.96);
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
}
.search-overlay.open {
    display: flex;
}
.search-box {
    width: 100%;
    max-width: 640px;
    margin: 0 24px;
    position: relative;
}
.search-input {
    width: 100%;
    padding: 18px 56px 18px 24px;
    font-family: "Poppins", sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    outline: none;
    transition: border-color 0.2s;
}
.search-input::placeholder {
    color: rgba(255, 255, 255, 0.45);
}
.search-input:focus {
    border-color: var(--gold);
}
.search-submit {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    color: var(--gold);
    font-size: 20px;
}
.search-close {
    position: absolute;
    top: 32px;
    right: 32px;
    background: none;
    border: none;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.7);
    font-size: 24px;
    transition: color 0.2s;
}
.search-close:hover {
    color: #fff;
}
.search-hint {
    margin-top: 12px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
    text-align: center;
    font-family: "Poppins", sans-serif;
}

/* ── FOOTER BARU ──────────────────────────────── */
footer {
    background: var(--blue-dark);
    border-top: none;
    padding: 0;
}
.footer-main {
    padding: 56px 32px 40px;
}
.footer-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
}
.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}
.footer-brand-name {
    font-size: 16px;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
}
.footer-brand-sub {
    font-size: 11px;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 1.5px;
    text-transform: uppercase;
}
.footer-brand-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.7;
    margin-bottom: 20px;
}
.footer-contacts {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.5;
}
.footer-contact-item i {
    color: var(--gold);
    margin-top: 2px;
    flex-shrink: 0;
    font-size: 13px;
}
.footer-col-title {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer-links a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.65);
    transition: color 0.2s;
}
.footer-links a:hover {
    color: var(--gold);
}
.footer-gabung-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.6;
    margin-bottom: 16px;
}
.footer-btn-gabung {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gold);
    color: #111;
    padding: 10px 20px;
    border-radius: 7px;
    font-weight: 700;
    font-size: 13px;
    transition: background 0.2s;
}
.footer-btn-gabung:hover {
    background: #e09900;
}
.footer-bottom-wrap {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0 32px;
}
.footer-bottom {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
    flex-wrap: wrap;
    gap: 10px;
}
.footer-copy {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}
.footer-socials {
    display: flex;
    gap: 14px;
}
.footer-socials a {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    transition:
        background 0.2s,
        color 0.2s;
}
.footer-socials a:hover {
    background: var(--gold);
    color: #111;
}

/* ===== MOBILE DRAWER ===== */
@media (max-width: 768px) {
    .topbar { display: none; }
    .nav-search-btn { display: none; }
    .nav-menu { display: none; }
    .nav-btn-gabung, .nav-btn-login { display: none; }
    .hamburger { display: flex; }
}

.drawer-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 998;
}

.drawer-overlay.active { display: block; }

.mobile-drawer {
    position: fixed;
    top: 0;
    left: -280px;
    width: 280px;
    height: 100vh;
    background: #0d2060;
    z-index: 999;
    display: flex;
    flex-direction: column;
    transition: left 0.3s ease;
    overflow-y: auto;
}

.mobile-drawer.active { left: 0; }

.drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 20px 16px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.drawer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.drawer-logo-name {
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    line-height: 1.2;
}

.drawer-logo-sub {
    display: block;
    font-size: 11px;
    color: #F5A800;
    font-family: 'Poppins', sans-serif;
}

.drawer-close {
    background: transparent;
    border: none;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    padding: 4px;
}

.drawer-menu {
    list-style: none;
    padding: 12px 0;
    margin: 0;
    flex: 1;
}

.drawer-menu > li {
    padding: 14px 24px;
    font-size: 14px;
    font-weight: 500;
    color: #cbd5e1;
    font-family: 'Poppins', sans-serif;
    border-left: 3px solid transparent;
    cursor: pointer;
    transition: all 0.2s;
}

.drawer-menu > li a {
    color: inherit;
    text-decoration: none;
    display: block;
}

.drawer-menu > li:hover {
    color: #fff;
    background: rgba(255,255,255,0.05);
}

.drawer-active {
    color: #fff !important;
    border-left: 3px solid #F5A800 !important;
    background: rgba(255,255,255,0.05);
}

.drawer-has-sub {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.drawer-has-sub > i {
    margin-left: auto;
    font-size: 11px;
    transition: transform 0.3s;
    align-self: flex-start;
    margin-top: -18px;
}

.drawer-sub {
    display: none;
    list-style: none;
    padding: 8px 0 0 16px;
    margin: 8px 0 0;
}

.drawer-sub.open { display: block; }

.drawer-sub li a {
    display: block;
    padding: 8px 0;
    font-size: 13px;
    color: #94a3b8;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
}

.drawer-sub li a:hover { color: #F5A800; }

.drawer-footer {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.drawer-btn-gabung {
    display: block;
    background: #F5A800;
    color: #0d2060;
    text-align: center;
    padding: 12px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    text-decoration: none;
}

.drawer-btn-login {
    display: block;
    background: transparent;
    color: #fff;
    text-align: center;
    padding: 12px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.3);
}

@media (max-width: 960px) {
    .footer-inner {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
}
@media (max-width: 600px) {
    .footer-inner {
        grid-template-columns: 1fr;
    }
    .footer-main {
        padding: 40px 20px 32px;
    }
}

/* ── RESPONSIVE ───────────────────────────────── */
@media (max-width: 960px) {
    .nav-menu {
        display: none;
    }
    .hamburger {
        display: flex;
    }
    .nav-btn-gabung,
    .nav-btn-login {
        display: none;
    }
    .pp-videos {
        grid-template-columns: 1fr;
    }
    .pk-inner {
        grid-template-columns: 1fr;
    }
    .pk-right {
        max-width: 300px;
    }
    .ad-grid {
        grid-template-columns: 1fr 1fr;
    }
    .layanan-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .berita-grid {
        grid-template-columns: 1fr 1fr;
    }
    .ppid-grid {
        grid-template-columns: 1fr;
    }
    .hero-stats {
        flex-direction: column;
        gap: 10px;
    }
    .hero-stat-box {
        min-width: unset;
    }
}
@media (max-width: 600px) {
    .ad-grid {
        grid-template-columns: 1fr;
    }
    .berita-grid {
        grid-template-columns: 1fr;
    }
    .hero-btns {
        flex-direction: column;
    }
    .hero-inner {
        padding: 60px 20px 40px;
    }
    .profil-new,
    .vm-new {
        padding: 48px 20px;
    }
    .cta-banner {
        margin: 0 16px 40px;
        padding: 28px 20px;
    }
}
