/**
 * SISTEM DESAIN EKSEKUTIF - ELISATI HALAWA, S.T.
 * Portal Kepemimpinan & Pengabdian Nias Selatan
 * Standard: Human-Crafted Agency Web Standard (Bootstrap 5.3)
 * Karakter: Merah Kerakyatan (PDIP) + Emas Adat Nias + Hitam-Putih Wibawa
 * Tumpuan: Kekuatan Masyarakat Bawah (Nelayan, Tani, Ternak, Tukang, UMKM)
 */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Merriweather:ital,wght@0,400;0,700;1,400&display=swap');

:root {
    /* Palet Warna Utama: Merah Kerakyatan */
    --c-primary: #991B1B;        /* Merah Parlemen / PDI-P */
    --c-primary-dark: #7F1D1D;
    --c-primary-light: #B91C1C;
    --c-primary-accent: #DC2626;
    --c-primary-subtle: #FEF2F2;
    --c-primary-border: #FECACA;
    
    /* Aksen Emas Adat Nias (Ana'a Tanö Niha) */
    --c-gold: #B45309;           /* Emas Kebanggaan Adat */
    --c-gold-light: #D97706;
    --c-gold-bright: #F59E0B;
    --c-gold-subtle: #FEF3C7;
    --c-gold-border: #FDE68A;
    
    /* Hitam Wibawa & Pondasi Eksekutif */
    --c-dark: #0F172A;           /* Charcoal Eksekutif */
    --c-dark-pure: #0B0F19;      /* Hitam Solid */
    --c-dark-soft: #1E293B;
    --c-dark-muted: #334155;
    
    /* Putih & Netral Kanvas Bersih */
    --c-white: #FFFFFF;
    --c-gray-50: #F8FAFC;
    --c-gray-100: #F1F5F9;
    --c-gray-200: #E2E8F0;
    --c-gray-300: #CBD5E1;
    --c-gray-400: #94A3B8;
    --c-gray-600: #475569;
    --c-gray-800: #1E293B;
    
    --font-main: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
    --font-serif: 'Merriweather', Georgia, serif;
    
    --radius-xs: 4px;
    --radius-sm: 6px;
    --radius-md: 8px;
    --radius-lg: 12px;
    
    --shadow-subtle: 0 1px 3px rgba(0, 0, 0, 0.05), 0 1px 2px rgba(0, 0, 0, 0.03);
    --shadow-card: 0 4px 12px rgba(15, 23, 42, 0.06);
    --shadow-elevated: 0 16px 32px -4px rgba(15, 23, 42, 0.12);
}

/* Base Reset & Typography */
* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: clip;
    max-width: 100%;
}

body {
    font-family: var(--font-main);
    color: var(--c-gray-800);
    background-color: #FFFFFF;
    line-height: 1.65;
    font-size: 0.95rem;
    overflow-x: clip;
    max-width: 100%;
    -webkit-font-smoothing: antialiased;
}

@media (max-width: 768px) {
    body {
        padding-bottom: 70px; /* Ruang presisi untuk bottom dock */
    }
}

h1, h2, h3, h4, h5, h6 {
    color: var(--c-dark);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.25;
}

.heading-serif {
    font-family: var(--font-serif);
    font-weight: 700;
}

/* 1. TOP BAR & STICKY HEADER WRAPPER */
.site-header-sticky {
    position: sticky;
    top: 0;
    z-index: 1040;
    transition: box-shadow 0.2s ease;
}

.site-header-sticky.scrolled {
    box-shadow: 0 8px 24px -4px rgba(15, 23, 42, 0.12);
}

.official-topbar {
    background: linear-gradient(90deg, #090D16 0%, #0F172A 50%, #1E293B 100%);
    color: #E2E8F0;
    font-size: 0.8rem;
    border-bottom: 2px solid #F59E0B;
    padding: 7px 0;
    position: relative;
    z-index: 1045;
}

.official-topbar .topbar-badge {
    background: linear-gradient(135deg, #DC2626, #B91C1C);
    color: #FFFFFF;
    font-size: 0.68rem;
    font-weight: 750;
    letter-spacing: 0.06em;
    padding: 2px 8px;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: inline-flex;
    align-items: center;
    gap: 4px;
    box-shadow: 0 2px 6px rgba(220, 38, 38, 0.35);
}

.official-topbar .social-pill {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.74rem;
    color: #CBD5E1;
    text-decoration: none;
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.official-topbar .social-pill:hover {
    background: #DC2626;
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.45);
    border-color: rgba(255, 255, 255, 0.3);
}

/* 2. MAIN NAVBAR */
.navbar-official {
    background: rgba(255, 255, 255, 0.98);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.85);
    padding: 10px 0;
    position: relative;
    z-index: 1040;
    transition: background-color 0.2s ease;
}

.navbar-official::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, rgba(220, 38, 38, 0.35) 25%, rgba(245, 158, 11, 0.6) 50%, rgba(220, 38, 38, 0.35) 75%, transparent 100%);
    opacity: 0.7;
    transition: opacity 0.25s ease;
}

.navbar-official.scrolled {
    padding: 10px 0;
    background: rgba(255, 255, 255, 0.99);
}

.navbar-official.scrolled::after {
    opacity: 1;
    height: 2.5px;
    background: linear-gradient(90deg, #DC2626 0%, #F59E0B 50%, #DC2626 100%);
}

/* Brand Logo & Typography in Main Navbar */
.navbar-brand-official {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none !important;
    padding: 2px 0;
}

.brand-logo-img {
    height: 44px;
    width: auto;
    display: inline-block;
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.08));
}

.navbar-brand-official:hover .brand-logo-img {
    transform: scale(1.05);
}

.brand-text-group {
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 1;
}

.brand-name {
    font-family: var(--font-sans);
    font-size: 1.18rem;
    font-weight: 850;
    letter-spacing: 0.03em;
    color: #0F172A; /* Hitam eksekutif berwibawa */
    line-height: 1.1;
    margin: 0;
    text-transform: uppercase;
    transition: color 0.2s ease;
}

.navbar-brand-official:hover .brand-name {
    color: #DC2626;
}

.brand-sub {
    font-family: var(--font-sans);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.22em;
    color: #DC2626; /* Merah Parlemen */
    line-height: 1.1;
    margin-top: 3px;
    text-transform: uppercase;
}

@media (max-width: 576px) {
    .brand-logo-img {
        height: 38px;
    }
    .brand-name {
        font-size: 0.98rem;
        letter-spacing: 0.02em;
    }
    .brand-sub {
        font-size: 0.65rem;
        letter-spacing: 0.16em;
    }
}

/* 3. DYNAMIC MENU BUTTONS & HOVER INTERACTIONS */
.nav-link-item {
    font-size: 0.88rem;
    font-weight: 650;
    letter-spacing: 0.015em;
    color: #334155 !important; /* Slate-700: kontras tinggi, tegas, berwibawa */
    padding: 8px 14px !important;
    border-radius: 8px;
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: transparent;
    transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
    text-decoration: none;
}

/* Bottom animated micro-bar */
.nav-link-item::after {
    content: '';
    position: absolute;
    bottom: 3px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 20px;
    height: 2.5px;
    background: linear-gradient(90deg, #DC2626, #F59E0B);
    border-radius: 2px;
    transition: transform 0.22s cubic-bezier(0.16, 1, 0.3, 1);
    transform-origin: center;
}

.nav-link-item:hover {
    color: #DC2626 !important;
    background: rgba(220, 38, 38, 0.06);
    transform: translateY(-1.5px);
}

.nav-link-item:hover::after {
    transform: translateX(-50%) scaleX(1);
}

.nav-link-item.active {
    color: #B91C1C !important;
    font-weight: 750;
    background: rgba(220, 38, 38, 0.08);
}

.nav-link-item.active::after {
    transform: translateX(-50%) scaleX(1);
    background: #DC2626;
}

/* Khusus Menu E-KAWAN (Gerakan Rakyat) */
.nav-link-ekawan {
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.08), rgba(245, 158, 11, 0.08)) !important;
    border: 1px solid rgba(220, 38, 38, 0.28) !important;
    color: #DC2626 !important;
    font-weight: 750 !important;
    border-radius: 20px !important;
    padding: 6px 14px !important;
    gap: 7px !important;
}

.nav-link-ekawan:hover {
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.16), rgba(245, 158, 11, 0.16)) !important;
    border-color: #DC2626 !important;
    transform: translateY(-1.5px);
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.2);
}

.live-pulse-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #DC2626;
    display: inline-block;
    box-shadow: 0 0 0 0 rgba(220, 38, 38, 0.7);
    animation: navPulseDot 1.8s infinite;
}

@keyframes navPulseDot {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(220, 38, 38, 0.7);
    }
    70% {
        transform: scale(1.1);
        box-shadow: 0 0 0 6px rgba(220, 38, 38, 0);
    }
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(220, 38, 38, 0);
    }
}

/* Profil Dropdown Styling */
.navbar-official .dropdown-menu {
    border: 1px solid rgba(226, 232, 240, 0.9);
    border-top: 3px solid #DC2626;
    border-radius: 12px;
    padding: 8px;
    background: #FFFFFF;
    box-shadow: 0 20px 35px -10px rgba(15, 23, 42, 0.15), 0 0 1px rgba(15, 23, 42, 0.05);
    animation: navDropdownFade 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    margin-top: 8px !important;
}

@keyframes navDropdownFade {
    from {
        opacity: 0;
        transform: translateY(6px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.navbar-official .dropdown-item {
    border-radius: 6px;
    padding: 9px 14px;
    font-size: 0.88rem;
    font-weight: 600;
    color: #334155;
    transition: all 0.18s ease;
}

.navbar-official .dropdown-item:hover {
    background: #FEF2F2;
    color: #DC2626;
    transform: translateX(4px);
}

/* High-Impact Hero CTA: Aspirasi Parlemen */
.navbar-official .btn-primary-official,
.btn-primary-official {
    background: linear-gradient(135deg, #DC2626 0%, #B91C1C 100%);
    color: #FFFFFF !important;
    font-weight: 700;
    font-size: 0.88rem;
    padding: 9px 18px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 14px rgba(220, 38, 38, 0.35);
    transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    letter-spacing: 0.02em;
}

.navbar-official .btn-primary-official:hover,
.btn-primary-official:hover {
    background: linear-gradient(135deg, #B91C1C 0%, #991B1B 100%);
    color: #FFFFFF !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(220, 38, 38, 0.45);
}

.btn-outline-official {
    background: transparent;
    color: var(--c-dark) !important;
    font-weight: 600;
    font-size: 0.88rem;
    padding: 9px 18px;
    border-radius: var(--radius-xs);
    border: 1px solid var(--c-gray-300);
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-outline-official:hover {
    background: var(--c-gray-100);
    border-color: var(--c-primary);
    color: var(--c-primary) !important;
}

.btn-outline-white {
    background: transparent;
    color: #FFFFFF !important;
    font-weight: 600;
    font-size: 0.88rem;
    padding: 9px 18px;
    border-radius: var(--radius-xs);
    border: 1px solid rgba(255, 255, 255, 0.4);
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: #FFFFFF;
    color: #FFFFFF !important;
}

/* High-Contrast Gold Action Button (E-KAWAN & Suara Rakyat) */
.btn-gold-official {
    background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
    color: #0F172A !important;
    font-weight: 750;
    font-size: 0.88rem;
    padding: 9px 18px;
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    box-shadow: 0 4px 14px rgba(245, 158, 11, 0.35);
    transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    letter-spacing: 0.02em;
}

.btn-gold-official:hover {
    background: linear-gradient(135deg, #D97706 0%, #B45309 100%);
    color: #FFFFFF !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(217, 119, 6, 0.45);
}

/* 3. HERO SECTION - FIGUR POLITIK BERKUALITAS KENEGARAAN */
.hero-official {
    background: #FFFFFF;
    color: var(--c-dark);
    min-height: calc(100vh - 104px);
    min-height: calc(100dvh - 104px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px 0 28px 0;
    position: relative;
    border-bottom: 4px solid var(--c-primary);
    overflow: hidden;
    box-sizing: border-box;
}

.hero-slider-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    opacity: 0;
    transform: scale(1.05);
    transition: opacity 1.3s ease-in-out, transform 7s ease-out;
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1);
}

/* Directional Overlay: Kiri Putih Terang untuk Teks Tajam, Kanan Lebih Hidup untuk Menampilkan Rakyat & Suasana */
.hero-overlay-white {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        rgba(255, 255, 255, 0.98) 0%, 
        rgba(255, 255, 255, 0.94) 46%, 
        rgba(255, 255, 255, 0.72) 75%, 
        rgba(255, 255, 255, 0.50) 100%);
    z-index: 1;
    pointer-events: none;
}

@media (max-width: 991px) {
    .hero-overlay-white {
        background: rgba(255, 255, 255, 0.92);
    }
}

.hero-content-container {
    position: relative;
    z-index: 2;
}

/* Tipografi & Identitas Politisi */
.hero-badge-politisi {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: linear-gradient(135deg, #DC2626 0%, #991B1B 100%);
    color: #FFFFFF;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    padding: 7px 18px;
    border-radius: 50px;
    box-shadow: 0 4px 14px rgba(220, 38, 38, 0.28);
    text-transform: uppercase;
}

.hero-badge-parlemen {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: #FEF3C7;
    border: 1.5px solid #F59E0B;
    color: #92400E;
    font-size: 0.85rem;
    font-weight: 750;
    padding: 7px 16px;
    border-radius: 50px;
}

.hero-headline-politisi {
    font-size: clamp(2.8rem, 4.2vw, 3.9rem);
    font-weight: 900;
    line-height: 1.05;
    color: #0F172A;
    letter-spacing: -0.025em;
    margin-bottom: 12px;
}

.hero-headline-accent {
    width: 90px;
    height: 4px;
    background: linear-gradient(90deg, #DC2626 0%, #F59E0B 100%);
    border-radius: 2px;
    margin-bottom: 14px;
}

.hero-subhead-politisi {
    font-family: var(--font-serif);
    font-size: clamp(1.2rem, 1.55vw, 1.45rem);
    color: #991B1B;
    font-style: italic;
    font-weight: 750;
    line-height: 1.35;
    margin-bottom: 12px;
}

.hero-desc-politisi {
    color: #334155;
    font-size: clamp(0.98rem, 1.12vw, 1.1rem);
    line-height: 1.6;
    margin-bottom: 20px;
    max-width: 650px;
}

/* 3 Pilar Modal Politik (Selling Points) */
.hero-selling-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 24px;
    max-width: 650px;
}

.hero-selling-item {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid #CBD5E1;
    border-top: 3.5px solid var(--c-primary);
    border-radius: 10px;
    padding: 10px 12px;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.05);
    transition: transform 0.2s, box-shadow 0.2s;
}

.hero-selling-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.1);
}

.hero-selling-icon {
    font-size: 1.4rem;
    margin-bottom: 4px;
    display: block;
}

.hero-selling-title {
    font-size: 0.94rem;
    font-weight: 800;
    color: #0F172A;
    line-height: 1.25;
    margin-bottom: 3px;
}

.hero-selling-desc {
    font-size: 0.8rem;
    color: #475569;
    line-height: 1.35;
    margin: 0;
}

.hero-official .btn-primary-official,
.hero-official .btn-outline-official,
.hero-official .btn-gold-official {
    padding: 10px 20px !important;
    font-size: 0.94rem !important;
    font-weight: 750;
    border-radius: 10px;
}

/* Stage Visual Figur Tokoh Menjulang */
.hero-portrait-stage {
    position: relative;
    max-width: clamp(380px, 35vw, 480px);
    margin: 0 auto;
    padding: 8px 8px 16px 8px;
}

/* Radiant Backlight Aura di Belakang Figur */
.hero-portrait-aura {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: clamp(420px, 40vw, 540px);
    height: clamp(420px, 40vw, 540px);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.35) 0%, rgba(220, 38, 38, 0.2) 45%, transparent 70%);
    filter: blur(35px);
    z-index: 0;
    pointer-events: none;
}

/* Architectural Offset Frame Kenegaraan (Memberikan Dimensi Gagah & Berwibawa) */
.hero-portrait-stage::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 8px;
    left: 16px;
    border-radius: 24px;
    border: 2px solid rgba(245, 158, 11, 0.6);
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.06) 0%, rgba(245, 158, 11, 0.12) 100%);
    z-index: 1;
    pointer-events: none;
    transition: transform 0.3s ease;
}

.hero-portrait-stage:hover::before {
    transform: translate(-3px, 3px);
    border-color: #F59E0B;
}

/* Frame Foto Utama Tokoh (Bentuk Persegi Proporsional Gagah Sesuai Foto Resmi) */
.hero-portrait-frame-politisi {
    position: relative;
    z-index: 2;
    border-radius: 20px;
    overflow: hidden;
    background: #FFFFFF;
    border: 4px solid #FFFFFF;
    box-shadow: 0 25px 60px -10px rgba(15, 23, 42, 0.32), 0 0 0 1px rgba(245, 158, 11, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-portrait-frame-politisi:hover {
    transform: translateY(-4px);
    box-shadow: 0 30px 65px -10px rgba(15, 23, 42, 0.4), 0 0 0 2px #F59E0B;
}

.hero-portrait-frame-politisi img {
    width: 100%;
    height: clamp(410px, 52vh, 520px);
    max-height: 520px;
    object-fit: cover;
    object-position: top center;
    display: block;
}

@media (min-width: 992px) and (max-height: 820px) {
    .hero-official {
        padding: 12px 0 20px 0;
    }
    .hero-headline-politisi {
        font-size: clamp(2.5rem, 3.4vw, 3.2rem);
        margin-bottom: 8px;
    }
    .hero-headline-accent {
        margin-bottom: 10px;
    }
    .hero-subhead-politisi {
        font-size: 1.2rem;
        margin-bottom: 8px;
    }
    .hero-desc-politisi {
        font-size: 0.95rem;
        line-height: 1.5;
        margin-bottom: 14px;
    }
    .hero-selling-grid {
        margin-bottom: 16px;
        gap: 10px;
    }
    .hero-selling-item {
        padding: 8px 10px;
    }
    .hero-selling-title {
        font-size: 0.88rem;
    }
    .hero-selling-desc {
        font-size: 0.76rem;
    }
    .hero-portrait-stage {
        max-width: clamp(350px, 32vw, 420px);
        padding: 6px 6px 12px 6px;
    }
    .hero-portrait-stage::before {
        left: 12px;
        bottom: 6px;
    }
    .hero-portrait-frame-politisi img {
        height: clamp(370px, 47vh, 440px);
    }
    .badge-floating-seal {
        width: 86px;
        height: 86px;
        top: 14px;
        right: -12px;
    }
    .badge-floating-banner {
        bottom: -12px;
        padding: 8px 14px;
    }
    .hero-official .btn-primary-official,
    .hero-official .btn-outline-official,
    .hero-official .btn-gold-official {
        padding: 8px 16px !important;
        font-size: 0.88rem !important;
    }
}

/* Floating Golden Medallion: 2 Periode */
.badge-floating-seal {
    position: absolute;
    top: 22px;
    right: -16px;
    z-index: 3;
    background: linear-gradient(135deg, #FDE68A 0%, #D97706 50%, #B45309 100%);
    color: #1E293B;
    border-radius: 50%;
    width: 98px;
    height: 98px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 8px;
    box-shadow: 0 12px 28px rgba(180, 83, 9, 0.5), 0 0 0 3px #FFFFFF;
    animation: floatingSeal 4s ease-in-out infinite;
}

@keyframes floatingSeal {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

.badge-floating-seal .seal-stars {
    color: #92400E;
    font-size: 0.72rem;
    letter-spacing: 1.5px;
    margin-bottom: 2px;
}

.badge-floating-seal .seal-main {
    font-weight: 900;
    font-size: 0.85rem;
    line-height: 1.1;
    text-transform: uppercase;
}

.badge-floating-seal .seal-sub {
    font-size: 0.68rem;
    font-weight: 800;
    color: #1E293B;
    line-height: 1.1;
    margin-top: 1px;
}

/* Floating Shield Banner: Pengawal 35 Kecamatan */
.badge-floating-banner {
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    width: 90%;
    background: rgba(11, 15, 25, 0.94);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(245, 158, 11, 0.45);
    border-left: 4px solid #DC2626;
    border-radius: 12px;
    padding: 10px 16px;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.45);
    display: flex;
    align-items: center;
    gap: 12px;
}

.badge-floating-banner .banner-icon {
    font-size: 1.8rem;
    color: #F59E0B;
    line-height: 1;
}

.badge-floating-banner .banner-text {
    text-align: left;
}

.badge-floating-banner strong {
    display: block;
    color: #FFFFFF;
    font-size: 0.96rem;
    font-weight: 800;
}

.badge-floating-banner small {
    color: #94A3B8;
    font-size: 0.8rem;
    display: block;
}

.hero-slider-indicators {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: inline-flex;
    gap: 6px;
    padding: 4px 10px;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border: 1px solid rgba(226, 232, 240, 0.85);
    border-radius: 20px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.hero-dot {
    width: 20px;
    height: 5px;
    border-radius: 3px;
    border: none;
    background: rgba(15, 23, 42, 0.25);
    padding: 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-dot.active {
    background: var(--c-primary);
    width: 36px;
}

.hero-dot:hover {
    background: rgba(15, 23, 42, 0.6);
}

@media (max-width: 991px) {
    .hero-official {
        padding: 38px 0 54px 0;
    }
    .hero-headline-politisi {
        font-size: 2.3rem;
        line-height: 1.14;
    }
    .hero-subhead-politisi {
        font-size: 1.15rem;
    }
    .hero-selling-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    .hero-portrait-stage {
        max-width: 330px;
        margin-top: 10px;
        margin-bottom: 24px;
    }
    .hero-portrait-aura {
        width: 330px;
        height: 330px;
    }
    .hero-portrait-frame-politisi img {
        height: 380px;
    }
    .badge-floating-seal {
        width: 78px;
        height: 78px;
        right: -4px;
        top: 10px;
    }
    .badge-floating-banner {
        padding: 8px 12px;
        bottom: -12px;
    }
    .badge-floating-banner strong {
        font-size: 0.8rem;
    }
    .badge-floating-banner small {
        font-size: 0.68rem;
    }
}

@media (max-width: 576px) {
    .hero-headline-politisi {
        font-size: 1.85rem;
    }
    .hero-badge-politisi {
        font-size: 0.7rem;
        padding: 5px 12px;
    }
    .hero-badge-parlemen {
        font-size: 0.7rem;
        padding: 5px 12px;
    }
    .hero-portrait-stage {
        max-width: 290px;
    }
    .hero-portrait-frame-politisi img {
        height: 330px;
    }
    .badge-floating-seal {
        width: 70px;
        height: 70px;
    }
    .badge-floating-seal .seal-main {
        font-size: 0.66rem;
    }
    .badge-floating-seal .seal-sub {
        font-size: 0.54rem;
    }
}

/* 4. QUICK ACTION MENU (8 KOTAK PRESISI) */
.quick-menu-section {
    background: #F8FAFC;
    border-bottom: 1px solid var(--c-gray-200);
    padding: 24px 0;
}

.quick-box {
    background: #FFFFFF;
    border: 1px solid var(--c-gray-200);
    border-radius: var(--radius-xs);
    padding: 16px 8px;
    text-align: center;
    text-decoration: none;
    color: var(--c-dark);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 96px;
    height: 100%;
    transition: all 0.2s ease;
}

.quick-box:hover {
    border-color: var(--c-primary);
    box-shadow: var(--shadow-card);
    transform: translateY(-2px);
    color: var(--c-primary);
}

.quick-box i {
    font-size: 1.45rem;
    color: var(--c-primary);
    margin-bottom: 6px;
}

.quick-box-label {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    line-height: 1.25;
}

/* ==========================================================
   5. SEKSI KHUSUS: 6 PILAR KEKUATAN MASYARAKAT BAWAH
   (Terinspirasi dari Diagram Basis Nelayan, Tani, Ternak, Tukang, UMKM)
   ========================================================== */
.pillar-card {
    background: #FFFFFF;
    border: 1px solid var(--c-gray-200);
    border-top: 4px solid var(--c-primary);
    border-radius: var(--radius-md);
    padding: 22px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    transition: all 0.2s ease;
    box-shadow: var(--shadow-subtle);
}

.pillar-card:hover {
    border-color: var(--c-primary);
    box-shadow: 0 8px 24px rgba(153, 27, 27, 0.12);
    transform: translateY(-3px);
}

.pillar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
}

.pillar-code {
    font-size: 0.75rem;
    font-weight: 800;
    background: var(--c-primary-subtle);
    color: var(--c-primary);
    border: 1px solid var(--c-primary-border);
    padding: 3px 8px;
    border-radius: var(--radius-xs);
    font-family: monospace;
}

.pillar-icon-box {
    width: 44px;
    height: 44px;
    background: var(--c-primary);
    color: #FFFFFF;
    border-radius: var(--radius-xs);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
}

.pillar-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--c-dark);
    margin-bottom: 8px;
}

.pillar-desc {
    font-size: 0.86rem;
    color: var(--c-gray-600);
    line-height: 1.6;
    margin-bottom: 16px;
}

.pillar-action-link {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--c-primary);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border-top: 1px solid var(--c-gray-200);
    padding-top: 10px;
    width: 100%;
}

.pillar-action-link:hover {
    color: var(--c-primary-dark);
    text-decoration: underline;
}

/* 6. PAGE HEADERS (Untuk Halaman Internal) */
.page-header-official {
    background: var(--c-dark-pure);
    color: #FFFFFF;
    padding: 44px 0 48px 0;
    border-bottom: 4px solid var(--c-primary);
}

.page-header-tag {
    display: inline-block;
    background: rgba(180, 83, 9, 0.2);
    border: 1px solid var(--c-gold-bright);
    color: #FDE68A;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    padding: 3px 10px;
    border-radius: var(--radius-xs);
    text-transform: uppercase;
    margin-bottom: 10px;
}

.page-header-title {
    font-size: 2.1rem;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 6px;
    line-height: 1.2;
}

.page-header-desc {
    color: #CBD5E1;
    font-size: 0.95rem;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .page-header-official {
        padding: 32px 0 36px 0;
    }
    .page-header-title {
        font-size: 1.55rem;
    }
}

/* 6B. PROFIL STICKY SIDEBAR & TOKOH SHOWCASE */
.profil-sticky-sidebar {
    position: sticky;
    top: 127px;
    z-index: 10;
    max-height: calc(100vh - 135px);
    overflow-y: auto;
    scrollbar-width: none;
}

.profil-sticky-sidebar::-webkit-scrollbar {
    display: none;
}

.card-tokoh-sidebar {
    background: #FFFFFF;
    border: 1px solid rgba(226, 232, 240, 0.95);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px -2px rgba(15, 23, 42, 0.06);
    transition: box-shadow 0.2s ease;
}

.card-tokoh-sidebar:hover {
    box-shadow: 0 6px 18px -4px rgba(15, 23, 42, 0.10);
}

.tokoh-sidebar-cover {
    height: 44px;
    background: linear-gradient(135deg, #090D16 0%, #1E293B 55%, #B91C1C 100%);
    position: relative;
    border-bottom: 2px solid #F59E0B;
}

.tokoh-sidebar-body {
    padding: 0 14px 12px 14px;
}

.tokoh-avatar-wrapper {
    position: relative;
    width: 72px;
    height: 72px;
    margin: -36px auto 8px auto;
}

.tokoh-avatar-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    object-position: top center;
    border: 3px solid #FFFFFF;
    box-shadow: 0 0 0 2px #F59E0B, 0 4px 10px rgba(0, 0, 0, 0.18);
    background: #1E293B;
}

.tokoh-verified-badge {
    position: absolute;
    bottom: 0px;
    right: 0px;
    background: #DC2626;
    color: #FFFFFF;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.72rem;
    border: 2px solid #FFFFFF;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.25);
}

.tokoh-name {
    font-family: var(--font-sans);
    font-size: 1.05rem;
    font-weight: 800;
    color: #0F172A;
    letter-spacing: -0.01em;
    margin-bottom: 2px;
}

.tokoh-metric-box {
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
    border-radius: 8px;
    padding: 5px 2px;
    text-align: center;
    transition: all 0.2s ease;
}

.tokoh-metric-box:hover {
    border-color: #CBD5E1;
    background: #F1F5F9;
}

.tokoh-metric-val {
    display: block;
    font-size: 0.95rem;
    font-weight: 800;
    line-height: 1.1;
}

.tokoh-metric-lbl {
    display: block;
    font-size: 0.64rem;
    font-weight: 600;
    color: #64748B;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    margin-top: 1px;
}

.card-tokoh-nav {
    background: #FFFFFF;
    border: 1px solid rgba(226, 232, 240, 0.95);
    border-radius: 12px;
    padding: 10px 12px;
    box-shadow: 0 2px 10px -2px rgba(15, 23, 42, 0.06);
}

.profil-nav-pills .profil-nav-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 10px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #475569;
    text-decoration: none;
    transition: all 0.15s cubic-bezier(0.16, 1, 0.3, 1);
    border-left: 3px solid transparent;
}

.profil-nav-pills .profil-nav-link:hover {
    color: #DC2626;
    background: rgba(220, 38, 38, 0.05);
    transform: translateX(2px);
}

.profil-nav-pills .profil-nav-link.active {
    color: #991B1B;
    background: rgba(220, 38, 38, 0.08);
    border-left-color: #DC2626;
    font-weight: 700;
}

.card-tokoh-quote {
    background: linear-gradient(135deg, #090D16 0%, #1E293B 100%);
    border-radius: 12px;
    padding: 10px 12px;
    border-left: 3px solid #F59E0B;
    box-shadow: 0 2px 10px -2px rgba(15, 23, 42, 0.12);
}

/* 7. SECTIONS & CARDS */
.section-heading {
    margin-bottom: 32px;
}

.section-label {
    color: var(--c-primary);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 4px;
    display: block;
}

.section-title {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--c-dark);
    margin: 0;
}

.card-official {
    background: #FFFFFF;
    border: 1px solid var(--c-gray-200);
    border-radius: var(--radius-md);
    padding: 24px;
    box-shadow: var(--shadow-subtle);
    scroll-margin-top: 127px;
}

section[id], [id] {
    scroll-margin-top: 127px;
}

#biografi {
    scroll-margin-top: 127px;
}

@media (max-width: 768px) {
    .profil-sticky-sidebar {
        top: 72px;
    }
    section[id], [id], .card-official, #biografi {
        scroll-margin-top: 72px;
    }
}

.stat-box-official {
    background: #FFFFFF;
    border: 1px solid var(--c-gray-200);
    border-left: 4px solid var(--c-primary);
    border-radius: var(--radius-xs);
    padding: 16px 20px;
    height: 100%;
}

.stat-box-official .stat-num {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--c-dark);
    line-height: 1.1;
    margin-bottom: 4px;
}

.stat-box-official .stat-title {
    font-weight: 700;
    font-size: 0.88rem;
    color: var(--c-primary);
    margin-bottom: 2px;
}

.stat-box-official .stat-sub {
    font-size: 0.8rem;
    color: var(--c-gray-600);
    line-height: 1.4;
    margin: 0;
}

/* Statement Banner - Membumi & Berwibawa */
.statement-banner {
    background: var(--c-dark-pure);
    color: #FFFFFF;
    padding: 52px 0;
    border-top: 3px solid var(--c-gold);
    border-bottom: 3px solid var(--c-gold);
}

.statement-quote {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-style: italic;
    line-height: 1.7;
    color: #F8FAFC;
    max-width: 820px;
    margin: 0 auto 20px auto;
}

@media (max-width: 768px) {
    .statement-quote {
        font-size: 1.05rem;
    }
}

/* Statement Banner - Versi Putih Berwibawa */
.statement-banner-light {
    background: #FFFFFF;
    color: var(--c-dark);
    padding: 56px 0;
    border-top: 3px solid var(--c-gold);
    border-bottom: 3px solid var(--c-gold);
}

.statement-banner-light .statement-quote {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    font-style: italic;
    line-height: 1.7;
    color: #0F172A;
    max-width: 820px;
    margin: 0 auto 20px auto;
}

@media (max-width: 768px) {
    .statement-banner-light .statement-quote {
        font-size: 1.05rem;
    }
}

/* Dark Sections (Untuk Pola Selang-Seling Putih-Hitam) */
.section-dark-official {
    background: var(--c-dark-pure);
    color: #FFFFFF;
}

.section-dark-official .section-title {
    color: #FFFFFF;
}

.section-dark-official .section-label {
    color: var(--c-gold-bright);
}

.section-dark-official .text-secondary {
    color: #CBD5E1 !important;
}

.section-dark-official .nav-tabs-official {
    border-bottom: 2px solid rgba(255, 255, 255, 0.12);
}

.section-dark-official .nav-tabs-official .nav-link {
    color: #94A3B8;
}

.section-dark-official .nav-tabs-official .nav-link:hover {
    color: #FFFFFF;
}

.section-dark-official .nav-tabs-official .nav-link.active {
    color: var(--c-gold-bright);
    border-bottom-color: var(--c-gold-bright);
    font-weight: 700;
}

.section-dark-official .card-official {
    background: #111827;
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #FFFFFF;
}

.section-dark-official .card-official h3,
.section-dark-official .card-official h4,
.section-dark-official .card-official h5,
.section-dark-official .card-official h6 {
    color: #FFFFFF !important;
}

.section-dark-official .stat-box-official {
    background: #111827;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-left: 4px solid var(--c-gold);
}

.section-dark-official .stat-box-official .stat-num {
    color: var(--c-gold-bright);
}

.section-dark-official .stat-box-official .stat-title {
    color: #FFFFFF;
}

.section-dark-official .stat-box-official .stat-sub {
    color: #94A3B8;
}

.section-dark-official .form-control-official {
    background: #0B0F19;
    border-color: rgba(255, 255, 255, 0.2);
    color: #FFFFFF;
}

.section-dark-official .form-control-official:focus {
    background: #0F172A;
    border-color: var(--c-gold);
    color: #FFFFFF;
}

.section-dark-official .form-control-official option {
    background: #0F172A;
    color: #FFFFFF;
}

.section-dark-official .form-label-official {
    color: #E2E8F0;
}

.section-dark-official .btn-outline-official {
    color: #FFFFFF !important;
    border-color: rgba(255, 255, 255, 0.35) !important;
}

.section-dark-official .btn-outline-official:hover {
    background: rgba(255, 255, 255, 0.12) !important;
    border-color: #FFFFFF !important;
    color: #FFFFFF !important;
}

.section-dark-official .bg-light {
    background: #1E293B !important;
    border-color: rgba(255, 255, 255, 0.1) !important;
}

.section-dark-official .text-dark {
    color: #F8FAFC !important;
}

.section-dark-official .border {
    border-color: rgba(255, 255, 255, 0.1) !important;
}

.section-dark-official.border-bottom {
    border-bottom-color: rgba(255, 255, 255, 0.1) !important;
}

.section-dark-official.border-top {
    border-top-color: rgba(255, 255, 255, 0.1) !important;
}

/* Gallery Filter Buttons */
.gallery-filter-btn {
    font-size: 0.82rem;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 6px;
    border: 1px solid #CBD5E1;
    background: #FFFFFF;
    color: #334155;
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.gallery-filter-btn:hover {
    border-color: #DC2626;
    color: #DC2626;
    background: rgba(220, 38, 38, 0.04);
}

.gallery-filter-btn.active {
    background: linear-gradient(135deg, #DC2626 0%, #B91C1C 100%) !important;
    border-color: #DC2626 !important;
    color: #FFFFFF !important;
    box-shadow: 0 2px 8px rgba(220, 38, 38, 0.3);
}

/* Input group integration with official forms */
.input-group > .form-control-official {
    border-top-right-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
}
.input-group > .btn-primary-official {
    border-top-left-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
}

/* 8. APP ECOSYSTEM HUB */
.app-hub-card {
    background: #FFFFFF;
    border: 1px solid var(--c-gray-200);
    border-radius: var(--radius-md);
    padding: 20px;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    transition: all 0.2s ease;
}

.app-hub-card:hover {
    border-color: var(--c-primary);
    box-shadow: var(--shadow-card);
    transform: translateY(-2px);
    color: inherit;
}

.app-hub-card .app-icon {
    width: 44px;
    height: 44px;
    background: var(--c-primary-subtle);
    color: var(--c-primary);
    border: 1px solid var(--c-primary-border);
    border-radius: var(--radius-xs);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

/* 9. FORM CONTROLS - PRESISI & FORMAL */
.form-control-official {
    border: 1px solid var(--c-gray-200);
    border-radius: var(--radius-xs);
    padding: 10px 14px;
    font-size: 0.9rem;
    color: var(--c-dark);
    width: 100%;
    background-color: #FFFFFF;
}

.form-control-official:focus {
    border-color: var(--c-primary);
    box-shadow: 0 0 0 3px rgba(153, 27, 27, 0.1);
    outline: none;
}

.form-label-official {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--c-dark-soft);
    margin-bottom: 6px;
    display: block;
}

/* 10. TABS NAVIGATION */
.nav-tabs-official {
    border-bottom: 2px solid var(--c-gray-200);
    gap: 4px;
}

.nav-tabs-official .nav-link {
    color: var(--c-gray-600);
    font-weight: 600;
    font-size: 0.9rem;
    padding: 10px 20px;
    border: none;
    border-bottom: 3px solid transparent;
    border-radius: 0;
    transition: all 0.2s;
    background: transparent;
}

.nav-tabs-official .nav-link:hover {
    color: var(--c-primary);
}

.nav-tabs-official .nav-link.active {
    color: var(--c-primary);
    border-bottom-color: var(--c-primary);
    font-weight: 700;
    background: transparent;
}

/* 11. TIMELINE OFFICIAL */
.timeline-stem {
    position: relative;
    padding-left: 28px;
    border-left: 2px solid var(--c-gray-200);
    margin-left: 10px;
}

.timeline-stem-item {
    position: relative;
    margin-bottom: 32px;
}

.timeline-stem-item:last-child {
    margin-bottom: 0;
}

.timeline-stem-dot {
    position: absolute;
    left: -35px;
    top: 2px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--c-primary);
    border: 3px solid #FFFFFF;
    box-shadow: 0 0 0 1px var(--c-primary);
}

/* 12. NEWS CARD */
.news-item-card {
    background: #FFFFFF;
    border: 1px solid var(--c-gray-200);
    border-radius: var(--radius-md);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.2s ease;
}

.news-item-card:hover {
    border-color: var(--c-primary);
    box-shadow: var(--shadow-card);
}

.news-item-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    object-position: top center;
    background: #E2E8F0;
    display: block;
}

.news-item-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-grow: 1;
}

/* 13. MOBILE OFFCANVAS DRAWER */
.offcanvas-official {
    background: var(--c-dark-pure);
    color: #FFFFFF;
    width: 310px !important;
}

.offcanvas-official:not(.show) {
    visibility: hidden !important;
}

.offcanvas-official .offcanvas-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 16px 20px;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    color: #CBD5E1;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: var(--radius-xs);
    transition: all 0.15s ease;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    background: rgba(153, 27, 27, 0.3);
    color: #FFFFFF;
}

.mobile-nav-link i {
    font-size: 1.15rem;
    color: var(--c-gold-bright);
}

/* ==========================================================
   14. MOBILE BOTTOM DOCK (Presisi, Terinspirasi Yasonna Laoly)
   Ditempelkan rapi di tepi bawah layar penuh.
   ========================================================== */
.bottom-dock-official {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1040;
    background: var(--c-dark-pure);
    border-top: 2px solid var(--c-primary);
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.25);
    height: 60px;
    padding: 0 8px;
}

@media (max-width: 768px) {
    .bottom-dock-official {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
}

.dock-avatar-col {
    flex-shrink: 0;
    margin-right: 8px;
    position: relative;
}

.dock-avatar-img {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 2px solid var(--c-gold-bright);
    object-fit: cover;
    object-position: top center;
    background: #1E293B;
    margin-top: -10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    display: block;
}

.dock-links-group {
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-grow: 1;
    height: 100%;
}

.dock-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #94A3B8;
    height: 100%;
    padding: 0 4px;
    font-size: 0.65rem;
    font-weight: 600;
    transition: color 0.15s;
    min-width: 44px;
}

.dock-nav-item i {
    font-size: 1.15rem;
    margin-bottom: 2px;
}

.dock-nav-item:hover,
.dock-nav-item.active {
    color: #FFFFFF;
}

.dock-nav-item.active i {
    color: var(--c-primary-accent);
}

.dock-nav-item.highlight-aspirasi {
    color: #FEF2F2;
}

.dock-nav-item.highlight-aspirasi i {
    color: var(--c-primary-accent);
}

/* 15. FOOTER OFFICIAL */
.official-footer {
    background: var(--c-dark-pure);
    color: #94A3B8;
    padding: 48px 0 24px 0;
    border-top: 4px solid var(--c-primary);
    font-size: 0.88rem;
}

.official-footer h6 {
    color: #FFFFFF;
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.official-footer a {
    color: #94A3B8;
    text-decoration: none;
    transition: color 0.2s;
}

.official-footer a:hover {
    color: #FFFFFF;
}

.footer-social-icon {
    width: 34px;
    height: 34px;
    border-radius: var(--radius-xs);
    background: #1E293B;
    color: #CBD5E1 !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 6px;
    transition: all 0.2s;
}

.footer-social-icon:hover {
    background: var(--c-primary);
    color: #FFFFFF !important;
}

/* ==========================================================
   16. E-KAWAN POWERHOUSE SECTION
   Kekuatan Utama dari Akar Rumput: Solidaritas, Militansi & Aksi Nyata
   ========================================================== */
.hero-ekawan-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(153, 27, 27, 0.35);
    border: 1px solid var(--c-primary-light);
    color: #FECACA;
    padding: 5px 14px;
    border-radius: var(--radius-xs);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    margin-bottom: 12px;
    max-width: 100%;
    white-space: normal;
}

.hero-ekawan-tag .tag-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #EF4444;
    box-shadow: 0 0 8px #EF4444;
}

.ekawan-section {
    background: var(--c-dark-pure);
    color: #FFFFFF;
    padding: 68px 0;
    position: relative;
    border-top: 4px solid var(--c-primary);
    border-bottom: 4px solid var(--c-gold);
}

.ekawan-badge-main {
    display: inline-block;
    background: rgba(180, 83, 9, 0.2);
    border: 1px solid var(--c-gold-bright);
    color: #FDE68A;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    padding: 5px 14px;
    border-radius: var(--radius-xs);
    text-transform: uppercase;
    margin-bottom: 16px;
}

.ekawan-heading {
    font-size: 2.25rem;
    font-weight: 800;
    color: #FFFFFF;
    line-height: 1.2;
    margin-bottom: 14px;
}

@media (max-width: 768px) {
    .ekawan-heading {
        font-size: 1.7rem;
    }
    .ekawan-section {
        padding: 44px 0;
    }
}

.ekawan-lead {
    color: #CBD5E1;
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 24px;
}

.ekawan-feature-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-left: 3px solid var(--c-primary-light);
    border-radius: var(--radius-xs);
    padding: 16px 18px;
    margin-bottom: 14px;
    transition: all 0.2s ease;
}

.ekawan-feature-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-left-color: var(--c-gold-bright);
    transform: translateX(4px);
}

.ekawan-hub-box {
    background: #111827;
    border: 2px solid rgba(180, 83, 9, 0.4);
    border-radius: var(--radius-md);
    padding: 32px 28px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.ekawan-milestone-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 24px;
}

.ekawan-milestone-item {
    background: #0B0F19;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xs);
    padding: 14px 10px;
    text-align: center;
}

.ekawan-milestone-item .num {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--c-gold-bright);
    line-height: 1.1;
    display: block;
    margin-bottom: 4px;
}

.ekawan-milestone-item .lbl {
    font-size: 0.72rem;
    color: #94A3B8;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    display: block;
}

.btn-ekawan-action {
    background: var(--c-primary);
    color: #FFFFFF !important;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 13px 24px;
    border-radius: var(--radius-xs);
    border: 1px solid var(--c-primary-light);
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    box-shadow: 0 4px 14px rgba(153, 27, 27, 0.4);
}

.btn-ekawan-action:hover {
    background: var(--c-primary-dark);
    color: #FFFFFF !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(153, 27, 27, 0.6);
}

