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

/* =========================================
   0. VARIABEL WARNA & RESET DASAR
========================================= */
:root {
    --bg-main: #0f172a;
    --bg-base: #080909;
    --text-primary: #ffffff;
    --text-light: #f8fafc;
    --text-muted: #94a3b8;
    --text-dark: #020617;
    --text-hover: #38bdf8;

    --accent-blue: #60a5fa;
    --accent-purple: #a78bfa;
    --accent-cyan: #2dd4bf;
    --accent-1: #06b6d4;
    --accent-2: #3b82f6;
    --accent-3: #8b5cf6;

    --glass-bg: rgba(0, 0, 0, 0.756);
    --glass-bg-hover: rgba(255, 255, 255, 0.08);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-border-strong: rgba(255, 255, 255, 0.15);

    --shadow-sm: 0 4px 10px rgba(0, 0, 0, 0.5);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.6);
    --shadow-lg: 0 25px 50px rgba(0, 0, 0, 0.7);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

html {
    scroll-behavior: smooth;
    background-color: var(--bg-base);
    scrollbar-width: thin;
    scrollbar-color: var(--accent-cyan) var(--bg-base);
}

body {
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
    background-size: 80px 80px;
}

/* =========================================
   1. SCROLLBAR MEWAH
========================================= */
::-webkit-scrollbar { width: 12px; }
::-webkit-scrollbar-track { background: var(--bg-base); border-left: 1px solid rgba(255, 255, 255, 0.02); }
::-webkit-scrollbar-thumb { background: linear-gradient(180deg, var(--accent-blue) 0%, var(--accent-cyan) 100%); border-radius: 10px; border: 3px solid var(--bg-base); }
::-webkit-scrollbar-thumb:hover { background: linear-gradient(180deg, #93c5fd 0%, #67e8f9 100%); }
::-webkit-scrollbar-thumb:active { background: var(--accent-cyan); }

/* =========================================
   2. EFEK BACKGROUND (BLOB & MOUSE TRAIL)
========================================= */
.mouse-trail {
    position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; pointer-events: none; z-index: 9999;
}
.mouse-trail::after {
    content: ''; position: absolute; top: var(--y, 0); left: var(--x, 0); width: 15px; height: 15px;
    background: var(--accent-1); border-radius: 50%; transform: translate(-50%, -50%);
    box-shadow: 0 0 40px 10px rgba(6, 182, 212, 0.4), 0 0 80px 20px rgba(6, 182, 212, 0.2); opacity: 0.8;
}

.background-canvas {
    position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; z-index: -1; overflow: hidden; pointer-events: none;
}
.blob-container { width: 100%; height: 100%; transform: translate(var(--xOffset, 0), var(--yOffset, 0)); will-change: transform; }
.blob { position: absolute; border-radius: 50%; filter: blur(120px); opacity: 0.3; animation: blob-flow infinite alternate-reverse ease-in-out; }
.blob-1 { width: 50vw; height: 50vw; background: var(--accent-1); top: -20%; left: -10%; animation-duration: 20s; }
.blob-2 { width: 40vw; height: 40vw; background: var(--accent-2); bottom: -10%; right: -10%; animation-duration: 25s; }
.blob-3 { width: 30vw; height: 30vw; background: var(--accent-3); top: 40%; left: 40%; opacity: 0.15; animation-duration: 30s; }
.blob-4 { width: 45vw; height: 45vw; background: #ea580c; bottom: 40%; left: 10%; opacity: 0.1; animation-duration: 35s; }

@keyframes blob-flow {
    0% { transform: scale(1) translate(0, 0) rotate(0deg); border-radius: 50%; }
    33% { transform: scale(1.1) translate(100px, 50px) rotate(120deg); border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
    66% { transform: scale(0.9) translate(-50px, 100px) rotate(240deg); border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
    100% { transform: scale(1) translate(0, 0) rotate(360deg); border-radius: 50%; }
}

/* =========================================
   3. SCROLL REVEAL ANIMATION
========================================= */
.reveal, .is-scroll-reveal { opacity: 0; transform: translateY(50px); transition: all 0.8s ease-out; }
.reveal.active, .is-scroll-reveal.active { opacity: 1; transform: translateY(0); }

/* =========================================
   4. HEADER & NAVBAR
========================================= */
.header-utama { display: flex; flex-direction: column; width: 100%; position: fixed; top: 0; z-index: 1000; }
.navbar {
    width: 100%; background: rgba(15, 23, 42, 0.3); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1); padding: 22px 5%; display: flex; justify-content: space-between; align-items: center; box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}
.logo { display: flex; align-items: center; gap: 10px; font-size: 1.5rem; font-weight: 700; color: #ffffff; text-decoration: none; }
.logo img { height: 45px !important; width: auto; }
.badge-ppg {
    font-size: 0.8rem; background: transparent; color: var(--accent-cyan); border: 1px solid var(--accent-cyan);
    padding: 3px 8px; border-radius: 6px; letter-spacing: 1px; font-weight: 700; transform: translateY(-2px); box-shadow: 0 0 8px rgba(45, 212, 191, 0.2);
}
.nav-links { list-style: none; display: flex; align-items: center; gap: 30px; margin: 0; padding: 0; }
.nav-item { color: var(--text-light); text-decoration: none; font-weight: 500; position: relative; padding: 5px 0; transition: color 0.3s ease; }
.nav-item:hover { color: var(--accent-cyan); }
.nav-item::after { content: ''; position: absolute; bottom: 0; left: 50%; width: 0%; height: 2px; background: var(--accent-cyan); transition: all 0.3s ease; transform: translateX(-50%); }
.nav-item:hover::after { width: 100%; box-shadow: 0 0 8px var(--accent-cyan); }

/* Dropdown */
.dropdown { position: relative; }
.dropdown-icon { font-size: 0.75rem; margin-left: 5px; transition: transform 0.3s ease; }
.dropdown:hover .dropdown-icon { transform: rotate(180deg); color: var(--accent-cyan); }
.dropdown-menu {
    position: absolute; top: 150%; left: 0; min-width: 240px; background: rgba(15, 23, 42, 0.85); backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15); border-top: 3px solid var(--accent-cyan); border-radius: 8px; padding: 10px 0; list-style: none;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.7); opacity: 0; visibility: hidden; transform: translateY(20px) scale(0.95); transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55); z-index: 1000;
}
.dropdown:hover .dropdown-menu { top: 100%; opacity: 1; visibility: visible; transform: translateY(0) scale(1); }
.dropdown-menu a { display: flex; align-items: center; gap: 12px; padding: 12px 20px; color: var(--text-light); text-decoration: none; font-size: 0.95rem; font-weight: 500; position: relative; overflow: hidden; transition: all 0.3s ease; z-index: 1; }
.dropdown-menu i { color: rgba(255, 255, 255, 0.4); font-size: 1.1rem; transition: color 0.3s ease; }
.dropdown-menu a::before { content: ''; position: absolute; top: 0; left: 0; width: 0%; height: 100%; background: rgba(45, 212, 191, 0.1); transition: width 0.3s ease; z-index: -1; border-left: 0px solid var(--accent-cyan); }
.dropdown-menu a:hover { color: var(--accent-cyan); padding-left: 30px; }
.dropdown-menu a:hover::before { width: 100%; border-left: 4px solid var(--accent-cyan); }
.hamburger { display: none; }

/* =========================================
   5. KOMPONEN GLOBAL
========================================= */
.profil-content-wrapper { position: relative; z-index: 10; display: block !important; width: 100%; max-width: 1400px !important; margin: 65vh auto 0 auto; padding: 0 5% 50px 5%; background: transparent; min-height: 100vh; }
.section-header { text-align: center; margin: 60px 0 40px; width: 100%; }
.section-title { font-size: 2rem; font-weight: 700; color: var(--text-light); margin-bottom: 15px; letter-spacing: 0.5px; }
.title-line { width: 80px; height: 5px; background: linear-gradient(90deg, var(--accent-cyan), var(--accent-blue)); margin: 0 auto; border-radius: 10px; box-shadow: 0 0 10px rgba(45, 212, 191, 0.5); }
.sub-subtitle { padding-top: 24px; padding-bottom: 32px; max-width: 750px; margin: 0 auto; color: var(--text-muted); font-size: 1rem; line-height: 1.6; }
.glass-box { background: rgba(255, 255, 255, 0.03); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border: 1px solid rgba(255, 255, 255, 0.08); border-radius: 20px; padding: 30px; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3); transition: transform 0.3s ease, border-color 0.3s ease; }
.glass-box:hover { border-color: rgba(45, 212, 191, 0.3); transform: translateY(-5px); }

/* =========================================
   6. BANNER PARALLAX DASAR
========================================= */
.profil-banner { position: fixed; top: 0; left: 0; width: 100%; height: 75vh; z-index: 1; display: flex; align-items: center; justify-content: center; text-align: center; overflow: hidden; pointer-events: none; -webkit-mask-image: linear-gradient(to bottom, black 60%, transparent 100%); mask-image: linear-gradient(to bottom, black 60%, transparent 100%); }
.banner-img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; z-index: -1; }
.banner-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(6, 182, 212, 0.7) 0%, rgba(15, 23, 42, 0.95) 100%); mix-blend-mode: multiply; z-index: 0; }
.banner-text { position: relative; z-index: 2; color: #fff; padding: 0 20px; transform: translateY(-40px); }
.banner-text h1 { font-size: 4rem; font-weight: 700; margin-bottom: 10px; text-shadow: 0 5px 15px rgba(0, 0, 0, 0.5); }
.banner-text p { font-size: 1.2rem; color: var(--text-hover); letter-spacing: 1px; margin-top: -15px; }

/* =========================================
   7. FOOTER
========================================= */
.glass-footer { background: #020617; backdrop-filter: blur(20px); border-top: 7px solid var(--accent-cyan); box-shadow: 0 -10px 30px rgba(45, 212, 191, 0.15); color: var(--text-light); padding: 70px 5% 20px 5%; position: relative; z-index: 2; margin-top: 50px; }
.glass-footer-profil { margin-top: 0 !important; background: rgba(2, 3, 7, 0.8); }
.footer-content { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 80px; max-width: 1200px; margin: 0 auto; }
.footer-col h3 { color: var(--accent-cyan); font-size: 1.3rem; margin-bottom: 20px; font-weight: 600; }
.footer-col p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.6; }
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 12px; }
.footer-links a { color: var(--text-muted); text-decoration: none; font-size: 0.95rem; transition: all 0.3s ease; display: flex; align-items: center; gap: 8px; }
.footer-links a::before { content: "▸"; color: var(--accent-purple); font-size: 1.2rem; transition: transform 0.3s; }
.footer-links a:hover { color: var(--text-hover); transform: translateX(5px); }
.map-container { margin-top: 15px; border-radius: 12px; overflow: hidden; border: 1px solid var(--glass-border); box-shadow: var(--shadow-sm); transition: transform 0.3s ease; }
.map-container:hover { transform: scale(1.02); box-shadow: 0 5px 15px rgba(96, 165, 250, 0.3); }
.footer-bottom { text-align: center; margin-top: 50px; padding-top: 20px; border-top: 1px solid var(--glass-border-strong); }
.footer-bottom p { color: var(--text-muted); font-size: 0.85rem; margin: 0; }
.social-links { display: flex; gap: 15px; }
.social-icon { width: 45px; height: 45px; background: rgba(255, 255, 255, 0.1); border: 1px solid rgba(255, 255, 255, 0.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; font-size: 1.2rem; text-decoration: none; transition: all 0.4s ease; }
.social-icon:hover { background: rgba(255, 255, 255, 0.2); transform: translateY(-8px); box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2); border-color: #fff; }
.social-icon:hover .fa-facebook-f { color: #1877F2; }
.social-icon:hover .fa-instagram { color: #E4405F; }
.social-icon:hover .fa-tiktok { color: #00f2ea; }
.social-icon:hover .fa-youtube { color: #FF0000; }

/* =========================================
   8. UTILITY CLASS & TEKS
========================================= */
.text-blue { color: #60a5fa !important; }
.text-cyan { color: #2dd4bf !important; }
.text-purple { color: #a78bfa !important; }
.text-warning { color: #fbbf24 !important; }
.text-danger { color: #ef4444 !important; }
.teks-justify {
    text-align: justify;
    text-justify: inter-word;
}

/* =========================================================
   9. FILOSOFI MENGAJAR — HERO SPLIT
========================================================= */
.filosofi-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
    padding-top: 20px;
}

.hero-kiri {
    position: sticky;
    top: 120px;
}

.badge-ideologi {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(45, 212, 191, 0.1);
    border: 1px solid rgba(45, 212, 191, 0.3);
    color: var(--accent-cyan);
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 25px;
}

.hero-kiri h1 {
    font-size: 3.8rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-kiri h1 span {
    display: block;
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-kiri .hero-desc {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

/* Pulse icon animation */
.pulse-icon-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(45, 212, 191, 0.1);
    border: 2px solid rgba(45, 212, 191, 0.3);
    position: relative;
    cursor: pointer;
    animation: pulse-ring 2s ease-out infinite;
}

.pulse-icon-wrap i {
    font-size: 1.5rem;
    color: var(--accent-cyan);
}

@keyframes pulse-ring {
    0% { box-shadow: 0 0 0 0 rgba(45, 212, 191, 0.4); }
    70% { box-shadow: 0 0 0 20px rgba(45, 212, 191, 0); }
    100% { box-shadow: 0 0 0 0 rgba(45, 212, 191, 0); }
}

/* =========================================================
   10. FILOSOFI KONTEN CARDS (Sisi Kanan)
========================================================= */
.hero-kanan {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.konten-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 35px 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.konten-card:hover {
    border-color: rgba(45, 212, 191, 0.4);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

/* Nomor besar di background card */
.card-number {
    position: absolute;
    top: 15px;
    right: 25px;
    font-size: 5rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.03);
    line-height: 1;
    pointer-events: none;
    user-select: none;
}

.card-header-filosofi {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.icon-box {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.icon-box.blue {
    background: rgba(59, 130, 246, 0.15);
    color: #60a5fa;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.icon-box.cyan {
    background: rgba(45, 212, 191, 0.15);
    color: #2dd4bf;
    border: 1px solid rgba(45, 212, 191, 0.3);
}

.icon-box.purple {
    background: rgba(167, 139, 250, 0.15);
    color: #a78bfa;
    border: 1px solid rgba(167, 139, 250, 0.3);
}

.card-header-filosofi h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
}

.konten-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.8;
}

.konten-card strong {
    color: var(--accent-cyan);
}

.konten-card em {
    color: var(--text-light);
}

/* Highlighted quote inside card */
.quote-highlight {
    background: rgba(45, 212, 191, 0.08);
    border-left: 4px solid var(--accent-cyan);
    padding: 15px 20px;
    border-radius: 0 12px 12px 0;
    margin: 20px 0 10px;
    font-style: italic;
    color: var(--accent-cyan) !important;
    font-weight: 600;
    font-size: 1rem !important;
    line-height: 1.7 !important;
}

/* =========================================================
   11. LANDASAN LITERATUR PEDAGOGI — FLIP CARDS
========================================================= */
.literatur-flip-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: stretch;
}

.literatur-flip-card {
    background-color: transparent;
    height: 380px;
    perspective: 1200px;
    cursor: pointer;
}

.literatur-flip-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-style: preserve-3d;
}

.literatur-flip-card:hover .literatur-flip-inner {
    transform: rotateY(180deg);
}

.literatur-flip-front,
.literatur-flip-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px 30px;
}

/* Front face */
.literatur-flip-front {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    gap: 15px;
}

.literatur-flip-front h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
}

.literatur-flip-front .author-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--text-muted);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Back face */
.literatur-flip-back {
    transform: rotateY(180deg);
    border: none;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    padding: 35px 30px;
    justify-content: center;
}

.literatur-flip-back p {
    color: var(--text-light);
    font-size: 0.92rem;
    line-height: 1.8;
}

.literatur-flip-back strong {
    color: var(--accent-cyan);
}

.literatur-flip-back em {
    color: var(--text-light);
}

/* Gradient backgrounds for each card (dark theme) */
.gradient-purple {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.25) 0%, rgba(15, 23, 42, 0.95) 50%, rgba(167, 139, 250, 0.15) 100%);
    border: 1px solid rgba(167, 139, 250, 0.3);
}

.gradient-blue {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.25) 0%, rgba(15, 23, 42, 0.95) 50%, rgba(96, 165, 250, 0.15) 100%);
    border: 1px solid rgba(96, 165, 250, 0.3);
}

.gradient-cyan {
    background: linear-gradient(135deg, rgba(45, 212, 191, 0.25) 0%, rgba(15, 23, 42, 0.95) 50%, rgba(6, 182, 212, 0.15) 100%);
    border: 1px solid rgba(45, 212, 191, 0.3);
}

/* Icon (shared with front face) */
.literatur-icon {
    width: 70px;
    height: 70px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.literatur-icon.purple {
    background: rgba(167, 139, 250, 0.15);
    color: #a78bfa;
    border: 1px solid rgba(167, 139, 250, 0.3);
}

.literatur-icon.blue {
    background: rgba(59, 130, 246, 0.15);
    color: #60a5fa;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.literatur-icon.cyan {
    background: rgba(45, 212, 191, 0.15);
    color: #2dd4bf;
    border: 1px solid rgba(45, 212, 191, 0.3);
}

/* =========================================================
   12. IDEOLOGI GURU MASA DEPAN (Section Bawah)
========================================================= */
.ideologi-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: stretch;
}

.ideologi-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, border-color 0.3s ease;
    position: relative;
    overflow: hidden;
}

.ideologi-card:hover {
    border-color: rgba(45, 212, 191, 0.4);
    transform: translateY(-5px);
}

.ideologi-card .card-number {
    font-size: 6rem;
    top: 10px;
    right: 20px;
}

.ideologi-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.ideologi-header h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
}

.ideologi-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.8;
}

.ideologi-card strong {
    color: var(--accent-cyan);
}

/* =========================================================
   13. PRE-FOOTER BRIDGE
========================================================= */
.pre-footer-bridge {
    text-align: center;
    padding: 40px 0;
}

/* =========================================================
   14. MEDIA QUERIES
========================================================= */

/* --- Tablet (max-width: 1199px) --- */
@media (max-width: 1199px) {
    .section-title { font-size: 2rem; }
    .banner-text h1 { font-size: 3.2rem; }
    .hero-kiri h1 { font-size: 3rem; }
    .filosofi-hero { gap: 35px; }
}

/* --- Mobile Besar / Tablet Portrait (< 992px) --- */
@media (max-width: 992px) {
    /* Navbar & Hamburger */
    .hamburger { display: block !important; font-size: 1.8rem; cursor: pointer; z-index: 10001; color: var(--accent-cyan); }
    .nav-links { position: fixed !important; top: 0; right: -100%; width: 280px; height: 100vh; background: rgba(10, 20, 35, 0.98); backdrop-filter: blur(20px); flex-direction: column; justify-content: flex-start; padding: 100px 20px 30px; transition: right 0.3s ease; z-index: 9999; border-left: 2px solid var(--accent-cyan); gap: 10px; }
    .nav-links.slide-active { right: 0; }
    .nav-item { display: block; width: 100%; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.1); }
    .dropdown-menu { position: static !important; opacity: 1 !important; visibility: visible !important; transform: none !important; background: transparent !important; border: none; padding-left: 20px; box-shadow: none; display: none; }
    .dropdown.active .dropdown-menu { display: block; }
    .dropdown-icon { float: right; }
    .badge-ppg { display: none; }

    /* Filosofi Hero */
    .filosofi-hero { grid-template-columns: 1fr; gap: 40px; }
    .hero-kiri { position: static; text-align: center; }
    .hero-kiri h1 { font-size: 3rem; }
    .hero-kiri .hero-desc { text-align: center; }
    .pulse-icon-wrap { margin: 0 auto; }

    /* Literatur Flip Cards */
    .literatur-flip-grid { grid-template-columns: 1fr; }
    .literatur-flip-card { height: 320px; }

    /* Ideologi Grid */
    .ideologi-grid { grid-template-columns: 1fr; }

    /* Footer & Wrapper */
    .glass-footer { padding: 40px 5% 20px; }
    .footer-content { gap: 40px; grid-template-columns: 1fr; }
    .profil-content-wrapper { margin-top: 70vh; }
}

/* --- Mobile Kecil (< 768px) --- */
@media (max-width: 768px) {
    .section-title { font-size: 1.6rem; }
    .section-header { margin: 40px 0 30px; }
    .banner-text h1 { font-size: 2.8rem; }
    .banner-text p { font-size: 1rem; }
    .hero-kiri h1 { font-size: 2.5rem; }
    .konten-card { padding: 25px 20px; }
    .glass-footer { padding: 40px 5% 20px; }
    .footer-content { gap: 30px; grid-template-columns: 1fr; }
    .social-icon { width: 40px; height: 40px; font-size: 1rem; }
}

/* --- Sangat Kecil (< 576px) --- */
@media (max-width: 576px) {
    .social-icon { width: 36px; height: 36px; font-size: 1rem; }
    .footer-col h3 { font-size: 1.1rem; }
    .map-container iframe { height: 120px; }
    .banner-text h1 { font-size: 2.2rem; }
    .profil-content-wrapper { margin-top: 75vh; }
    .hero-kiri h1 { font-size: 2rem; }
    .badge-ideologi { font-size: 0.7rem; padding: 6px 14px; }
}
