        /* --- 1. SETUP VARIABLES & RESET --- */
        :root {
            --primary-green: #006b3f; /* Hijau Masjid */
            --accent-gold: #f1c40f;   /* Emas Kubah */
            --dark-text: #1f2937;
            --light-bg: #f9fafb;
            --white: #ffffff;
            --transition: all 0.4s ease; /* Transisi sedikit diperhalus */
            scroll-padding-top: 85px;
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }
        
        body {
            font-family: 'Inter', sans-serif;
            background-color: var(--light-bg);
            color: var(--dark-text);
            line-height: 1.6;
            scroll-behavior: smooth;
            
        }

        a { text-decoration: none; color: inherit; }
        ul { list-style: none; }
        img { max-width: 100%; display: block; }

        /* --- 2. NAVBAR (LOGO BESAR & BERSIH) --- */
        .navbar {
            position: fixed;
            top: 0; left: 0; right: 0;
            display: flex; justify-content: space-between; align-items: center;
            padding: 0.8rem 5%; /* Padding sedikit dikurangi agar logo besar muat */
            z-index: 1000;
            transition: var(--transition);
            background: transparent; 
        }

        .navbar.scrolled {
            background: rgba(255, 255, 255, 0.98); /* Sedikit lebih solid */
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
            padding: 0.5rem 5%;
        }

        .navbar.scrolled .btn-login {
        color: var(--primary-green);
        border-color: var(--primary-green);
            }

        .navbar.scrolled .btn-login:hover {
            background: #e6f4ea; /* Hijau muda pudar */
            color: var(--primary-green);
        }

        .logo-container {
            display: flex; align-items: center;
            /* Tulisan dihapus, container hanya untuk gambar */
        }

        .logo-img { 
            height: 85px; /* UKURAN LOGO DIPERBESAR */
            width: auto; 
            transition: var(--transition);
            filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3)); /* Sedikit bayangan agar menonjol di background terang */
        }
        
        /* Logo mengecil sedikit saat discroll agar rapi */
        .navbar.scrolled .logo-img {
            height: 65px;
            filter: none;
        }
        
        .nav-links { display: flex; gap: 2rem; align-items: center; }
        .nav-links a { font-weight: 600; font-size: 0.95rem; transition: color 0.3s; letter-spacing: 0.5px; }
        .nav-links a:hover { color: var(--accent-gold) !important; }

        /* Navbar Text logic for transparent bg */
        .navbar:not(.scrolled) .nav-links a { color: var(--white); text-shadow: 0 2px 4px rgba(0,0,0,0.5); }
        .navbar.scrolled .nav-links a { color: var(--dark-text); text-shadow: none; }

        .btn-donate-nav {
            padding: 0.6rem 1.5rem;
            border: 2px solid var(--accent-gold);
            background: rgba(241, 196, 15, 0.1);
            border-radius: 50px;
            font-weight: 700;
            color: var(--accent-gold) !important;
            transition: var(--transition);
            backdrop-filter: blur(5px);
        }
        
        .btn-donate-nav:hover {
            background: var(--accent-gold);
            color: var(--primary-green) !important;
            text-shadow: none !important;
            box-shadow: 0 0 15px rgba(241, 196, 15, 0.5);
        }

        /* --- 3. HERO SECTION (FULL SLIDER REVAMP) --- */
        .hero {
            height: 100vh;
            position: relative;
            /* Background Image dengan Overlay Gelap */
            /* Pastikan path gambar sudah benar sesuai folder Anda */
            background: linear-gradient(rgba(0, 20, 10, 0.6), rgba(0, 50, 20, 0.7)),
                        url('../../images/bg.jpg');
            background-size: cover;
            background-position: center;
            background-attachment: fixed; /* Efek Parallax */
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            color: var(--white);
            padding: 0 20px;
            margin-bottom: -70px; /* Overlap dengan widget jadwal sholat di bawahnya */
            overflow: hidden; /* Mencegah scrollbar muncul saat animasi masuk */
        }

        .hero-slider-container {
            width: 100%;
            max-width: 950px; /* Lebar maksimal area konten */
            position: relative;
            min-height: 350px; /* Menjaga tinggi agar layout tidak lompat saat ganti slide */
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 0 60px; /* Memberi ruang agar teks tidak menabrak panah */
        }

        /* --- SLIDE STYLES --- */
        .hero-slide {
            display: none; /* Default sembunyi */
            width: 100%;
            /* Animasi geser dari kiri ke kanan */
            animation: slideRight 2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .hero-slide.active {
            display: block; /* Slide aktif muncul */
        }

        /* Keyframes Animasi */
        @keyframes slideRight {
            from {
                opacity: 0;
                transform: translateX(-50px); /* Mulai dari agak kiri */
            }
            to {
                opacity: 1;
                transform: translateX(0); /* Ke posisi normal */
            }
        }

        /* --- TYPOGRAPHY HERO --- */
        .hero h1 {
            font-family: 'Playfair Display', serif;
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            text-shadow: 0 4px 15px rgba(0,0,0,0.5);
        }

        .hero p {
            font-size: 1.25rem;
            margin-bottom: 2.5rem;
            opacity: 0.95;
            font-weight: 300;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.8;
        }

        .hero-btn {
            display: inline-block;
            background: var(--primary-green);
            color: white;
            padding: 1rem 3rem;
            border-radius: 50px;
            font-weight: 700;
            letter-spacing: 1px;
            box-shadow: 0 10px 25px rgba(0, 107, 63, 0.4);
            transition: var(--transition);
            border: 2px solid transparent;
        }

        .hero-btn:hover {
            transform: translateY(-5px);
            background: #005a35;
            box-shadow: 0 15px 30px rgba(0, 107, 63, 0.6);
        }

        /* --- NAVIGATION ARROWS (PANAH KIRI KANAN) --- */
        .prev, .next {
            cursor: pointer;
            position: absolute;
            top: 50%;
            transform: translateY(-50%); /* Posisi vertikal tengah presisi */
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: rgba(255, 255, 255, 0.6);
            font-weight: bold;
            font-size: 24px;
            transition: 0.3s ease;
            border-radius: 50%;
            user-select: none;
            z-index: 20;
            background-color: rgba(255, 255, 255, 0.1); /* Transparan */
            backdrop-filter: blur(4px); /* Efek blur kaca di belakang panah */
        }

        .prev { left: 0; }
        .next { right: 0; }

        .prev:hover, .next:hover {
            background-color: var(--accent-gold);
            color: var(--primary-green);
            box-shadow: 0 0 20px rgba(241, 196, 15, 0.5);
            transform: translateY(-50%) scale(1.1); /* Sedikit membesar saat hover */
        }

        /* --- NAVIGATION DOTS (TITIK BAWAH) --- */
        .slider-dots {
            position: absolute;
            bottom: 50px; /* Jarak dari bawah */
            display: flex;
            gap: 12px;
            z-index: 20;
        }

        .dot {
            cursor: pointer;
            height: 12px;
            width: 12px;
            background-color: rgba(255, 255, 255, 0.3);
            border-radius: 50%;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .dot.active, .dot:hover {
            background-color: var(--accent-gold);
            transform: scale(1.3);
            box-shadow: 0 0 10px rgba(241, 196, 15, 0.5);
        }

        /* --- RESPONSIVE MOBILE --- */
        @media (max-width: 768px) {
            .hero h1 { font-size: 2.5rem; }
            .hero p { font-size: 1rem; line-height: 1.5; }
            
            .hero-slider-container {
                padding: 0 10px; /* Padding dikurangi di HP */
            }

            /* Sembunyikan panah di HP agar layar bersih */
            .prev, .next { display: none; }
            
            .slider-dots { bottom: 30px; }
        }

        /* --- 4. PRAYER TIMES WIDGET --- */
        .prayer-section {
            position: relative;
            z-index: 10;
            max-width: 1000px;
            margin: 0 auto 5rem auto;
            padding: 0 20px;
        }

        .prayer-card {
            background: var(--white);
            border-radius: 20px;
            padding: 2rem 3rem;
            box-shadow: 0 20px 40px rgba(0,0,0,0.08);
            display: grid;
            grid-template-columns: 1fr auto;
            align-items: center;
            gap: 3rem;
            border-bottom: 5px solid var(--primary-green);
        }

        .location-info h3 { color: var(--primary-green); font-size: 1.3rem; font-weight: 700; }
        .location-info span { font-size: 1rem; color: #555; font-weight: 500; }
        .location-badge { 
            display: inline-block; background: #e6f0eb; color: var(--primary-green); 
            padding: 4px 12px; border-radius: 20px; font-size: 0.8rem; margin-top: 10px; font-weight: 600;
        }

        .times-grid {
            display: flex; gap: 1.5rem; flex-wrap: wrap; justify-content: center;
        }

        .time-item {
            text-align: center;
            min-width: 80px;
            padding: 0.8rem;
            border-radius: 12px;
            background: #f4f4f4;
            transition: var(--transition);
        }
        
        .time-item:hover { transform: translateY(-3px); }

        .time-item.active { background: var(--primary-green); color: white; box-shadow: 0 5px 15px rgba(0,107,63,0.3); }
        .time-item .name { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; display: block; margin-bottom: 5px; opacity: 0.8; }
        .time-item .time { font-weight: 700; font-size: 1.2rem; }

        /* --- 5. TABS & CONTENT --- */
        .section-container { 
            max-width: 1100px; 
            margin: 0 auto 6rem auto; 
            padding: 0 20px; 
        }

        .section-title { 
            text-align: center; 
            margin-bottom: 3.5rem; 
            
            /* PENTING: Paksa jadi Block agar menumpuk ke bawah, 
            matikan efek flexbox jika ada sisa kode lama */
            display: block !important; 
        }

        .section-title h2 { 
            font-family: 'Playfair Display', serif; 
            font-size: 2.8rem; 
            color: var(--dark-text); /* Pastikan variabel ini ada, atau ganti #333 */
            margin-bottom: 0.5rem; 
        }

        .section-title .separator { 
            width: 80px; 
            height: 4px; 
            background: var(--accent-gold); /* Pastikan variabel ini ada, atau ganti #ffc107 */
            margin: 1rem auto; /* Auto kiri-kanan bikin dia di tengah */
            border-radius: 2px; 
        }

        .section-title p {
            color: #666;
            max-width: 600px;
            margin: 0 auto; 
            line-height: 1.6;
        } /* <-- Tadi Anda lupa menutup kurung ini */
        .tabs-nav {
            display: flex; justify-content: center; gap: 2rem; margin-bottom: 3rem;
            border-bottom: 2px solid #eee;
        }
        
        .tab-btn {
            background: transparent; border: none; padding: 1rem 2rem;
            font-size: 1.1rem; font-weight: 600; cursor: pointer;
            border-bottom: 4px solid transparent; color: #999;
            transition: var(--transition);
            margin-bottom: -2px;
        }

        .tab-btn:hover { color: var(--primary-green); }
        .tab-btn.active { color: var(--primary-green); border-bottom-color: var(--primary-green); }

        .tab-content { display: none; animation: fadeIn 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
        .tab-content.active { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }

        .tab-img { border-radius: 20px; overflow: hidden; box-shadow: 0 15px 35px rgba(0,0,0,0.15); height: 400px; position: relative; }
        .tab-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s; }
        .tab-img:hover img { transform: scale(1.05); }
        
        .tab-text h3 { font-size: 2rem; margin-bottom: 1.5rem; color: var(--dark-text); font-family: 'Playfair Display', serif; }
        .tab-text p { font-size: 1.05rem; color: #555; margin-bottom: 1.5rem; }
        .schedule-list li { margin-bottom: 15px; padding-left: 30px; position: relative; font-weight: 500; color: #444; }
        .schedule-list li::before { 
            content: ""; position: absolute; left: 0; top: 8px; 
            width: 12px; height: 12px; background: var(--accent-gold); border-radius: 50%; 
        }

        /* --- 6. DONATION SECTION --- */
        .donation-section {
            background: var(--primary-green);
            color: var(--white);
            padding: 6rem 20px;
            position: relative;
            overflow: hidden;
            /* Pattern Overlay yang lebih halus */
            background-image: 
                radial-gradient(circle at 20% 50%, rgba(255,255,255,0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(241, 196, 15, 0.1) 0%, transparent 50%);
        }

        .donation-container {
            max-width: 1000px; margin: 0 auto;
            display: grid; grid-template-columns: 1fr 1.5fr; gap: 5rem; align-items: center;
            position: relative; z-index: 2;
        }

        .qris-card {
            background: white; padding: 2rem; border-radius: 25px; text-align: center;
            box-shadow: 0 20px 40px rgba(0,0,0,0.2);

        }

        .donation-info h2 { font-family: 'Playfair Display', serif; font-size: 3rem; margin-bottom: 1rem; color: var(--accent-gold); line-height: 1.2; }
        .donation-info p { font-size: 1.1rem; opacity: 0.9; margin-bottom: 2rem; }

        .bank-box {
            background: rgba(255,255,255,0.1);
            backdrop-filter: blur(10px);
            padding: 2rem; border-radius: 15px; margin: 2rem 0;
            border-left: 5px solid var(--accent-gold);
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        .bank-number { font-size: 2.2rem; font-weight: 700; font-family: monospace; letter-spacing: 2px; display: block; margin: 10px 0; }
        .copy-btn {
            background: var(--accent-gold); color: var(--primary-green); border: none;
            padding: 8px 20px; border-radius: 50px; font-weight: 800; cursor: pointer; 
            font-size: 0.9rem; transition: var(--transition);
        }
        .copy-btn:hover { background: white; box-shadow: 0 5px 15px rgba(241, 196, 15, 0.4); }

        .wa-link {
            display: inline-flex; align-items: center; gap: 10px;
            color: white; text-decoration: none; font-weight: 600;
            border-bottom: 2px solid rgba(255,255,255,0.3); padding-bottom: 5px; transition: var(--transition);
        }
        .wa-link:hover { border-bottom-color: var(--accent-gold); color: var(--accent-gold); }

        /* --- 7. FOOTER --- */
        footer { background: #111; color: #888; padding: 5rem 5% 2rem 5%; font-size: 0.95rem; }
        .footer-grid {
            display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 3rem; margin-bottom: 4rem;
        }
        .footer-logo { font-family: 'Playfair Display', serif; font-size: 1.8rem; color: white; margin-bottom: 1.5rem; display: block; font-weight: 700;}
        .footer-links h4 { color: white; margin-bottom: 1.5rem; font-size: 1.1rem; font-weight: 700; }
        .footer-links a { display: block; margin-bottom: 0.8rem; transition: 0.3s; }
        .footer-links a:hover { color: var(--accent-gold); padding-left: 5px; }
        .copyright { text-align: center; border-top: 1px solid #222; padding-top: 2rem; font-size: 0.9rem; }

        /* Mobile Responsive */
        @media (max-width: 768px) {
            .navbar { padding: 0.8rem 5%; }
            .logo-img { height: 60px; } /* Logo mobile sedikit lebih kecil tapi tetap dominan */
            .nav-links, .btn-donate-nav { display: none; } /* Hide menu on mobile for now */
            
            .hero h1 { font-size: 2.8rem; }
            .prayer-card { grid-template-columns: 1fr; text-align: center; padding: 2rem; gap: 2rem; }
            .prayer-card { border-bottom: none; border-top: 5px solid var(--primary-green); }
            .location-info { border-right: none; border-bottom: 1px solid #eee; padding-bottom: 1.5rem; }
            .times-grid { gap: 1rem; justify-content: space-between; }
            .time-item { min-width: auto; flex: 1; }

            .section-title h2 { font-size: 2.2rem; }
            .tabs-nav { gap: 0.5rem; }
            .tab-btn { padding: 0.8rem 1rem; font-size: 0.95rem; }
            .tab-content.active, .donation-container { grid-template-columns: 1fr; gap: 3rem; }
            .tab-img { height: 250px; order: -1; /* Gambar di atas pada mobile */ }
            
            .donation-section { padding: 4rem 20px; }
            .qris-card { transform: rotate(0); margin-bottom: 2rem; }
            .donation-info h2 { font-size: 2.2rem; }
            .bank-number { font-size: 1.6rem; }
        }

        @keyframes fadeIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
    
        /* --- HALAMAN LOGIN & REGISTER --- */
        .auth-page {
            min-height: 80vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding-top: 100px; /* Biar tidak ketutupan navbar */
            background: #f4f4f4;
        }

        .auth-card {
            background: white;
            padding: 2.5rem;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            width: 100%;
            max-width: 400px;
            text-align: center;
        }

        .auth-form input {
            width: 100%;
            padding: 12px 15px;
            margin-bottom: 15px;
            border: 1px solid #ddd;
            border-radius: 8px;
            font-size: 1rem;
            outline: none;
            transition: 0.3s;
        }

        .auth-form input:focus {
            border-color: var(--primary-green);
            box-shadow: 0 0 5px rgba(0, 107, 63, 0.2);
        }

        .btn-auth {
            width: 100%;
            background: var(--primary-green);
            color: white;
            padding: 12px;
            border: none;
            border-radius: 8px;
            font-size: 1rem;
            font-weight: bold;
            cursor: pointer;
            transition: 0.3s;
        }

        .btn-auth:hover {
            background: #005a35;
        }

        .auth-footer {
            margin-top: 15px;
            font-size: 0.9rem;
            color: #666;
        }

        .auth-footer a {
            color: var(--primary-green);
            font-weight: bold;
            text-decoration: none;
        }

    /* --- GROUP TOMBOL KANAN --- */
    .auth-buttons {
        display: flex;
        align-items: center;
        gap: 15px; /* Jarak antara tombol Login dan Daftar */
    }

    /* Gaya Umum Tombol */
    .btn-login, .btn-register {
        text-decoration: none;
        font-size: 0.9rem;
        font-weight: 600;
        padding: 10px 20px;
        border-radius: 50px; /* Membulat modern */
        transition: 0.3s;
    }

    .btn-login {
        color: #ffffff; 
        border: 1px solid #ffffff;
        background: transparent;
    }

    .btn-login:hover {
        background: #ffffff; 
        color: var(--primary-green); /* Saat dihover jadi tulisan hijau background putih */
    }

    /* 2. Gaya Tombol Daftar (Solid / Penuh) */
    .btn-register {
        color: white;
        background: var(--primary-green);
        border: 1px solid var(--primary-green);
        box-shadow: 0 4px 10px rgba(0, 107, 63, 0.2); /* Bayangan halus */
    }
    .btn-register:hover {
        background: #005a35; /* Hijau lebih tua saat hover */
        transform: translateY(-2px); /* Efek naik dikit */
    }

    /* RESPONSIVE: Hilangkan tombol ini di HP (Nanti masuk menu hamburger) */
    @media (max-width: 768px) {
        .auth-buttons {
            display: none; 
        }
    }

/* --- DASHBOARD MEMBER (MOBILE FRIENDLY) --- */

    /* Container Utama */
    .dashboard-wrapper {
        max-width: 600px; /* Batasi lebar agar fokus seperti aplikasi HP */
        margin: 0 auto;
        padding: 20px;
        padding-bottom: 80px; /* Ruang lebih di bawah untuk scroll */
    }

    /* --- UPDATE CSS MEMBER --- */
    .profile-header {
        background: linear-gradient(135deg, var(--primary-green) 0%, #004d2e 100%);
        color: white;
        border-radius: 20px;
        padding: 25px;
        display: flex;
        align-items: center;
        gap: 20px;
        box-shadow: 0 10px 25px rgba(0, 107, 63, 0.3);
        margin-bottom: 30px;
        position: relative;
        overflow: hidden;
        
        /* TAMBAHAN BARU: Agar terasa bisa diklik */
        cursor: pointer;
        transition: transform 0.2s, box-shadow 0.2s;
    }

    .profile-header:active {
        transform: scale(0.97); /* Efek membal saat ditekan */
        box-shadow: 0 5px 15px rgba(0, 107, 63, 0.2);
    }

    /* Background hiasan (tetap sama) */
    .profile-header::after {
        content: ""; position: absolute; top: -50%; right: -20%;
        width: 150px; height: 150px; background: rgba(255,255,255,0.1);
        border-radius: 50%; pointer-events: none;
    }

    /* Style Badge Edit Baru */
    .edit-badge {
        display: inline-flex; align-items: center; gap: 5px;
        background: rgba(255,255,255,0.2); 
        padding: 4px 12px; border-radius: 20px; 
        font-size: 0.75rem; color: white;
        margin-top: 8px; border: 1px solid rgba(255,255,255,0.3);
    }

    .user-avatar {
        width: 60px; height: 60px;
        background: white;
        color: var(--primary-green);
        border-radius: 50%;
        font-size: 28px;
        font-weight: bold;
        display: flex; justify-content: center; align-items: center;
        box-shadow: 0 4px 10px rgba(0,0,0,0.2);
        flex-shrink: 0;
    }

    .user-details h2 { margin: 0; font-size: 1.2rem; color: white; }
    .user-details p { margin: 5px 0 0; font-size: 0.9rem; opacity: 0.9; color: #e8f5e9; }

    /* --- MENU GRID SYSTEM (INTI UI) --- */
    .section-title {
        font-size: 1.1rem;
        font-weight: 700;
        margin-bottom: 15px;
        color: #333;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .menu-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr); /* Default HP: 2 Kolom */
        gap: 15px;
        margin-bottom: 30px;
    }

    .menu-card {
        background: white;
        padding: 20px;
        border-radius: 16px;
        text-align: center;
        text-decoration: none;
        color: #333;
        box-shadow: 0 4px 15px rgba(0,0,0,0.03);
        border: 1px solid #f0f0f0;
        transition: transform 0.2s, box-shadow 0.2s;
        cursor: pointer;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        min-height: 120px;
    }

    .menu-card:active {
        transform: scale(0.98); /* Efek pencet */
    }

    .menu-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0,0,0,0.08);
        border-color: var(--primary-green);
    }

    .menu-icon {
        font-size: 2rem;
        margin-bottom: 10px;
        display: block;
    }

    .menu-text {
        font-size: 0.9rem;
        font-weight: 600;
        line-height: 1.3;
    }

    .menu-desc {
        font-size: 0.75rem;
        color: #888;
        margin-top: 5px;
    }

    /* Banner Promo / Info */
    .info-banner {
        background: #fff8e1;
        border-left: 5px solid #ffc107;
        padding: 15px;
        border-radius: 8px;
        font-size: 0.9rem;
        color: #856404;
        margin-bottom: 25px;
        line-height: 1.5;
    }

    /* Logout Button Style */
    .logout-area {
        text-align: center;
        margin-top: 20px;
    }
    .btn-logout-mobile {
        background: white;
        color: #d32f2f;
        border: 1px solid #ffcdd2;
        padding: 12px 30px;
        border-radius: 50px;
        font-weight: 600;
        width: 100%;
        display: block;
        max-width: 200px;
        margin: 0 auto;
    }

    /* Responsive Tablet/Desktop: Jadi 3-4 kolom */
    @media (min-width: 768px) {
        .menu-grid {
            grid-template-columns: repeat(3, 1fr);
        }
        .dashboard-wrapper {
            max-width: 800px;
        }
    }

    /* --- HAMBURGER MENU & MOBILE NAV --- */

/* Default: Sembunyikan elemen mobile di Desktop */

.hamburger, .mobile-menu-overlay {
    display: none;
} 

/* RESPONSIVE (Tampilan HP) */
@media (max-width: 768px) {
    
    /* 1. Sembunyikan Menu Desktop */
    .desktop-only {
        display: none !important; /* Paksa hilang */
    }

    /* 2. Tampilkan Tombol Burger */
    .hamburger {
        display: flex;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
        padding: 5px;
        position: relative;
        z-index: 3000;
        pointer-events: auto;
    }
    .hamburger span {
        width: 25px; height: 3px;
        background-color: #333; /* Warna garis burger */
        border-radius: 2px;
        transition: 0.3s;
    }
    
    /* Agar burger terlihat putih saat di atas background gelap */
    /* (Opsional, tergantung background header kamu) */
    .navbar:not(.scrolled) .hamburger span {
        background-color: white; /* Ganti #333 kalau background header putih */
    }
    .navbar.scrolled .hamburger span {
        background-color: var(--primary-green);
    }

    /* 3. Desain Layar Menu Mobile (Overlay) */
    .mobile-menu-overlay {
        display: block; /* Struktur ada, tapi digeser keluar layar */
        position: fixed;
        top: 0; right: -100%; /* Sembunyi di kanan layar */
        width: 80%; /* Lebar menu 80% layar */
        max-width: 300px;
        height: 100vh;
        background: white;
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
        z-index: 2000;
        transition: 0.3s ease-in-out;
        padding: 20px;
        display: flex; flex-direction: column;
    }

    /* Class untuk memunculkan menu */
    .mobile-menu-overlay.active {
        right: 0; /* Geser masuk ke layar */
    }

    /* Header Menu Mobile */
    .mobile-menu-header {
        display: flex; justify-content: space-between; align-items: center;
        margin-bottom: 30px; border-bottom: 1px solid #eee; padding-bottom: 15px;
    }
    .close-btn { 
        font-size: 2.5rem;      /* Ukuran font lebih besar */
        cursor: pointer; 
        color: #888; 
        padding: 10px 20px;     /* BANTALAN: Area klik jadi luas */
        line-height: 0.8;       /* Agar posisi vertikal pas */
        transition: 0.3s;
        font-weight: bold;
    }

    /* Link Mobile */
    .mobile-links { display: flex; flex-direction: column; gap: 20px; margin-bottom: 30px; }
    .m-link {
        text-decoration: none; color: #333; font-weight: 500; font-size: 1.1rem;
        border-bottom: 1px solid #f9f9f9; padding-bottom: 10px;
    }
    .m-link:active { color: var(--primary-green); }

    /* Tombol Auth Mobile */
    .mobile-auth { display: flex; flex-direction: column; gap: 15px; margin-top: auto; /* Dorong ke bawah */ }
    
    .btn-login-mobile {
        text-align: center; text-decoration: none; padding: 12px;
        border: 1px solid var(--primary-green); border-radius: 50px;
        color: var(--primary-green); font-weight: bold;
    }
    .btn-register-mobile {
        text-align: center; text-decoration: none; padding: 12px;
        background: var(--primary-green); border-radius: 50px;
        color: white; font-weight: bold;
    }
}

/* --- TAMBAHAN FIX BURGER --- */
.hamburger {
    transition: all 0.3s ease; /* Biar animasi hilang/munculnya halus */
}

/* Class ini akan ditambahkan lewat JS saat menu buka */
.hamburger.hidden-burger {
    opacity: 0;
    transform: rotate(90deg); /* Efek putar sedikit saat hilang */
    pointer-events: none;     /* Pastikan gak bisa diklik saat hilang */
}

/* --- HYBRID NAVBAR CONTROLS --- */

/* 1. Kondisi DESKTOP (Layar Besar) */
/* Sembunyikan kontrol mobile (Ikon User & Wrapper-nya) */
.mobile-nav-controls {
    display: none;
}

/* 2. Kondisi MOBILE (Layar Kecil) */
@media (max-width: 768px) {
    
    /* Sembunyikan Menu & Tombol Desktop */
    .desktop-hide {
        display: none !important;
    }

    /* Tampilkan Kontrol Mobile (User + Burger) */
    .mobile-nav-controls {
        display: flex;
        align-items: center;
        gap: 15px; /* Jarak antara Ikon Orang dan Burger */
    }

    /* Reset Margin Burger (Karena sekarang di dalam flex) */
    .hamburger {
        margin-left: 0;
    }

    /* Style Ikon User Mobile */
    .mobile-user-icon {
        display: flex;
        color: white; /* Default Putih (saat transparan) */
        transition: 0.3s;
    }

    /* Ubah warna ikon jadi hijau saat navbar discroll (background putih) */
    .navbar.scrolled .mobile-user-icon {
        color: var(--primary-green);
    }
}

/* --- SECTION TENTANG (PREVIEW) --- */

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr; /* Kolom Teks agak lebih lebar dari Gambar */
    gap: 50px;
    align-items: center; /* Vertikal center */
}

.about-text-content p {
    margin-bottom: 15px;
    color: #555;
    text-align: justify; /* Rata kanan kiri biar rapi seperti buku */
    line-height: 1.7;
}

/* Style Frame Gambar agar cantik */
.image-frame {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15); /* Bayangan lembut */
    border: 1px solid white;
}


.image-frame:hover img {
    transform: scale(1.05); transition: transform 1s;/* Efek zoom dikit saat hover */
}

/* Tombol Baca Selengkapnya */
.btn-read-more {
    display: inline-block;
    padding: 12px 25px;
    background-color: var(--primary-green);
    color: white;
    border-radius: 50px;
    font-weight: 600;
    transition: 0.3s;
    box-shadow: 0 4px 15px rgba(0, 107, 63, 0.2);
}

.btn-read-more:hover {
    background-color: #005a35;
    transform: translateX(5px); /* Geser kanan dikit saat hover */
}

/* RESPONSIVE HP */
@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr; /* Jadi 1 kolom */
        gap: 30px;
    }

    /* Di HP, Gambar taruh di ATAS teks */
    .about-image-content {
        order: -1; 
    }
    
    .about-text-content .section-title {
        text-align: center !important; /* Judul balik ke tengah di HP */
    }
    
    .about-text-content .separator {
        margin: 0 auto 20px auto !important; /* Garis balik ke tengah di HP */
    }
}

/* --- USER AVATAR & PROFILE --- */

/* Gaya untuk Foto/Inisial User */
.user-avatar-circle {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--accent-gold); /* List emas biar elegan */
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: white;
    background-color: var(--primary-green);
    text-transform: uppercase;
    font-size: 1.1rem;
    cursor: pointer;
    transition: 0.3s;
}

.user-avatar-circle:hover {
    transform: scale(1.1);
    box-shadow: 0 0 10px rgba(241, 196, 15, 0.5);
}

/* Penyesuaian khusus untuk Mobile Header (biar pas di sebelah burger) */
.mobile-user-icon .user-avatar-circle {
    width: 32px;
    height: 32px;
    border: 1px solid white; /* Di header mobile listnya putih */
}

.navbar.scrolled .mobile-user-icon .user-avatar-circle {
    border: 1px solid var(--primary-green);
}