/* ===== CSS VARIABLES ===== */
:root {
    --primary: #6366f1;
    --primary-dark: #4f46e5;
    --primary-light: #818cf8;
    --secondary: #8b5cf6;
    --accent: #ec4899;
    --bg-body: #f8fafc;
    --bg-container: #ffffff;
    --bg-card: #f8fafc;
    --bg-nav: rgba(255, 255, 255, 0.95);
    --text-primary: #0f172a;
    --text-secondary: #1e293b;
    --text-muted: #64748b;
    --text-light: #475569;
    --border-color: #e2e8f0;
    --shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.15);
    --shadow-hover: 0 25px 50px -12px rgba(99, 102, 241, 0.25);
    --radius: 2rem;
    --radius-sm: 1.2rem;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --hologram-opacity: 0.15;
    --nav-height: 70px;
}

[data-theme="dark"] {
    --bg-body: #0a0a1a;
    --bg-container: #111128;
    --bg-card: #1a1a3e;
    --bg-nav: rgba(17, 17, 40, 0.95);
    --text-primary: #f1f5f9;
    --text-secondary: #e2e8f0;
    --text-muted: #94a3b8;
    --text-light: #cbd5e1;
    --border-color: #2d2d5e;
    --shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.5);
    --shadow-hover: 0 25px 50px -12px rgba(99, 102, 241, 0.15);
    --hologram-opacity: 0.25;
}

/* ===== RESET & GLOBAL ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--nav-height);
}

body {
    font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
    background: var(--bg-body);
    color: var(--text-secondary);
    line-height: 1.7;
    padding: 0;
    transition: background 0.4s ease, color 0.4s ease;
    min-height: 100vh;
    padding-top: var(--nav-height);
}

/* ===== NAVIGASI STICKY ===== */
.navbar-sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--nav-height);
    background: var(--bg-nav);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    z-index: 9999;
    transition: all 0.3s ease;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.navbar-sticky.scrolled {
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.12);
}

.nav-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo a {
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-logo a i {
    color: #3b82f6;
    font-size: 1.5rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    align-items: center;
}

.nav-menu li a {
    text-decoration: none;
    font-weight: 600;
    color: var(--text-muted);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    transition: var(--transition);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border-bottom: 3px solid transparent;
}

.nav-menu li a i {
    font-size: 1rem;
}

.nav-menu li a:hover {
    color: var(--text-primary);
    background: rgba(99, 102, 241, 0.08);
}

.nav-menu li a.active {
    color: #ffffff;
    background: #3b82f6;
    box-shadow: 0 8px 20px -8px #3b82f6;
}

.nav-menu li a.active i {
    color: #ffffff;
}

/* ===== HAMBURGER MENU ===== */
.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    padding: 5px;
    z-index: 100;
}

.nav-toggle span {
    display: block;
    width: 28px;
    height: 3px;
    background: var(--text-primary);
    border-radius: 3px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

/* ===== RESPONSIVE NAV ===== */
@media (max-width: 820px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--bg-nav);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 80px 2rem 2rem;
        gap: 0.5rem;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);
        overflow-y: auto;
        align-items: flex-start;
    }

    .nav-menu.open {
        right: 0;
    }

    .nav-menu li {
        width: 100%;
    }

    .nav-menu li a {
        padding: 0.8rem 1rem;
        width: 100%;
        border-radius: 0.8rem;
        font-size: 1rem;
    }

    .nav-menu li a span {
        display: inline;
    }

    /* Overlay saat menu terbuka */
    .nav-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.3);
        z-index: 9998;
    }

    .nav-overlay.active {
        display: block;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 1rem;
    }

    .nav-logo a {
        font-size: 1.1rem;
    }

    .nav-logo a span {
        display: none;
    }

    .nav-menu {
        width: 100%;
        right: -100%;
        padding: 70px 1.5rem 1.5rem;
    }

    .nav-menu li a {
        font-size: 0.9rem;
        padding: 0.6rem 0.8rem;
    }
}

/* ===== CONTAINER ===== */
.container {
    max-width: 1100px;
    margin: 0 auto;
    background: var(--bg-container);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 2.5rem 2rem;
    transition: background 0.4s ease, box-shadow 0.4s ease;
    position: relative;
    overflow: hidden;
}

/* ===== PRELOADER ===== */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-body);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.6s ease;
}

#preloader.hidden {
    opacity: 0;
    pointer-events: none;
}

.loader {
    width: 50px;
    height: 50px;
    border: 4px solid var(--border-color);
    border-top: 4px solid #3b82f6;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ===== THEME TOGGLE ===== */
.theme-toggle {
    position: fixed;
    top: calc(var(--nav-height) + 1rem);
    right: 2rem;
    z-index: 1000;
    background: var(--bg-container);
    border: 2px solid var(--border-color);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--text-primary);
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.theme-toggle:hover {
    transform: scale(1.1) rotate(15deg);
    border-color: #3b82f6;
}

/* ===== HOLOGRAM DI BAWAH ELEMEN ===== */
.hologram-under {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.4rem 1.2rem;
    border-radius: 2rem;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: var(--hologram-opacity);
    transition: opacity 0.3s ease;
    pointer-events: none;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    background: rgba(255, 255, 255, 0.05);
    animation: hologramGlow 3s ease-in-out infinite alternate;
}

.hologram-under i {
    font-size: 1.2rem;
}

.hologram-under:hover {
    opacity: 0.6;
}

@keyframes hologramGlow {
    0% { opacity: var(--hologram-opacity); transform: scale(1); }
    50% { opacity: calc(var(--hologram-opacity) * 1.5); transform: scale(1.02); }
    100% { opacity: var(--hologram-opacity); transform: scale(1); }
}

.hologram-tech { animation-delay: 0s; }
.hologram-book { animation-delay: 0.8s; }
.hologram-solidarity { animation-delay: 1.6s; }
.hologram-intellectual { animation-delay: 2.4s; }

.hologram-tech {
    color: #3b82f6;
    border-color: rgba(59, 130, 246, 0.3);
    background: rgba(59, 130, 246, 0.08);
}
.hologram-tech i { color: #3b82f6; }

.hologram-book {
    color: #8b5cf6;
    border-color: rgba(139, 92, 246, 0.3);
    background: rgba(139, 92, 246, 0.08);
}
.hologram-book i { color: #8b5cf6; }

.hologram-intellectual {
    color: #eab308;
    border-color: rgba(234, 179, 8, 0.3);
    background: rgba(234, 179, 8, 0.08);
}
.hologram-intellectual i { color: #eab308; }

.hologram-solidarity {
    color: #22c55e;
    border-color: rgba(34, 197, 94, 0.3);
    background: rgba(34, 197, 94, 0.08);
}
.hologram-solidarity i { color: #22c55e; }

/* ===== LIGHTBOX ===== */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.92);
    z-index: 100000;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    animation: lightboxFade 0.3s ease;
}

.lightbox.active {
    display: flex;
}

@keyframes lightboxFade {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

.lightbox-content {
    max-width: 90%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 0.5rem;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    animation: lightboxZoom 0.3s ease;
}

@keyframes lightboxZoom {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.lightbox-close {
    position: absolute;
    top: 2rem;
    right: 2.5rem;
    color: #fff;
    font-size: 3rem;
    font-weight: 300;
    cursor: pointer;
    transition: var(--transition);
    z-index: 100001;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.lightbox-close:hover {
    transform: rotate(90deg);
    background: rgba(255, 255, 255, 0.2);
}

.lightbox-caption {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-size: 1.1rem;
    background: rgba(0, 0, 0, 0.6);
    padding: 0.6rem 1.8rem;
    border-radius: 2rem;
    backdrop-filter: blur(10px);
    text-align: center;
    max-width: 80%;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 1.5rem;
    pointer-events: none;
}

.lightbox-nav button {
    pointer-events: auto;
    background: rgba(255, 255, 255, 0.15);
    border: none;
    color: #fff;
    font-size: 2rem;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-nav button:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.lightbox-counter {
    position: absolute;
    top: 2rem;
    left: 2.5rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    font-weight: 500;
}

/* ===== OVERLAY UNTUK GAMBAR ===== */
.avatar {
    position: relative;
    cursor: pointer;
    overflow: hidden;
}

.avatar-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    opacity: 0;
    transition: var(--transition);
    border-radius: 50%;
    z-index: 3;
}

.avatar-overlay i {
    font-size: 2rem;
    margin-bottom: 0.3rem;
}

.avatar-overlay span {
    font-size: 0.7rem;
    font-weight: 500;
}

.avatar:hover .avatar-overlay {
    opacity: 1;
}

.org-logo {
    position: relative;
    cursor: pointer;
    overflow: hidden;
}

.org-logo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    opacity: 0;
    transition: var(--transition);
    border-radius: 50%;
}

.org-logo:hover .org-logo-overlay {
    opacity: 1;
}

.certificate-card {
    position: relative;
    cursor: pointer;
    overflow: hidden;
}

.certificate-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    opacity: 0;
    transition: var(--transition);
    border-radius: var(--radius-sm);
}

.certificate-overlay i {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.certificate-overlay span {
    font-size: 0.85rem;
    font-weight: 500;
}

.certificate-card:hover .certificate-overlay {
    opacity: 1;
}

/* ===== MODAL ORGANISASI ===== */
.org-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 100000;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    animation: modalFadeIn 0.3s ease;
}

.org-modal.active {
    display: flex;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.org-modal-content {
    background: var(--bg-container);
    border-radius: var(--radius);
    max-width: 750px;
    width: 100%;
    max-height: 85vh;
    overflow-y: auto;
    padding: 2.5rem;
    position: relative;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-color);
    transition: background 0.4s ease, border-color 0.4s ease;
}

.org-modal-content::-webkit-scrollbar {
    width: 6px;
}

.org-modal-content::-webkit-scrollbar-track {
    background: var(--bg-body);
    border-radius: 10px;
}

.org-modal-content::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 10px;
}

.org-modal-close {
    position: sticky;
    top: 0;
    float: right;
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
    line-height: 1;
    background: var(--bg-container);
    padding: 0 0.5rem;
    border-radius: 50%;
}

.org-modal-close:hover {
    color: var(--text-primary);
    transform: rotate(90deg);
}

.org-modal-body {
    padding-top: 0.5rem;
}

.org-modal-body .org-modal-header {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--border-color);
}

.org-modal-body .org-modal-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #fff;
}

.org-modal-body .org-modal-title h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-primary);
}

.org-modal-body .org-modal-title p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.org-modal-body .org-detail-section {
    margin-bottom: 1.2rem;
}

.org-modal-body .org-detail-section h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.3rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.org-modal-body .org-detail-section h4 i {
    font-size: 1rem;
    width: 1.5rem;
}

.org-modal-body .org-detail-section p,
.org-modal-body .org-detail-section li {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
}

.org-modal-body .org-detail-section ul {
    list-style: none;
    padding-left: 0;
}

.org-modal-body .org-detail-section ul li {
    padding: 0.3rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.org-modal-body .org-detail-section ul li::before {
    content: "▸";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 700;
}

.org-modal-body .org-tag {
    display: inline-block;
    padding: 0.2rem 0.8rem;
    border-radius: 2rem;
    font-size: 0.75rem;
    font-weight: 600;
    margin-right: 0.4rem;
    margin-bottom: 0.3rem;
}

/* ===== LOGO KECIL DI HEADER ORGANISASI ===== */
.org-logo-small {
    position: relative;
}

.org-logo-small:hover .org-logo-overlay-small {
    opacity: 1 !important;
}

/* ===== SECTION ===== */
section {
    display: none;
    animation: fadeUp 0.5s ease forwards;
    margin-top: 0.5rem;
}

section.active {
    display: block;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.section-tag {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 0.3rem 1rem;
    border-radius: 2rem;
    margin-bottom: 0.5rem;
}

.section-header h2 {
    font-size: 2.2rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    margin-bottom: 0.5rem;
}

.section-desc {
    color: var(--text-muted);
    font-size: 1.05rem;
}

/* ===== HOME ===== */
.profile-wrap {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 3rem;
    margin-bottom: 2.5rem;
}

.avatar-wrapper {
    position: relative;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
}

.avatar {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 40px -8px rgba(59, 130, 246, 0.4);
    animation: float 6s ease-in-out infinite;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6, #ec4899);
}

.avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    position: relative;
    z-index: 2;
}

.avatar .avatar-fallback {
    display: none;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6, #ec4899);
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 4.5rem;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.avatar img:not([src]), 
.avatar img[src=""],
.avatar img[src="#"],
.avatar img.error {
    display: none;
}

.avatar img:not([src]) ~ .avatar-fallback,
.avatar img[src=""] ~ .avatar-fallback,
.avatar img[src="#"] ~ .avatar-fallback,
.avatar img.error ~ .avatar-fallback {
    display: flex;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

.status-dot {
    position: absolute;
    bottom: 8px;
    right: 8px;
    width: 20px;
    height: 20px;
    background: #22c55e;
    border-radius: 50%;
    border: 3px solid var(--bg-container);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.3); opacity: 0.7; }
}

.intro-text {
    flex: 1;
}

.greeting {
    font-size: 1.1rem;
    display: block;
    margin-bottom: 0.2rem;
}

.intro-text h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 0.3rem;
}

.tagline {
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.typing-text::after {
    content: '|';
    animation: blink 0.8s step-end infinite;
}

@keyframes blink {
    50% { opacity: 0; }
}

.intro-text p {
    max-width: 500px;
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.intro-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.7rem 1.8rem;
    border-radius: 60px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: var(--transition);
    border: 2px solid transparent;
    cursor: pointer;
}

.btn.primary-blue {
    background: #3b82f6;
    color: #fff;
    border-color: #3b82f6;
}

.btn.primary-blue:hover {
    background: #1d4ed8;
    border-color: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 12px 24px -8px #3b82f6;
}

.btn.outline-blue {
    background: transparent;
    color: #3b82f6;
    border-color: #3b82f6;
}

.btn.outline-blue:hover {
    background: #3b82f6;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 12px 24px -8px #3b82f6;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 1.2rem;
    transition: var(--transition);
    border: none;
}

.social-icons a:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px -8px rgba(0, 0, 0, 0.3);
}

/* ===== STATS BAR ===== */
.stats-bar {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1.5rem;
    background: var(--bg-card);
    padding: 1.5rem 2rem;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-color);
    transition: background 0.4s ease, border-color 0.4s ease;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* ===== ABOUT SECTION ===== */
.about-section {
    margin-bottom: 2rem;
    border-radius: var(--radius-sm);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.about-section:last-child {
    margin-bottom: 0;
}

.about-section-header {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    padding: 1.2rem 1.8rem;
    color: #fff;
    border-radius: var(--radius-sm) var(--radius-sm) 0 0;
}

.about-section-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #fff;
}

.about-section-header h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.1rem;
}

.about-section-content {
    background: var(--bg-card);
    padding: 1.5rem;
    border-left: 2px solid var(--border-color);
    border-right: 2px solid var(--border-color);
    border-bottom: 2px solid var(--border-color);
    border-radius: 0 0 var(--radius-sm) var(--radius-sm);
}

.about-desc-card p {
    color: var(--text-light);
}

.about-education-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.education-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: var(--bg-body);
    border-radius: 0.8rem;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.education-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.edu-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.edu-info h4 {
    font-size: 0.95rem;
    margin-bottom: 0.1rem;
    color: var(--text-primary);
}

.edu-info h4 a {
    transition: all 0.2s ease;
}

.edu-info h4 a:hover {
    text-decoration: underline !important;
    opacity: 0.8;
}

.edu-year {
    font-size: 0.75rem;
    font-weight: 600;
}

.edu-info p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ===== SKILLS ===== */
.skill-group {
    margin-bottom: 2rem;
    border-radius: var(--radius-sm);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.skill-group:last-child {
    margin-bottom: 0;
}

.skill-group-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem 1.5rem;
    color: #fff;
    border-radius: var(--radius-sm) var(--radius-sm) 0 0;
}

.skill-group-header i {
    font-size: 1.5rem;
}

.skill-group-header h3 {
    font-size: 1rem;
    font-weight: 600;
}

.skills-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.2rem;
    background: var(--bg-card);
    padding: 1.5rem;
    border: 2px solid var(--border-color);
    border-top: none;
    border-radius: 0 0 var(--radius-sm) var(--radius-sm);
    transition: background 0.4s ease, border-color 0.4s ease;
}

.skill-item {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.skill-icon {
    font-size: 1.5rem;
}

.skill-item span {
    font-weight: 500;
    color: var(--text-secondary);
}

.skill-level {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.skill-bar {
    width: 100%;
    height: 6px;
    background: var(--bg-body);
    border-radius: 10px;
    overflow: hidden;
}

.skill-progress {
    height: 100%;
    border-radius: 10px;
    transition: width 1.5s ease;
}

/* ===== ORGANIZATION SECTION ===== */
.org-section {
    margin-bottom: 2.5rem;
    border-radius: var(--radius-sm);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.org-section:last-child {
    margin-bottom: 0;
}

.org-section-header {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    padding: 1.2rem 1.8rem;
    color: #fff;
    border-radius: var(--radius-sm) var(--radius-sm) 0 0;
}

.org-section-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #fff;
}

.org-section-header h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.1rem;
}

.org-section-content {
    background: var(--bg-card);
    padding: 1.5rem;
    border-left: 2px solid var(--border-color);
    border-right: 2px solid var(--border-color);
    border-bottom: 2px solid var(--border-color);
    border-radius: 0 0 var(--radius-sm) var(--radius-sm);
}

.org-section .organization-card {
    border: 2px solid var(--border-color);
    margin-bottom: 0;
}

.org-section .organization-card:last-child {
    margin-bottom: 0;
}

.organization-card {
    background: var(--bg-card);
    border-radius: var(--radius-sm);
    padding: 1.8rem;
    border: 2px solid var(--border-color);
    transition: var(--transition);
    display: flex;
    gap: 1.2rem;
    align-items: flex-start;
}

.organization-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}

.org-logo {
    width: 60px;
    height: 60px;
    min-width: 60px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid var(--border-color);
    background: var(--bg-body);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: pointer;
}

.org-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.org-content {
    flex: 1;
}

.org-content h3 {
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
    color: var(--text-primary);
}

.org-position {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.1rem 0.8rem;
    border-radius: 2rem;
    margin-bottom: 0.2rem;
}

.org-period {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.org-desc {
    font-size: 0.95rem;
    margin-bottom: 0.8rem;
    line-height: 1.6;
    color: var(--text-light);
}

.org-achievements {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1rem;
}

.org-achievements span {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.org-achievements i {
    color: inherit;
}

/* ===== CERTIFICATE ===== */
.certificate-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.8rem;
}

.certificate-card {
    background: var(--bg-card);
    border-radius: var(--radius-sm);
    overflow: hidden;
    border: 2px solid var(--border-color);
    transition: var(--transition);
    position: relative;
    cursor: pointer;
}

.certificate-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}

.certificate-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    background: var(--bg-body);
}

.certificate-info {
    padding: 1rem 1.2rem;
}

.certificate-info h4 {
    font-size: 1rem;
    margin-bottom: 0.2rem;
    color: var(--text-primary);
}

.certificate-info p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ===== CONTACT ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    padding: 1rem 1.2rem;
    background: var(--bg-card);
    border-radius: var(--radius-sm);
    border: 2px solid var(--border-color);
    transition: var(--transition);
}

.contact-item:hover {
    transform: translateX(6px);
}

.contact-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.contact-item h4 {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-muted);
}

.contact-item a {
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.contact-item a:hover {
    text-decoration: underline;
}

.contact-form {
    background: var(--bg-card);
    padding: 1.8rem;
    border-radius: var(--radius-sm);
    border: 2px solid var(--border-color);
    transition: background 0.4s ease, border-color 0.4s ease;
}

.contact-form h3 {
    margin-bottom: 1.2rem;
    color: var(--text-primary);
}

.contact-form p {
    color: var(--text-light);
}

.contact-note {
    margin-top: 2rem;
    background: var(--bg-card);
    padding: 1.2rem 1.8rem;
    border-radius: var(--radius-sm);
    border: 2px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    transition: background 0.4s ease, border-color 0.4s ease;
}

.contact-note i {
    font-size: 1.2rem;
}

.contact-note span {
    color: var(--text-light);
}

/* ===== FOOTER ===== */
.footer-note {
    margin-top: 2.8rem;
    text-align: center;
    font-size: 0.9rem;
    border-top: 2px solid var(--border-color);
    padding-top: 1.8rem;
    transition: border-color 0.4s ease;
}

.footer-note p {
    color: var(--text-muted);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 820px) {
    .grid-2 {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .container {
        padding: 1.5rem 1rem;
    }
    .organization-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .org-achievements {
        justify-content: center;
    }
    .about-education-grid {
        grid-template-columns: 1fr;
    }
    .skills-wrapper {
        grid-template-columns: 1fr 1fr;
        padding: 1rem;
    }
    .theme-toggle {
        top: calc(var(--nav-height) + 0.5rem);
        right: 1rem;
        width: 42px;
        height: 42px;
        font-size: 1.1rem;
    }

    /* Modal Responsive */
    .org-modal {
        padding: 1rem;
    }
    .org-modal-content {
        padding: 1.5rem;
        max-height: 90vh;
    }
    .org-modal-close {
        font-size: 2rem;
    }
    .org-modal-body .org-modal-header {
        flex-direction: column;
        text-align: center;
        gap: 0.8rem;
    }
    .org-modal-body .org-modal-title h3 {
        font-size: 1.1rem;
    }

    /* Organisasi Header Responsive */
    .org-section-header {
        flex-direction: column !important;
        text-align: center;
        padding: 1rem !important;
    }

    .org-section-header > div:first-child {
        flex-direction: column !important;
        text-align: center;
    }

    .org-section-header > div:last-child {
        margin-top: 0.3rem;
        font-size: 0.75rem;
    }
}

@media (max-width: 640px) {
    .profile-wrap {
        flex-direction: column;
        text-align: center;
        gap: 1.8rem;
    }
    .intro-text p {
        margin: 0 auto;
    }
    .intro-actions {
        justify-content: center;
    }
    .social-icons {
        justify-content: center;
    }
    .avatar {
        width: 130px;
        height: 130px;
        font-size: 4rem;
    }
    .intro-text h1 {
        font-size: 2.2rem;
    }
    .section-header h2 {
        font-size: 1.6rem;
    }
    .stats-bar {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        padding: 1rem;
    }
    .skills-wrapper {
        grid-template-columns: 1fr;
        padding: 0.8rem;
    }
    .organization-grid {
        grid-template-columns: 1fr;
    }
    .certificate-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }
    .certificate-card img {
        height: 150px;
    }

    .about-section-header {
        flex-direction: column;
        text-align: center;
        padding: 1rem;
    }
    .about-section-header h3 {
        font-size: 0.95rem;
    }
    .about-section-content {
        padding: 1rem;
    }

    .org-section-header {
        flex-direction: column !important;
        text-align: center;
        padding: 1rem !important;
    }

    .org-section-header > div:first-child {
        flex-direction: column !important;
        text-align: center;
    }

    .org-section-header > div:last-child {
        margin-top: 0.3rem;
        font-size: 0.75rem;
    }

    .org-section-content {
        padding: 1rem;
    }
    .skill-group-header {
        padding: 0.6rem 1rem;
    }
    .skill-group-header h3 {
        font-size: 0.9rem;
    }

    .lightbox-content {
        max-width: 95%;
        max-height: 70vh;
    }
    .lightbox-close {
        top: 1rem;
        right: 1rem;
        font-size: 2rem;
        width: 40px;
        height: 40px;
    }
    .lightbox-caption {
        font-size: 0.9rem;
        padding: 0.4rem 1rem;
        bottom: 1.5rem;
        max-width: 90%;
    }
    .lightbox-nav button {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    .lightbox-counter {
        top: 1rem;
        left: 1rem;
        font-size: 0.8rem;
    }
}

@media (max-width: 400px) {
    .stats-bar {
        grid-template-columns: 1fr 1fr;
        gap: 0.8rem;
        padding: 0.8rem;
    }
    .stat-number {
        font-size: 1.5rem;
    }
    .certificate-grid {
        grid-template-columns: 1fr;
    }
    .certificate-card img {
        height: 180px;
    }
    .about-education-grid {
        grid-template-columns: 1fr;
    }
}