/*
Theme Name: Keluarga Sulbar Master Edition - Seamless Cross-Fade
Author: Dwi Cahyadi
Version: 28.3
Description: Rasio 5:1, Gold Subtitle, Centered Footer, & Seamless Background Cross-Fade.
*/

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700;800&family=Great+Vibes&family=Pacifico&display=swap');

/* --- 1. ROOT VARIABLES --- */
:root {
    --biru-bkkbn: #0054A6;    
    --biru-muda-kkb: #00AEEF; 
    --emas-mewah: #D4AF37; 
    --putih: #FFFFFF;
    --abu-bg: #FFFFFF; 
    --hitam-teks: #1A1A1A;
    --gradasi-header: linear-gradient(135deg, var(--biru-bkkbn) 0%, var(--biru-muda-kkb) 100%);
    --fade-ke-putih: linear-gradient(to bottom, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%);
}

/* --- FIX PENYELARASAN HALAMAN INTERNAL --- */
.container-halaman {
    max-width: 1000px !important;    
    margin: 50px auto !important;    
    padding: 0 20px !important;      
    box-sizing: border-box;
}

.entry-header {
    margin-bottom: 25px !important;
}

.entry-title {
    font-size: 32px !important;
    font-weight: 800 !important;
    color: var(--biru-bkkbn) !important;
    margin: 0 0 10px 0 !important;
    text-align: left !important;
}

.garis-hiasan {
    width: 60px;
    height: 4px;
    background: var(--emas-mewah);
    border-radius: 10px;
    margin-bottom: 25px;
}

.entry-content {
    line-height: 1.85 !important;
    font-size: 16px;
    color: #333;
    text-align: justify !important;
}

.entry-content p {
    text-align: justify !important;
    margin-bottom: 20px;
}

/* --- 2. BASE STYLES --- */
body { 
    margin: 0; 
    padding: 0; 
    font-family: 'Montserrat', sans-serif; 
    background-color: var(--abu-bg); 
    overflow-x: hidden; 
}

/* --- 3. HEADER SECTION --- */
.site-header {
    background: rgba(0, 84, 166, 0.75); 
    backdrop-filter: blur(15px) saturate(150%);
    -webkit-backdrop-filter: blur(15px) saturate(150%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    position: sticky; 
    top: 0; 
    z-index: 1000;
    padding: 0px 0 0 0; 
    border-bottom-left-radius: 5% 50px; 
    border-bottom-right-radius: 5% 50px;
    transition: all 0.3s ease;
    height: 85px; 
    overflow: visible; 
}

.navbar { 
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    width: 100%; 
}

.header-top-row {
    display: flex;
    width: 95%; 
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5px;
    position: relative;
}

.header-side-spacer { flex: 1; display: block; }

.logo-text-block { 
    margin-top: -25px; 
    margin-bottom: -22px; 
    text-align: center; 
    flex: 2; 
}

.logo-main-text { 
    font-size: 32px; 
    font-weight: 800; 
    color: white; 
    letter-spacing: 2px; 
    line-height: 1;
    text-transform: uppercase;
}

.logo-main-text span { color: #FFD200; }

.logo-sub-text { 
    font-size: 11px; 
    font-weight: 700;
    color: rgba(255,255,255,0.95); 
    margin-top: 2px; 
    text-transform: uppercase; 
    letter-spacing: 1px;
}

/* --- 5. SOCIAL MEDIA & LIVE TIME --- */
.header-social-container {
    flex: 1; 
    display: flex;
    flex-direction: column; 
    align-items: flex-end;
    justify-content: flex-start; 
    gap: 5px; 
    padding-top: 12px; 
    padding-right: 15px;
}

.social-icons-wrapper {
    display: flex;
    gap: 8px; 
}

.social-icon {
    color: rgba(255, 255, 255, 0.9) !important; 
    font-size: 14px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1); 
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    text-decoration: none !important;
}

.social-icon:hover {
    background: var(--emas-mewah) !important; 
    color: var(--biru-bkkbn) !important;     
    transform: translateY(-3px) scale(1.1);   
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
    border-color: var(--emas-mewah) !important;
}

#waktu-wita {
    font-size: 8px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    text-align: right;
    margin-top: 3px; 
    line-height: 1.2;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

.live-dot {
    height: 5px;
    width: 5px;
    background-color: #2ecc71;
    border-radius: 50%;
    display: inline-block;
    margin-right: 4px;
    box-shadow: 0 0 5px #2ecc71;
    animation: blink-dot 1.5s infinite;
}

@keyframes blink-dot {
    0% { opacity: 1; }
    50% { opacity: 0.2; }
    100% { opacity: 1; }
}

/* --- 6. NAVIGATION MENU (DESKTOP) --- */
.menu { 
    width: auto; 
    transform: translateY(-6px); 
    z-index: 1001; 
}

.menu ul { 
    list-style: none; 
    display: flex; 
    margin: 0; 
    padding: 2px clamp(10px, 2vw, 25px); 
    background: rgba(255, 255, 255, 0.85); 
    backdrop-filter: blur(20px);
    border-radius: 50px; 
    border: 1px solid rgba(0, 0, 0, 0.1);
    justify-content: center;
    align-items: center;
}

.menu a { 
    color: #444 !important;
    text-decoration: none; 
    font-size: clamp(11px, 1.1vw, 13px); 
    font-weight: 500; 
    padding: 8px clamp(8px, 1.2vw, 15px); 
    text-transform: capitalize; 
    transition: all 0.2s ease-in-out;
    white-space: nowrap;
}

.menu a:hover, 
.menu .current-menu-item > a { 
    color: #000000 !important; 
    font-weight: 800 !important; 
    transform: scale(1.02);
}

.menu ul li { position: relative; display: flex; align-items: center; }

.menu ul li:not(:last-child)::after {
    content: "";
    height: 10px;
    width: 1px;
    background: rgba(0, 0, 0, 0.1);
    margin: 0 5px;
}

/* --- SUB MENU --- */
.menu ul li ul {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 160px; 
    background: rgba(255, 255, 255, 0.9); 
    display: flex;
    flex-direction: column;
    padding: 10px;
    margin-top: 10px;
    border-radius: 15px; 
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    visibility: hidden;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 999;
}

.menu ul li:hover > ul { visibility: visible; opacity: 1; transform: translateY(0); }

.menu ul li ul li::after { display: none !important; }

.menu ul li ul a {
    font-size: 11px !important;
    font-weight: 500 !important; 
    padding: 8px 12px !important;
}

.menu ul li ul a:hover {
    background: rgba(0, 84, 166, 0.08);
    color: var(--biru-bkkbn) !important;
    font-weight: 800 !important;
    transform: translateX(5px);
}

/* --- 7. HERO SECTION --- */
.hero {
    position: relative;
    text-align: center;
    margin-top: -40px; 
    padding: clamp(50px, 6vw, 70px) 8% clamp(110px, 14vw, 150px) 8%;
    min-height: 200px; 
    display: flex; 
    flex-direction: column; 
    justify-content: center; 
    align-items: center;
    overflow: hidden;
    background-color: var(--putih);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover;
    background-position: center 40%;
    z-index: 1;
    animation: crossFade 9s infinite ease-in-out; 
}

@keyframes crossFade {
    0%, 100% { background-image: url('https://images.unsplash.com/photo-1464822759023-fed622ff2c3b?auto=format&fit=crop&q=80&w=1920'); }
    33% { background-image: url('https://images.unsplash.com/photo-1488521787991-ed7bbaae773c?auto=format&fit=crop&q=80&w=1920'); }
    66% { background-image: url('https://images.unsplash.com/photo-1542037104857-ffbb0b9155fb?auto=format&fit=crop&q=80&w=1920'); }
}

.hero::after {
    content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 80%; 
    background: var(--fade-ke-putih); pointer-events: none; z-index: 2;
}

.hero-title { 
    position: relative; z-index: 3; font-size: clamp(20px, 3vw, 34px); font-weight: 700; 
    color: var(--biru-muda-kkb);
    text-shadow: 2px 2px 0px rgba(0,0,0,0.8), 3px 3px 10px rgba(0,0,0,0.4);
}

.hero-subtitle { 
    position: relative; z-index: 3; font-family: 'Pacifico', cursive; font-size: clamp(14px, 2.2vw, 22px); 
    color: var(--emas-mewah); margin: 5px 0 15px 0; letter-spacing: 0.5px;
    text-shadow: 2px 2px 0px rgba(0,0,0,0.8), 4px 4px 6px rgba(0,0,0,0.6);
    -webkit-text-stroke: 0.3px rgba(0,0,0,0.5); 
}

.hero-btn {
    position: relative; z-index: 3; display: inline-block; background: var(--biru-bkkbn);
    color: white; padding: 7px 22px; border-radius: 50px; text-decoration: none;
    font-weight: bold; font-size: 11px; box-shadow: 0 5px 15px rgba(0,70,150,0.2); transition: 0.3s;
}

/* --- 8. WIDGET STATS --- */
.widget-stats-container {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin: -50px auto 30px auto; 
    padding: 0 4%;
    position: relative;
    z-index: 10;
    max-width: 1200px;
    width: 100%;
}

.widget-stats-container:hover .widget-card {
    transform: scale(0.9);
    filter: blur(1.5px);
    opacity: 0.7;
}

.widget-card {
    flex: 1;
    padding: 15px 10px; 
    border-radius: 60px 15px 60px 15px; 
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1), inset 0 8px 10px rgba(255, 255, 255, 0.3);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: pointer;
    text-align: center;
}

.widget-card:hover {
    transform: scale(1.1) !important;
    filter: blur(0) !important;
    opacity: 1 !important;
    background: rgba(255, 255, 255, 0.45);
    box-shadow: 0 15px 35px rgba(0, 84, 166, 0.25);
}

.widget-icon {
    width: clamp(35px, 4vw, 45px);
    height: clamp(35px, 4vw, 45px);
    margin: 0 auto 8px;
    background: white;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: clamp(14px, 1.5vw, 18px);
    box-shadow: 0 3px 8px rgba(0,0,0,0.08);
}

.icon-biru { border: 2px solid #0054A6; color: #0054A6; }
.icon-hijau { border: 2px solid #28a745; color: #28a745; }
.icon-emas { border: 2px solid #D4AF37; color: #D4AF37; }
.icon-ungu { border: 2px solid #6f42c1; color: #6f42c1; }

.widget-value {
    font-size: clamp(16px, 2vw, 22px);
    font-weight: 800;
    color: var(--biru-bkkbn);
    margin-bottom: 2px;
}

.widget-label {
    font-size: clamp(8px, 0.9vw, 10px);
    font-weight: 700;
    color: #444;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.2;
}

/* --- 9. INFOGRAFIS SECTION --- */
.infografis-section { padding: 20px 0; background: transparent; }

.infografis-glass-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(15px);
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto 20px auto;
}

.infografis-title {
    font-weight: 800;
    color: #003366;
    text-align: center;
    margin: 0;
    font-size: clamp(18px, 2.5vw, 24px);
}

.infografis-subtitle { text-align: center; color: #666; font-size: 14px; margin-bottom: 20px; }

.iframe-responsive-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 45%; 
    height: 0;
    overflow: hidden;
}

.gas-frame-fluid {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    border: none;
}

/* --- 10. FOOTER --- */
footer, .site-footer {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    text-align: center !important;
    width: 100% !important;
    padding: 25px 0 !important;
    font-size: 12px;
    color: #666;
    background-color: #FFFFFF;
    border-top: 1px solid #eee;
    clear: both;
}

/* --- 11. WHATSAPP STICKY --- */
.whatsapp-sticky {
    position: fixed;
    bottom: 30px; right: 30px;
    background: rgba(37, 211, 102, 0.7);
    backdrop-filter: blur(10px);
    color: white !important;
    padding: 12px 20px;
    border-radius: 50px;
    display: flex; align-items: center; gap: 10px;
    text-decoration: none;
    font-size: 14px; font-weight: 700;
    z-index: 9999;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.whatsapp-sticky:hover {
    background: rgba(37, 211, 102, 0.9);
    transform: translateY(-5px) scale(1.05);
}

/* --- 12. RESPONSIVE MOBILE - FIX HEADER & MENU & IFRAME --- */
@media (max-width: 800px) {
    /* PERBAIKAN HEADER RAMPING HP */
    .site-header {
        height: auto !important; 
        overflow: visible !important; 
        max-width: 100vw !important;
        position: relative !important;
        padding: 5px 0 10px 0 !important;
        border-bottom-left-radius: 25px !important;
        border-bottom-right-radius: 25px !important;
    }

    .navbar {
        height: auto !important;
    }

    .logo-text-block { 
        padding: 5px 20px !important; 
        margin: 0 auto !important;
        flex: none;
    }

    .logo-main-text { 
        font-size: 20px !important; 
        letter-spacing: 1px;
    }

    .logo-sub-text { 
        font-size: 8px !important; 
        margin-top: 0 !important;
    }

    /* Area Kontainer Menu */
    .menu { 
        display: block !important;
        width: 100% !important;
        overflow-x: auto !important;    
        overflow-y: hidden !important;
        -webkit-overflow-scrolling: touch; 
        padding: 5px 0 !important;
        margin: 5px 0 0 0 !important;
        background: transparent !important;
        border: none !important;
        position: relative !important;
        z-index: 9999 !important;
        transform: none !important; 
    }

    .menu::-webkit-scrollbar { display: none; }

    .menu ul { 
        display: flex !important;       
        flex-direction: row !important;
        flex-wrap: nowrap !important;   
        padding: 6px 15px !important;   
        margin: 0 auto !important;
        background: rgba(255, 255, 255, 0.95) !important;
        border-radius: 50px;
        border: 1px solid rgba(0, 0, 0, 0.1);
        list-style: none !important;
        width: max-content !important;  
        min-width: 90% !important;
        justify-content: center !important;
    }

    .menu a { 
        font-size: 11px !important; 
        padding: 5px 12px !important;
        white-space: nowrap !important; 
        font-weight: 700 !important;
    }

    .menu ul li:not(:last-child)::after { display: none !important; }

    .header-top-row { 
        display: block !important; 
        text-align: center; 
        margin-bottom: 0 !important;
    }

    .container-halaman { padding: 0 20px !important; margin: 20px auto !important; }
    .entry-title { font-size: 20px !important; }
    
    #waktu-wita { display: none !important; }

    /* PERBAIKAN DASHBOARD APPSCRIPT HP (FULL KE BAWAH) */
    .iframe-responsive-wrapper {
        padding-bottom: 0 !important; /* Matikan rasio statis */
        height: auto !important; 
        min-height: 1200px !important; /* Berikan tinggi yang cukup agar memanjang kebawah */
        overflow: visible !important;
    }

    .gas-frame-fluid {
        position: relative !important; /* Ubah ke relatif agar mengikuti flow container */
        height: 1200px !important; /* Paksa tinggi iframe */
    }
}

/* --- KHUSUS DASHBOARD FULL WIDTH --- */
.content-area:has(iframe), 
.container-halaman:has(iframe) {
    max-width: 100% !important;
    width: 100% !important;
    padding: 0 !important;
    margin: 20px 0 0 0 !important;
}

.entry-content iframe {
    width: 100% !important;
    min-height: 85vh; 
    border: none !important;
    display: block;
}

/* --- SOSMED FLOATING HP (INDEPENDEN) --- */
.sosmed-floating-hp { display: none; } 

@media (max-width: 800px) {
    .header-social-container { display: none !important; }

    .sosmed-floating-hp {
        display: flex;
        flex-direction: row-reverse;
        align-items: center;
        position: fixed;
        top: 15px; 
        right: 15px;
        z-index: 99999;
        gap: 10px;
    }

    .sosmed-trigger {
        width: 38px;
        height: 38px;
        background: linear-gradient(135deg, #FFD200, #D4AF37);
        color: #0054A6;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 18px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.3);
        cursor: pointer;
        z-index: 2;
        border: 2px solid white;
    }

    .sosmed-list-hp {
        display: flex;
        gap: 8px;
        opacity: 0;
        visibility: hidden;
        transform: translateX(20px);
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }

    .sosmed-floating-hp:hover .sosmed-list-hp,
    .sosmed-floating-hp:active .sosmed-list-hp {
        opacity: 1;
        visibility: visible;
        transform: translateX(0);
    }

    .icon-item {
        width: 32px;
        height: 32px;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        color: white;
        text-decoration: none;
        font-size: 13px;
        box-shadow: 0 3px 8px rgba(0,0,0,0.2);
    }

    .fb { background: #3b5998; }
    .yt { background: #ff0000; }
    .ig { background: #e1306c; }
    .tk { background: #000000; }
}

/* --- PRELOADER 3D WATER BOUNCE (GOLD, CYAN, BLUE) --- */
#preloader-ks {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    
    /* WET GLASS BACKGROUND (Lebih Transparan & Bernuansa Butiran Air) */
    background: rgba(255, 255, 255, 0.4); /* Transparansi dasar lebih tinggi */
    backdrop-filter: blur(15px) saturate(180%);
    -webkit-backdrop-filter: blur(15px) saturate(180%);
    
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999999;
    transition: opacity 0.4s ease; /* Transisi keluar dipercepat */
    overflow: hidden;
}

/* Tekstur Butiran Air di Atas Kaca (Pseudo-element) */
.wet-glass-overlay {
    position: absolute;
    width: 100%; height: 100%;
    background-image: radial-gradient(rgba(0, 0, 0, 0.03) 1px, transparent 1px);
    background-size: 15px 15px; /* Tekstur butiran air tipis */
    opacity: 0.5;
}

/* CONTAINER BOLA & PERCIKAN */
.loader-water-wrapper {
    position: relative;
    width: 200px;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: flex-end; /* Bola memantul dari bawah */
    gap: 15px;
}

/* GAYA BOLA AIR 3D UTAMA */
.water-drop {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    position: relative;
    box-shadow: 
        0 10px 20px rgba(0,0,0,0.15),
        inset -5px -5px 10px rgba(0,0,0,0.1);
    animation: waterBounce 0.8s infinite ease-in-out; /* Bounce cepat */
    transform-origin: bottom center;
}

/* Warna Emas BKKBN 3D (Reflektif Air) */
.drop-gold {
    background: radial-gradient(circle at 35% 35%, rgba(255, 210, 0, 0.9) 0%, rgba(212, 175, 55, 1) 50%, rgba(184, 134, 11, 1) 100%);
    animation-delay: 0s;
}

/* Warna Biru Muda KKB 3D (Bening Air) */
.drop-cyan {
    background: radial-gradient(circle at 35% 35%, rgba(0, 230, 255, 0.9) 0%, rgba(0, 174, 239, 1) 50%, rgba(0, 140, 200, 1) 100%);
    animation-delay: 0.15s; /* Bounce bergantian cepat */
}

/* Warna Biru Tua BKKBN 3D (Dalam) */
.drop-blue {
    background: radial-gradient(circle at 35% 35%, rgba(0, 110, 220, 0.9) 0%, rgba(0, 84, 166, 1) 50%, rgba(0, 60, 120, 1) 100%);
    animation-delay: 0.3s;
}

/* EFEK PERCIKAN AIR (SPLATTER) */
.splatter-container {
    position: absolute;
    bottom: 0; left: 50%;
    width: 150px; height: 30px;
    transform: translateX(-50%);
    pointer-events: none;
    display: flex;
    justify-content: center;
    gap: 5px;
}

.splat {
    width: 8px; height: 8px;
    border-radius: 50%;
    opacity: 0;
    transform: scale(0);
    animation: waterSplat 0.8s infinite ease-out;
}

/* Warna percikan campuran */
.splat:nth-child(1), .splat:nth-child(4) { background: rgba(212, 175, 55, 0.6); animation-delay: 0.05s; } /* Tempias Gold */
.splat:nth-child(2), .splat:nth-child(5) { background: rgba(0, 174, 239, 0.6); animation-delay: 0.2s; }  /* Tempias Cyan */
.splat:nth-child(3), .splat:nth-child(6) { background: rgba(0, 84, 166, 0.6); animation-delay: 0.35s; }  /* Tempias Blue */

/* Bayangan Permukaan */
.surface-shadow {
    position: absolute;
    bottom: -15px; left: 50%;
    width: 120px; height: 15px;
    background: rgba(0, 84, 166, 0.1);
    border-radius: 50%;
    filter: blur(6px);
    transform: translateX(-50%);
    animation: shadowPulse 0.8s infinite ease-in-out;
}

/* KEYFRAMES ANIMASI */

/* Bola Memantul Realistis (Sedikit gepeng saat menyentuh) */
@keyframes waterBounce {
    0%, 100% { transform: translateY(0) scaleY(1); }
    30% { transform: translateY(-35px) scaleY(1.05); } /* Puncak pantulan */
    50% { transform: translateY(-38px) scaleY(1.03); } /* Sedikit melayang */
    70% { transform: translateY(0) scaleY(0.9); } /* Gepeng saat mendarat */
}

/* Percikan Air yang 'Tempias' */
@keyframes waterSplat {
    0% { transform: translateY(0) scale(0); opacity: 0; }
    20% { transform: translateY(-5px) scale(1); opacity: 0.8; } /* Muncul cepat */
    100% { transform: translateY(-25px) scale(0.2); opacity: 0; } /* Hilang mengembang */
}

/* Bayangan Memudar saat Bola Naik */
@keyframes shadowPulse {
    0%, 100% { transform: translateX(-50%) scaleX(1); opacity: 0.3; }
    30%, 50% { transform: translateX(-50%) scaleX(0.7); opacity: 0.1; }
    70% { transform: translateX(-50%) scaleX(1.1); opacity: 0.4; }
}

/* Responsif Mobile */
@media (max-width: 800px) {
    .loader-water-wrapper { transform: scale(0.8); gap: 10px; }
    .water-drop { width: 28px; height: 28px; }
    .splatter-container { width: 120px; }
}

/* --- SIDEBAR GLASS VISTA STYLE --- */
.sidebar-vista {
    flex: 1;
    position: sticky;
    top: 100px; /* Jarak dari header saat scroll */
    min-width: 300px;
}

.sidebar-widget {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(15px) saturate(180%);
    -webkit-backdrop-filter: blur(15px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 20px;
    padding: 20px;
    margin-bottom: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: slideInSidebar 0.8s ease-out forwards;
    overflow: hidden;
}

.sidebar-widget:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.35);
    border-color: var(--emas-mewah);
    box-shadow: 0 15px 35px rgba(0, 84, 166, 0.15);
}

.widget-title {
    font-size: 16px;
    font-weight: 800;
    color: var(--biru-bkkbn);
    margin: 0 0 10px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.widget-line {
    width: 40px;
    height: 3px;
    background: var(--emas-mewah);
    margin-bottom: 15px;
    border-radius: 10px;
}

.widget-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.widget-list li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.widget-list li a {
    text-decoration: none;
    color: #444;
    font-size: 13px;
    font-weight: 600;
    transition: 0.3s;
}

.widget-list li a:hover {
    color: var(--biru-muda-kkb);
    padding-left: 5px;
}

/* Animasi Muncul Sidebar */
@keyframes slideInSidebar {
    from { opacity: 0; transform: translateX(30px); }
    to { opacity: 1; transform: translateX(0); }
}

/* Responsive Mobile Sidebar */
@media (max-width: 900px) {
    .sidebar-layout {
        flex-direction: column !important;
    }
    .sidebar-vista {
        width: 100% !important;
        position: static !important;
    }
}

