
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

:root {
    /* -- LIGHT MODE -- */
    --bg-primary: #f8f9fa;
    --bg-secondary: #ffffff;
    --bg-hero: linear-gradient(135deg, #4fc3f7 0%, #0288d1 50%, #01579b 100%);
    --text-primary: #1e3a5f;
    --text-secondary: #555;
    --accent-primary: #0288d1;
    --border-color: #eef2f7;
    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.05);
    --shadow-medium: 0 15px 35px rgba(30, 136, 229, 0.12);
    --theme-transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
}

body.dark-mode {
    /* -- DARK MODE -- */
    --bg-primary: #121212;
    --bg-secondary: #1e1e1e;
    --bg-hero: linear-gradient(135deg, #2c3e50 0%, #1a2937 50%, #0c141c 100%);
    --text-primary: #f5f5f5;
    --text-secondary: #a0a0a0;
    --accent-primary: #4fc3f7;
    --border-color: #333;
    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.2);
    --shadow-medium: 0 15px 35px rgba(79, 195, 247, 0.2);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    overflow-x: hidden;
    line-height: 1.6;
    transition: var(--theme-transition);
}
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
h1, h2, h3 { color: var(--text-primary); transition: var(--theme-transition); }
p { color: var(--text-secondary); transition: var(--theme-transition); }

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

.logo-group {
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-group img {
    height: 35px;
    width: auto;
    object-fit: contain;
}


/* 2. HEADER & NAVIGASI */
header {
    background-color: transparent;
    position: absolute;
    top: 0; left: 0; right: 0; z-index: 1000;
    padding: 20px 0;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}
/* Style untuk header saat sticky */
header.sticky {
    position: fixed;
    background-color: var(--bg-secondary);
    box-shadow: var(--shadow-soft);
}
header.sticky .logo i,
header.sticky .logo span {
    color: var(--primary);
}
header.sticky .nav-links a {
    color: var(--text-primary);
}
header.sticky .hamburger-menu .bar {
    background-color: var(--text-primary);
}

/* ======== NAVBAR UTAMA ======== */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 15px 5%;
    position: relative;
    z-index: 100;
}

/* ======== LOGO DAN TEKS ======== */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo i {
    font-size: 1.8rem;
    color: #fff;
}

.logo span {
    color: #fff;
    font-size: 1rem;
    font-weight: bold;
    white-space: nowrap;
}

/* ======== DERETAN LOGO INSTANSI ======== */
.logo-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-group img {
    height: 35px;
    width: auto;
    object-fit: contain;
    filter: brightness(100%);
    transition: transform 0.3s ease;
}

.logo-group img:hover {
    transform: scale(1.08);
}

/* ======== MENU UTAMA ======== */
.nav-menu {
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links li {
    position: relative;
}

.nav-links a {
    color: #f5f5f5;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s, text-shadow 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.6);
}

/* ======== DROPDOWN MENU ======== */
.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #ffffff;
    min-width: 200px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    padding: 10px 0;
    list-style: none;
    z-index: 999;
}
.dropdown-content li {
    position: relative;
    display: block; 
}

/* 2. Pastikan link di dalam dropdown memiliki style yang benar */
.dropdown-content li a {
    color: var(--text-primary);
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
    white-space: nowrap; /* Mencegah teks turun baris */
}

/* 3. Style untuk link dropdown yang memiliki submenu */
.dropdown-submenu > a {
    display: flex;
    justify-content: space-between; /* Menaruh panah di kanan */
    align-items: center;
}

/* 4. Style untuk panah kanan */
.dropdown-submenu .fa-chevron-right {
    font-size: 0.7em;
    margin-left: 10px; /* Jarak dari teks */
}

/* 5. Konten Submenu (level 3 & 4, awalnya tersembunyi) */
.submenu-content {
    display: none; /* Sembunyikan secara default */
    position: absolute;
    left: 100%; /* Muncul di sebelah kanan item induk */
    top: -10px; /* Posisi vertikal (sedikit di atas) */
    background-color: var(--bg-secondary);
    min-width: 220px; /* Lebar minimum submenu */
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 10;
    list-style: none; 
    padding: 10px 0;
    margin: 0;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

/* 6. Tampilkan Submenu saat item induk di-hover */
.dropdown-submenu:hover > .submenu-content {
    display: block;
}
/* 5. Style untuk link di dalam submenu */
.submenu-content li a {
    color: var(--text-primary); 
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
}

.dropdown-content li a {
    display: block;
    padding: 10px 16px;
    color: #333;
    text-decoration: none;
    font-size: 0.9rem;
    transition: background 0.3s;
}

.dropdown-content li a:hover {
    background-color: #f1f1f1;
}

/* Saat dropdown aktif lewat JS */
.dropdown-content.show {
    display: block;
}

/* ======== HAMBURGER MENU ======== */
.hamburger-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
    background: transparent;
    border: none;
    z-index: 1001;
}

.hamburger-menu .bar {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 4px 0;
    transition: all 0.3s ease;
}

/* ======== RESPONSIVE (TABLET & HP) ======== */
@media (max-width: 900px) {
    .navbar {
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .logo-group img {
        height: 28px;
    }

    .hamburger-menu {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 70px;
        right: 0;
        background: rgba(0, 80, 150, 0.95);
        width: 100%;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease;
        flex-direction: column;
        text-align: center;
        border-radius: 0 0 12px 12px;
    }

    .nav-menu.active {
        max-height: 500px;
        padding: 20px 0;
    }

    .nav-links {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-links a {
        color: #fff;
        font-size: 1rem;
    }

    .dropdown-content {
        position: static;
        background: none;
        box-shadow: none;
        padding: 0;
    }

    .dropdown-content li a {
        color: #fff;
        padding: 8px 0;
    }

    .dropdown-content li a:hover {
        background: rgba(255, 255, 255, 0.1);
    }
}

/* ======== OPSIONAL: DARK MODE (KALAU ADA) ======== */
body.dark-mode .dropdown-content {
    background-color: #1e1e1e;
}

body.dark-mode .dropdown-content li a {
    color: #f5f5f5;
}

body.dark-mode .dropdown-content li a:hover {
    background-color: #333;
}


/* 3. HERO SECTION & OMBBAK ANIMASI */
.hero {
    background: var(--bg-hero);
    padding: 200px 40px 200px;
    position: relative;
    color: white;
    transition: var(--theme-transition);
}
.hero-content { max-width: 1200px; margin: 0 auto; text-align: center; }
.hero h1 { color: white; font-size: 3.5em; line-height: 1.2; text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2); }
.hero p { color: rgba(255, 255, 255, 0.95); font-size: 1.1em; margin: 15px 0 40px; }
.hero-waves { position: absolute; bottom: -1px; left: 0; width: 100%; height: 160px; overflow: hidden; }
.waves { position: relative; width: 100%; height: 160px; min-height: 100px; max-height: 160px; }
.parallax > use { animation: move-forever 25s cubic-bezier(.55,.5,.45,.5) infinite; }
.parallax > use:nth-child(1) { animation-delay: -2s; animation-duration: 7s; fill: rgba(255,255,255,0.7); }
.parallax > use:nth-child(2) { animation-delay: -3s; animation-duration: 10s; fill: rgba(255,255,255,0.5); }
.parallax > use:nth-child(3) { animation-delay: -4s; animation-duration: 13s; fill: rgba(255,255,255,0.3); }
.parallax > use:nth-child(4) { animation-delay: -5s; animation-duration: 20s; fill: var(--bg-primary); transition: fill 0.3s ease; }

/* 4. SHOWCASE PANEL KACA */
.premium-showcase-wrapper { margin-top: 40px; }
.glass-panel {
    background: rgba(255, 255, 255, 0.15); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
    border-radius: 16px; padding: 40px; border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.1); text-align: center; color: #fff;
    animation: fadeInSlideUp 0.8s ease-out forwards;
}
.panel-header h2 { font-size: 2.2em; font-weight: 700; margin: 0 0 10px 0; text-shadow: 0 2px 5px rgba(0,0,0,0.3); color: white; }
.panel-header h3 { font-size: 1.2em; font-weight: 500; margin: 15px 0; line-height: 1.5; color: white; opacity: 0.9; }
.panel-header p { font-size: 1.1em; max-width: 600px; margin: 15px auto 40px; opacity: 0.9; text-shadow: 0 1px 3px rgba(0,0,0,0.3); color: white; }
.stats-container { display: flex; justify-content: space-around; gap: 20px; flex-wrap: wrap; }
.stat-item { flex: 1; min-width: 220px; padding: 20px; border-radius: 12px; transition: all 0.3s ease; opacity: 0; transform: translateY(20px); animation: fadeInSlideUp 0.6s ease-out forwards; }
.stat-item:nth-child(1) { animation-delay: 0.2s; } .stat-item:nth-child(2) { animation-delay: 0.4s; } .stat-item:nth-child(3) { animation-delay: 0.6s; }
.stat-item:hover { background-color: rgba(255, 255, 255, 0.15); transform: translateY(-8px); box-shadow: 0 10px 25px rgba(255,255,255,0.1); }
.stat-icon { font-size: 2.2rem; margin-bottom: 15px; opacity: 0.8; animation: iconBreathe 4s ease-in-out infinite; }
.stat-number { font-size: 2.8em; font-weight: 700; margin: 0; line-height: 1.1; color: white; }
.stat-label { font-size: 1em; font-weight: 500; opacity: 0.8; text-transform: uppercase; letter-spacing: 1px; color: white; }


/* 5. STYLE UMUM SECTION */
.section-header { text-align: center; margin-bottom: 50px; }
.section-header h2 { font-size: 2.5em; margin-bottom: 15px; }
.section-header p, .subtitle { 
    color: var(--text-secondary); 
    font-size: 1.1em; 
    max-width: 700px; 
    margin: 0 auto 50px auto; 
    text-align: center;
}
.modul-section, .why-learn, .ekosistem-section, .lokasi-section, .referensi-section,.tentang-section { padding: 80px 20px; } /* INI PENYEBABNYA */
.quote-section { padding: 150px 20px; }
.site-footer { padding: 150px 0 20px; margin-top: 0; }
.modul-section { padding-top: 100px; }


/* .section-header { 
    text-align: center; 
    margin-bottom: 50px; 
}
.section-header h2 { 
    font-size: 2.5em; 
    margin-bottom: 15px; 
    text-align: center;
}
.section-header p, .subtitle { 
    color: var(--text-secondary); 
    font-size: 1.1em; 
    max-width: 700px; 
    margin: 0 auto 50px auto; 
    text-align: center;
}

.modul-section, .why-learn, .ekosistem-section, .lokasi-section, .referensi-section, .tentang-section {
    padding: 80px 20px; 
}

.quote-section {
    padding: 150px 20px; 
}

.site-footer { padding: 150px 0 20px; margin-top: 0; }
.modul-section {
    padding-top: 100px; 
} */

/* 6. MODUL SECTION & FILTER */
.filter-tabs {
    display: flex; gap: 15px; justify-content: center; margin-top: 2rem;
    margin-bottom: 40px; flex-wrap: wrap;
}
.filter-btn {
    background: var(--bg-secondary); border: 1px solid var(--border-color); padding: 10px 25px;
    border-radius: 30px; cursor: pointer; font-size: 0.95em; transition: all 0.3s ease;
    font-weight: 500; color: var(--text-medium); font-family: 'Poppins', sans-serif;
}
.filter-btn.active, .filter-btn:hover {
    background: var(--accent-primary); color: white; transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(2, 136, 209, 0.2); border-color: transparent;
}
.modul-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 30px;
    transition: all 0.5s ease;
}
.modul-card {
    background: var(--bg-secondary); border-radius: 16px; overflow: hidden; border: 1px solid var(--border-color);
    box-shadow: var(--shadow-soft); display: flex; flex-direction: column;
    flex-basis: 320px; flex-grow: 1;
    height: 480px; /* TINGGI TETAP (sesuaikan jika perlu) */
    opacity: 1;
    transform: scale(1);
    transition: transform 0.4s ease, opacity 0.4s ease;
}
.modul-card.hide {
    opacity: 0; transform: scale(0.9); pointer-events: none;
    height: 0; flex-basis: 0; flex-grow: 0;
    padding: 0; margin: 0; border: 0;
}
.modul-card .card-image { position: relative; height: 200px; overflow: hidden; }
.modul-card .card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease-out; }
.modul-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-medium); border-color: var(--accent-primary); }
.modul-card:hover .card-image img { transform: scale(1.08); }
.badge {
    position: absolute; top: 15px; left: 15px; background: rgba(255, 255, 255, 0.9); backdrop-filter: blur(5px);
    color: #01579b; padding: 6px 14px; border-radius: 20px; font-size: 12px; font-weight: 700; border: 1px solid rgba(0,0,0,0.05);
}
.modul-card h3 { padding: 20px 25px 10px; font-size: 1.2em; font-weight: 600; line-height: 1.4; }
.modul-card .description { padding: 0 25px 20px; font-size: 0.95em; line-height: 1.6; }
.btn-modul {
    display: flex; align-items: center; justify-content: space-between; margin: 0 25px 25px; padding: 12px 18px;
    background-color: #f0f7ff; color: var(--accent-primary); text-decoration: none; border-radius: 10px;
    font-weight: 600; font-size: 14px; transition: all 0.3s ease; border: 1px solid transparent;
    margin-top: auto; /* Mendorong tombol ke bawah */
}
.btn-modul::after { content: '→'; font-weight: bold; transition: transform 0.3s ease; }
.btn-modul:hover { background-color: var(--accent-primary); color: white; border-color: var(--accent-primary); transform: translateY(-2px); box-shadow: 0 5px 15px rgba(2, 136, 209, 0.2); }
.btn-modul:hover::after { transform: translateX(4px); }

/* 7. "WHY LEARN" SECTION */
.why-learn { background-color: var(--bg-secondary); }
.why-learn h2 {
    text-align: center;
    font-size: 2.5em;
    font-weight: 700;
    margin-bottom: 10px;
}
.why-learn .subtitle {
    text-align: center;
    max-width: 700px; 
    margin: 0 auto 60px auto; 
}
.why-content { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.why-list { display: flex; flex-direction: column; gap: 35px; }
.why-item { display: flex; gap: 20px; align-items: flex-start; opacity: 0; transform: translateX(-30px); animation: slideInFromLeft 0.8s ease-out forwards; }
.icon-badge {
    width: 50px; height: 50px; border-radius: 12px; display: flex; align-items: center; justify-content: center;
    font-size: 1.5em; flex-shrink: 0; background-color: #eaf2ff; color: #2575fc; box-shadow: 0 4px 10px rgba(37, 117, 252, 0.1);
}
.why-item h3 { font-size: 1.2em; font-weight: 600; margin-bottom: 8px; }
.why-item p { font-size: 1em; line-height: 1.7; }
.why-summary {
    display: flex; align-items: center; gap: 15px; margin-top: 20px; padding: 20px;
    background-color: #f0f7ff; border-radius: 12px; border: 1px solid #dbe9ff;
    font-size: 1.05em; font-weight: 500;
    opacity: 0; transform: translateY(30px); animation: fadeInSlideUp 0.8s ease-out 1s forwards;
}
.why-summary i { font-size: 1.5em; color: #f9a825; }
.why-image { position: relative; }
.why-image img {
    width: 100%; height: auto; aspect-ratio: 4 / 5; object-fit: cover; border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1); opacity: 0; transform: scale(1.1); animation: zoomInFade 1s ease-out forwards;
}
.stat-card {
    position: absolute; background: rgba(255, 255, 255, 0.7); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
    padding: 15px 20px; border-radius: 12px; box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1); border: 1px solid rgba(255, 255, 255, 0.2);
    opacity: 0; transform: scale(0.8); animation: popIn 0.6s ease-out forwards;
}
.stat-number { font-size: 1.8em; font-weight: 700; margin-bottom: 2px; }
.stat-label { font-size: 0.8em; font-weight: 500; text-transform: uppercase; letter-spacing: 0.5px; }
.card1 { top: 40px; left: -40px; } .card2 { bottom: 150px; right: -50px; } .card3 { bottom: 40px; left: 20px; }
.why-item:nth-child(1) { animation-delay: 0.2s; } .why-item:nth-child(2) { animation-delay: 0.4s; } .why-item:nth-child(3) { animation-delay: 0.6s; }
.why-image .card1 { animation-delay: 0.8s; } .why-image .card2 { animation-delay: 1.0s; } .why-image .card3 { animation-delay: 1.2s; }

/* 8. EKOSISTEM SECTION */
.ekosistem-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 30px; }
.ekosistem-card {
    background: var(--bg-secondary); border-radius: 16px; overflow: hidden; box-shadow: var(--shadow-soft);
    cursor: pointer; border: 1px solid var(--border-color); transition: all 0.4s ease;
    opacity: 0; transform: translateY(30px); animation: fadeInSlideUp 0.7s ease-out forwards;
}
.ekosistem-section h2 {
     text-align: center;
    font-size: 2.5em;
    font-weight: 700;
    margin-bottom: 10px;
}

.ekosistem-section .subtitle {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}
.ekosistem-card.hide { transform: scale(0.9); opacity: 0; pointer-events: none; }
.ekosistem-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-medium); }
.ekosistem-card .card-image { height: 240px; position: relative; overflow: hidden; }
.ekosistem-card .card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.ekosistem-card:hover .card-image img { transform: scale(1.08); }
.rating { position: absolute; top: 15px; right: 15px; background: rgba(0,0,0,0.5); color: white; padding: 5px 10px; font-size: 14px; border-radius: 20px; }
.card-info { padding: 24px; } .card-info h3 { font-size: 1.3em; margin-bottom: 12px; font-weight: 600; }
.location, .stats { font-size: 0.95em; margin-bottom: 12px; display: flex; align-items: center; gap: 6px; }
.stats { color: var(--accent-primary); font-weight: 500; }
.ekosistem-card:nth-child(1) { animation-delay: 0.1s; } .ekosistem-card:nth-child(2) { animation-delay: 0.2s; }
.ekosistem-card:nth-child(3) { animation-delay: 0.3s; } .ekosistem-card:nth-child(4) { animation-delay: 0.4s; }
.ekosistem-card:nth-child(5) { animation-delay: 0.5s; } .ekosistem-card:nth-child(6) { animation-delay: 0.6s; }

/* 9. LOKASI CAROUSEL */
.carousel-wrapper { overflow: hidden; padding: 20px 0; width: 100%; -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%); mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%); }
.lokasi-section h2 {
     text-align: center;
    font-size: 2.5em;
    font-weight: 700;
    margin-bottom: 10px;
}

/* Ini akan memusatkan subjudul di bawahnya */
.lokasi-section .subtitle {
    text-align: center;
    margin-left: auto;
    margin-right: auto;

}
.lokasi-carousel { display: flex; gap: 20px; width: fit-content; animation: infiniteScroll 40s linear infinite; animation-play-state: paused; }
.carousel-wrapper:hover .lokasi-carousel { animation-play-state: running; }
.lokasi-card { flex: 0 0 300px; position: relative; border-radius: 16px; overflow: hidden; color: white; transition: transform 0.4s ease; }
.lokasi-card:hover { transform: scale(1.05); }
.lokasi-card img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.7); }
.lokasi-card .card-content { position: absolute; bottom: 0; left: 0; right: 0; padding: 20px; background: linear-gradient(to top, rgba(0,0,0,0.8), transparent); }
.lokasi-card h3 { color: white; margin: 0; font-size: 1.5em; text-shadow: 2px 2px 4px rgba(0,0,0,0.7); }
.lokasi-card p { color: white; margin: 5px 0 0; font-size: 1em; opacity: 0.9; }
.lokasi-card p i { margin-right: 5px; }

/* 10. REFERENSI SECTION */
.referensi-section { background: var(--bg-secondary); }
.referensi-section h2 {
    text-align: center;
    font-size: 2.5em;
    font-weight: 700;
    margin-bottom: 10px;
}

.referensi-section .subtitle {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}
.referensi-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 25px; }
.ref-card { background: var(--bg-white); padding: 30px; border-radius: 16px; box-shadow: var(--shadow-soft); text-decoration: none; transition: all 0.3s; border: 1px solid var(--border-color); }
.ref-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-medium); border-color: var(--accent-primary); }
.ref-icon { font-size: 40px; margin-bottom: 15px; color: var(--accent-primary); }
.ref-card h3 { font-size: 1.1em; margin-bottom: 10px; }
.ref-card p { font-size: 0.9em; line-height: 1.6; }

/* 11. TENTANG SECTION */
.tentang-content { display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px; align-items: center; }
.tentang-text p { font-size: 1em; line-height: 1.8; margin-bottom: 15px; }
.features { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; margin-top: 30px; }
.feature-item { display: flex; align-items: center; gap: 10px; font-size: 0.95em; }
.feature-icon {
    width: 25px; height: 25px; background: var(--accent-primary); color: white; border-radius: 50%;
    display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: bold;
}
.tentang-image img { width: 100%; height: 400px; object-fit: cover; border-radius: 20px; box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1); }

/* 12. QUOTE SECTION (PENGGANTI KONTAK) */
.quote-section {
    position: relative; padding: 150px 20px;
    background-image: url('https://images.unsplash.com/photo-1509316975850-ff9c5deb0cf1?w=1200');
    background-size: cover; background-position: center; background-attachment: fixed;
    text-align: center; color: white;
}
.quote-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(135deg, rgba(2, 48, 71, 0.7), rgba(13, 27, 42, 0.8)); }
.quote-content { position: relative; z-index: 2; max-width: 850px; margin: 0 auto; opacity: 0; transform: translateY(30px); animation: fadeInSlideUp 1s ease-out forwards; }
.quote-content i { font-size: 2.5em; opacity: 0.5; margin-bottom: 20px; }
.quote-content p { font-size: 2em; font-weight: 500; font-style: italic; line-height: 1.6; text-shadow: 0 2px 15px rgba(0, 0, 0, 0.5); color: white; }

/* 13. FOOTER */
.site-footer {
    background-color: #0d1b2a; color: #adb5bd; position: relative;
    padding: 150px 0 20px; margin-top: 30px;
}
.footer-waves { position: absolute; top: 0; left: 0; width: 100%; height: 150px; transform: translateY(-100%); overflow: hidden; }
.footer-waves .waves { position: absolute; bottom: 0; width: 100%; height: 150px; }
.footer-waves .parallax > use { animation: move-forever 25s cubic-bezier(.55,.5,.45,.5) infinite; fill: #0d1b2a; }
.footer-content { display: grid; grid-template-columns: 1.5fr 1.5fr 1.5fr ; gap: 40px; margin-bottom: 40px; }
.footer-logo { display: inline-flex; align-items: center; gap: 10px; font-size: 1.5em; font-weight: 600; color: white; text-decoration: none; margin-bottom: 20px; }
.footer-col.about p, .footer-col.links p { font-size: 0.9em; line-height: 1.6; color: #adb5bd; }
.footer-col.links p { text-align: justify; margin-top: 1rem; }
.footer-col h3 { font-size: 1.2em; font-weight: 600; color: white; margin-bottom: 25px; }
.footer-col.links ul {
    list-style: none; /* Menghilangkan bullet points */
    padding: 0;       /* Menghilangkan padding default */
    margin-top: 1rem;
    margin-bottom: 1rem;
}
.footer-col.links li {
    font-size: 0.9em;
    line-height: 1.6;
    color: #adb5bd;      
    margin-bottom: 8px; /* Sedikit penyesuaian dari 5px agar lebih lega */
}
.project-list li strong {
    color: #ffffff; /* Putih, agar menonjol seperti di gambar */
    font-weight: 600;
}
.footer-col.links ul li { font-size: 0.9em; line-height: 1.6; color: #adb5bd; margin-bottom: 5px; }

.project-details {
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.project-details dt { /* Ini adalah 'Judul:', 'Pendanaan:', etc. */
    color: #ffffff;
    font-weight: 600;
    font-size: 0.9em;
    line-height: 1.6;
}

.project-details dd { /* Ini adalah isi deskripsinya */
    color: #adb5bd;
    font-size: 0.9em;
    line-height: 1.6;
    margin-left: 0; /* Menghilangkan indentasi default */
    margin-bottom: 10px; /* Jarak antar entri */
}
/* 15. RESPONSIVE MEDIA QUERY */
@media (max-width: 992px) {
    .footer-content { grid-template-columns: 1fr 1fr; }
    .footer-col.about { grid-column: 1 / 3; margin-bottom: 20px; text-align: center; }
    .footer-col.about .social-links { justify-content: center; }
}
@media (max-width: 768px) {
    .hamburger-menu { display: block; }
    .hamburger-menu.active .bar:nth-child(2) { opacity: 0; }
    .hamburger-menu.active .bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
    .hamburger-menu.active .bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
    .nav-menu {
        position: fixed; right: -100%; top: 0;
        flex-direction: column; background-color: var(--bg-secondary);
        width: 100%; height: 100vh;
        transition: 0.4s ease-out; padding-top: 5rem;
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
        display: flex; align-items: center; justify-content: center;
        gap: 3rem;
        z-index: 999; /* Pastikan di bawah header */
    }
    .navbar { z-index: 1001; } /* Pastikan navbar di atas menu */
    .nav-menu.active { right: 0; }
    .nav-links { flex-direction: column; gap: 2rem; width: 100%; text-align: center; }
    .nav-links a { color: var(--text-primary); font-size: 1.5rem; }
    .theme-switch-wrapper { margin-top: 1rem; }
    
    .hero { padding-top: 140px; }
    .hero h1 { font-size: 2.5em; }
    .why-content, .tentang-content, .footer-content { grid-template-columns: 1fr; }
    .footer-col.about { grid-column: auto; margin-bottom: 0; }
    .footer-col, .footer-col.about { text-align: center; }
    .footer-col.links p { text-align: center; }
    
    .stat-card { position: static; transform: none !important; margin-bottom: 15px; }
    .why-image { display: flex; flex-direction: column; }
    .why-image img { order: -1; margin-bottom: 20px; }
}

/* 16. KEYFRAMES */
@keyframes move-forever { 0% { transform: translate3d(-90px,0,0); } 100% { transform: translate3d(85px,0,0); } }
@keyframes fadeInSlideUp { from { opacity: 0; transform: translateY(30px); filter: blur(5px); } to { opacity: 1; transform: translateY(0); filter: blur(0); } }
@keyframes iconBreathe { 0%, 100% { transform: scale(1); opacity: 0.8; } 50% { transform: scale(1.1); opacity: 1; } }
@keyframes slideInFromLeft { from { opacity: 0; transform: translateX(-30px); } to { opacity: 1; transform: translateX(0); } }
@keyframes zoomInFade { from { opacity: 0; transform: scale(1.1); } to { opacity: 1; transform: scale(1); } }
@keyframes popIn { from { opacity: 0; transform: scale(0.8); } to { opacity: 1; transform: scale(1); } }
@keyframes infiniteScroll { from { transform: translateX(0); } to { transform: translateX(calc(-320px * 7)); } }