@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); }

/* Active nav link for Dokumentasi */
.nav-item.active-page { color: var(--accent-cyan); }
.nav-item.active-page::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. BANNER PARALLAX
========================================= */
.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 .text-cyan { color: var(--accent-cyan); }
.banner-text p { font-size: 1.2rem; color: var(--text-hover); letter-spacing: 1px; margin-top: -15px; }

/* =========================================
   6. 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: 2.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; }

/* =========================================
   7. GALERI FOTO — GRID MASONRY
========================================= */
.galeri-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 10px 0;
}

.galeri-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
    aspect-ratio: 4 / 3;
}

.galeri-item.tall {
    grid-row: span 2;
    aspect-ratio: auto;
}

.galeri-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease, filter 0.4s ease;
}

.galeri-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 50px rgba(6, 182, 212, 0.15), 0 15px 35px rgba(0, 0, 0, 0.5);
    border-color: rgba(45, 212, 191, 0.4);
    z-index: 5;
}

.galeri-item:hover img {
    transform: scale(1.1);
    filter: brightness(0.7);
}

/* Label badge on gallery items */
.galeri-label {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(45, 212, 191, 0.9);
    color: var(--bg-main);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    z-index: 3;
    backdrop-filter: blur(5px);
    box-shadow: 0 2px 8px rgba(45, 212, 191, 0.4);
}

.galeri-label.purple {
    background: rgba(167, 139, 250, 0.9);
}

.galeri-label.blue {
    background: rgba(96, 165, 250, 0.9);
}

/* Overlay info on hover */
.galeri-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 25px 18px 18px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, transparent 100%);
    z-index: 2;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.galeri-item:hover .galeri-overlay {
    transform: translateY(0);
}

.galeri-overlay h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 4px;
}

.galeri-overlay p {
    font-size: 0.78rem;
    color: var(--text-muted);
    line-height: 1.4;
}

/* Zoom icon on hover */
.galeri-zoom {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 55px;
    height: 55px;
    background: rgba(45, 212, 191, 0.85);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--bg-main);
    z-index: 3;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.3s ease;
    opacity: 0;
    box-shadow: 0 5px 20px rgba(45, 212, 191, 0.4);
}

.galeri-item:hover .galeri-zoom {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}

/* =========================================
   8. LIGHTBOX / MODAL FOTO
========================================= */
.lightbox-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.lightbox-modal.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    position: relative;
    max-width: 85vw;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.lightbox-img {
    max-width: 100%;
    max-height: 70vh;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
    transition: transform 0.4s ease, opacity 0.3s ease;
    user-select: none;
}

.lightbox-modal.active .lightbox-img {
    animation: lightboxZoomIn 0.4s ease forwards;
}

@keyframes lightboxZoomIn {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.lightbox-caption {
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 15px 30px;
    text-align: center;
    max-width: 600px;
}

.lightbox-caption h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 5px;
}

.lightbox-caption .lightbox-counter {
    font-size: 0.85rem;
    color: var(--accent-cyan);
    font-weight: 500;
}

/* Navigation arrows */
.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 55px;
    height: 55px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    backdrop-filter: blur(5px);
}

.lightbox-nav:hover {
    background: rgba(45, 212, 191, 0.3);
    border-color: var(--accent-cyan);
    box-shadow: 0 0 20px rgba(45, 212, 191, 0.3);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-prev { left: -80px; }
.lightbox-next { right: -80px; }

/* Close button */
.lightbox-close {
    position: fixed;
    top: 30px;
    right: 40px;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10001;
    backdrop-filter: blur(5px);
}

.lightbox-close:hover {
    background: rgba(239, 68, 68, 0.4);
    border-color: rgba(239, 68, 68, 0.6);
    transform: rotate(90deg) scale(1.1);
}

/* Thumbnail strip */
.lightbox-thumbs {
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 85vw;
    padding-top: 10px;
}

.lightbox-thumb {
    width: 60px;
    height: 45px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    opacity: 0.5;
}

.lightbox-thumb.active {
    border-color: var(--accent-cyan);
    opacity: 1;
    box-shadow: 0 0 12px rgba(45, 212, 191, 0.4);
}

.lightbox-thumb:hover {
    opacity: 0.9;
    transform: scale(1.05);
}

.lightbox-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* =========================================
   9. VIDEO YOUTUBE SECTION
========================================= */
.video-section {
    margin-top: 20px;
}

.video-carousel-wrapper {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.video-player-container {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 ratio */
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
    background: rgba(0, 0, 0, 0.5);
}

.video-player-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Video info bar */
.video-info-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 5px;
    gap: 15px;
}

.video-title-area {
    flex: 1;
}

.video-title-area h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 3px;
}

.video-title-area p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.video-counter {
    font-size: 0.85rem;
    color: var(--accent-cyan);
    font-weight: 600;
    white-space: nowrap;
    background: rgba(45, 212, 191, 0.1);
    border: 1px solid rgba(45, 212, 191, 0.25);
    padding: 6px 16px;
    border-radius: 20px;
}

/* Video navigation buttons */
.video-nav-controls {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 5px;
}

.video-nav-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    text-decoration: none;
}

.video-nav-btn:hover {
    background: rgba(45, 212, 191, 0.15);
    border-color: var(--accent-cyan);
    color: var(--accent-cyan);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(45, 212, 191, 0.2);
}

.video-nav-btn:disabled,
.video-nav-btn.disabled {
    opacity: 0.3;
    cursor: not-allowed;
    pointer-events: none;
}

/* Video thumbnail list */
.video-thumb-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 25px;
}

.video-thumb-card {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid rgba(255, 255, 255, 0.06);
    background: rgba(255, 255, 255, 0.03);
    transition: all 0.3s ease;
}

.video-thumb-card.active {
    border-color: var(--accent-cyan);
    box-shadow: 0 0 20px rgba(45, 212, 191, 0.25);
}

.video-thumb-card:hover {
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-4px);
}

.video-thumb-img {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.video-thumb-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.video-thumb-card:hover .video-thumb-img img {
    transform: scale(1.08);
}

.video-play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background: rgba(45, 212, 191, 0.85);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: var(--bg-main);
    box-shadow: 0 3px 12px rgba(45, 212, 191, 0.4);
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.video-thumb-card:hover .video-play-icon,
.video-thumb-card.active .video-play-icon {
    opacity: 1;
}

.video-thumb-info {
    padding: 10px 12px;
}

.video-thumb-info h5 {
    font-size: 0.8rem;
    font-weight: 600;
    color: #fff;
    line-height: 1.3;
    margin-bottom: 3px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.video-thumb-info span {
    font-size: 0.7rem;
    color: var(--text-muted);
}

/* Now Playing indicator */
.video-thumb-card.active .video-thumb-info::before {
    content: "▶ Sedang Diputar";
    display: block;
    font-size: 0.65rem;
    color: var(--accent-cyan);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

/* =========================================
   10. 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; }

/* =========================================
   11. UTILITY
========================================= */
.text-cyan { color: var(--accent-cyan) !important; }
.text-blue { color: var(--accent-blue) !important; }
.text-purple { color: var(--accent-purple) !important; }

/* Divider section */
.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: 60px 0;
    color: var(--text-muted);
}

.section-divider::before,
.section-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}

.section-divider i {
    font-size: 1rem;
    color: var(--accent-cyan);
    opacity: 0.6;
}

/* Pre-footer bridge */
.pre-footer-bridge {
    text-align: center;
    padding: 40px 0;
}

/* =========================================
   12. MEDIA QUERIES
========================================= */

/* --- Tablet (max-width: 1199px) --- */
@media (max-width: 1199px) {
    .section-title { font-size: 2rem; }
    .banner-text h1 { font-size: 3.2rem; }
    .galeri-grid { gap: 15px; }
}

/* --- 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; }

    /* Gallery */
    .galeri-grid { grid-template-columns: repeat(2, 1fr); }
    .galeri-item.tall { grid-row: span 1; aspect-ratio: 4 / 3; }

    /* Video */
    .video-thumb-list { grid-template-columns: repeat(2, 1fr); }

    /* Lightbox */
    .lightbox-prev { left: 10px; }
    .lightbox-next { right: 10px; }
    .lightbox-nav { width: 45px; height: 45px; font-size: 1.2rem; }

    /* Footer */
    .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; }

    .galeri-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
    .galeri-overlay { transform: translateY(0); }
    .galeri-zoom { display: none; }
    
    .video-nav-btn { padding: 10px 20px; font-size: 0.85rem; }
    .video-title-area h4 { font-size: 0.95rem; }
    .video-info-bar { flex-direction: column; align-items: flex-start; }

    .lightbox-close { top: 15px; right: 15px; width: 42px; height: 42px; }
    .lightbox-thumbs { display: none; }

    .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; }
    
    .galeri-grid { grid-template-columns: 1fr; gap: 15px; }
    .galeri-item { aspect-ratio: 16 / 10; }
    .galeri-item.tall { aspect-ratio: 16 / 10; }
    
    .video-thumb-list { grid-template-columns: 1fr; }
    .video-nav-controls { gap: 10px; }
    .video-nav-btn { padding: 10px 18px; font-size: 0.8rem; }
    
    .lightbox-prev { left: 5px; }
    .lightbox-next { right: 5px; }
    .lightbox-nav { width: 40px; height: 40px; font-size: 1rem; }
    .lightbox-caption { padding: 12px 20px; }
    .lightbox-caption h4 { font-size: 0.9rem; }
}
