@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: #020307;
    --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 {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out;
}
.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. MODERN BIOGRAPHY SECTION
========================================= */
.container-inner {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
}

.cyan-line-title {
    width: 250px;
    height: 4px;
    background: var(--accent-cyan);
    margin: -20px auto 50px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(45, 212, 191, 0.6), 0 0 30px rgba(45, 212, 191, 0.4);
}

/* Narasi Asal */
.origin-narration-modern {
    position: relative;
    margin-bottom: 60px;
    padding-left: 30px;
    border-left: 4px solid var(--accent-cyan);
    border-image: linear-gradient(to bottom, var(--accent-cyan), transparent) 1;
}
.narration-glow-bg {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(45, 212, 191, 0.1) 0%, transparent 70%);
    z-index: -1;
    border-radius: 50%;
}
.origin-narration-modern p {
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--text-light);
    text-align: justify;
    opacity: 0.95;
    margin: 0;
    letter-spacing: 0.3px;
}

.text-highlight-cyan {
    color: var(--accent-cyan);
    font-weight: 600;
    text-shadow: 0 0 15px rgba(45, 212, 191, 0.4);
}
.text-highlight-purple {
    color: var(--accent-purple);
    font-weight: 600;
    text-shadow: 0 0 15px rgba(167, 139, 250, 0.4);
}

/* Grid Kartu Inspirasi & Tujuan */
.glass-grid-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

.glass-box-modern {
    position: relative;
    background: rgba(15, 23, 42, 0.4);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 40px;
    overflow: hidden;
    z-index: 1;
    transition: all 0.5s cubic-bezier(0.25, 1.5, 0.5, 1);
}

.card-cyan {
    animation: float-card 6s ease-in-out infinite;
    border-top: 2px solid rgba(45, 212, 191, 0.3);
}
.card-purple {
    animation: float-card 7s ease-in-out infinite 1s;
    border-top: 2px solid rgba(167, 139, 250, 0.3);
}

@keyframes float-card {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-12px);
    }
    100% {
        transform: translateY(0px);
    }
}

.card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    opacity: 0;
    transition: opacity 0.6s ease;
    z-index: -1;
    pointer-events: none;
}
.card-cyan .card-glow {
    background: radial-gradient(circle at center, rgba(45, 212, 191, 0.08) 0%, transparent 50%);
}
.card-purple .card-glow {
    background: radial-gradient(circle at center, rgba(167, 139, 250, 0.08) 0%, transparent 50%);
}

.glass-box-modern:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    animation-play-state: paused;
}
.card-cyan:hover {
    border-color: rgba(45, 212, 191, 0.5);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), inset 0 0 20px rgba(45, 212, 191, 0.05);
}
.card-purple:hover {
    border-color: rgba(167, 139, 250, 0.5);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), inset 0 0 20px rgba(167, 139, 250, 0.05);
}
.glass-box-modern:hover .card-glow {
    opacity: 1;
}

.box-head {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}
.icon-wrapper {
    width: 55px;
    height: 55px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    transition: all 0.4s ease;
}
.card-cyan .icon-wrapper {
    background: rgba(45, 212, 191, 0.1);
    color: var(--accent-cyan);
    box-shadow: 0 0 15px rgba(45, 212, 191, 0.2);
}
.card-purple .icon-wrapper {
    background: rgba(167, 139, 250, 0.1);
    color: var(--accent-purple);
    box-shadow: 0 0 15px rgba(167, 139, 250, 0.2);
}
.glass-box-modern:hover .icon-wrapper {
    transform: scale(1.1) rotate(5deg);
}

.box-head h3 {
    font-size: 1.4rem;
    margin: 0;
    color: var(--text-light);
    font-weight: 600;
}

.glass-box-modern p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    text-align: justify;
    margin: 0;
}

/* =========================================
   6. MOTTO RIBBON DIVIDER
========================================= */
.motto-ribbon-wrapper {
    width: 100vw;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    margin: 80px 0 100px 0;
    padding: 60px 0;
    background: rgba(10, 15, 25, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: center;
}
.motto-ribbon-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(45, 212, 191, 0.4), transparent);
}
.motto-ribbon-wrapper::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(167, 139, 250, 0.4), transparent);
}

.ribbon-glass {
    max-width: 900px;
    padding: 0 20px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.quote-icon-ribbon {
    font-size: 2.5rem;
    color: var(--accent-cyan);
    opacity: 0.6;
    margin-bottom: 20px;
}

.ribbon-text {
    font-size: 1.6rem;
    font-weight: 300;
    line-height: 1.7;
    color: #f8fafc;
    margin-bottom: 25px;
    font-style: italic;
    letter-spacing: 0.5px;
}

.ribbon-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}
.author-name {
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--text-light);
    text-transform: uppercase;
}
.author-role {
    font-size: 1.05rem;
    color: var(--accent-purple);
    font-weight: 500;
}

/* =========================================
   7. TOMBOL (BUTTONS)
========================================= */
.btn-hero {
    padding: 12px 28px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    z-index: 1;
}

.btn-primary {
    background: transparent;
    color: var(--bg-main);
    border: none;
    padding: 14px 30px;
    box-shadow: 0 4px 15px rgba(45, 212, 191, 0.3);
}
.btn-primary::after {
    content: '';
    position: absolute;
    inset: 0px;
    background: var(--accent-cyan);
    border-radius: inherit;
    z-index: -1;
    transition: all 0.4s ease;
}
.btn-primary:hover::after {
    inset: 2px;
    background: #0f172a;
}
.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200%;
    padding-bottom: 200%;
    background: conic-gradient(transparent, transparent, transparent, var(--accent-cyan));
    z-index: -2;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.btn-primary:hover {
    color: var(--accent-cyan);
    box-shadow: 0 8px 25px rgba(15, 23, 42, 0.6);
    transform: translateY(-4px);
}
.btn-primary:hover::before {
    opacity: 1;
    animation: borderRotate 1.5s linear infinite;
}
.btn-primary i {
    transition: transform 0.3s ease;
}
.btn-primary:hover i {
    transform: translateX(5px);
}

.btn-kontak {
    padding: 14px 35px;
    font-size: 0.95rem;
    letter-spacing: 1px;
    margin-top: auto;
    align-self: flex-start;
}

.btn-outline-cyan {
    background: transparent !important;
    border: 1px solid var(--accent-cyan) !important;
    color: var(--accent-cyan) !important;
}
.btn-outline-cyan:hover {
    background: rgba(45, 212, 191, 0.1) !important;
    color: #ffffff !important;
    transform: translateY(-4px);
}

@keyframes borderRotate {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* =========================================
   8. KOMPONEN GLOBAL PROFIL
========================================= */
.profil-content-wrapper {
    position: relative;
    z-index: 10;
    display: block !important;
    width: 100%;
    margin-top: 65vh;
    padding: 0 5% 50px 5%;
    background: transparent;
    min-height: 100vh;
}

.section-profil {
    padding: 60px 0 20px 0;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    z-index: 20;
}

.section-title {
    text-align: center;
    font-size: 2.2rem;
    color: var(--text-light);
    margin-bottom: 40px;
    font-weight: 600;
}

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

/* =========================================
   9. BANNER PARALLAX PROFIL
========================================= */
.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;
}

/* =========================================
   10. KARTU PROFIL UTAMA
========================================= */
.profil-utama-card {
    display: flex;
    flex-direction: row;
    gap: 50px;
    padding: 50px;
    align-items: stretch;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    border-radius: 30px;
}

/* Bagian Foto Kiri */
.profil-image-section {
    position: relative;
    flex: 0 0 420px;
    max-width: 420px;
    display: flex;
    flex-direction: column;
    margin-bottom: 0;
}

.profil-image-wrapper {
    position: relative;
    z-index: 1;
    width: 100%;
    flex: 1;
    margin-bottom: 25px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    background: transparent;
    --cw: 165px;
    --ch: 90px;
    --r: 20px;
    -webkit-mask-image: linear-gradient(#000, #000), linear-gradient(#000, #000), linear-gradient(#000, #000), linear-gradient(#000, #000), radial-gradient(circle at bottom right, transparent calc(var(--r) - 0.5px), #000 var(--r)), radial-gradient(circle at top left, #000 calc(var(--r) - 0.5px), transparent var(--r)), radial-gradient(circle at top left, #000 calc(var(--r) - 0.5px), transparent var(--r));
    -webkit-mask-size: 100% calc(100% - var(--ch) - var(--r)), calc(100% - var(--cw) - var(--r)) 100%, calc(var(--cw) - var(--r)) var(--r), var(--r) calc(var(--ch) - var(--r)), var(--r) var(--r), var(--r) var(--r), var(--r) var(--r);
    -webkit-mask-position: top 0 left 0, top 0 left 0, bottom var(--ch) right var(--r), bottom var(--r) right var(--cw), bottom var(--ch) right var(--cw), bottom var(--ch) right 0, bottom 0 right var(--cw);
    -webkit-mask-repeat: no-repeat;
    mask-image: linear-gradient(#000, #000), linear-gradient(#000, #000), linear-gradient(#000, #000), linear-gradient(#000, #000), radial-gradient(circle at bottom right, transparent calc(var(--r) - 0.5px), #000 var(--r)), radial-gradient(circle at top left, #000 calc(var(--r) - 0.5px), transparent var(--r)), radial-gradient(circle at top left, #000 calc(var(--r) - 0.5px), transparent var(--r));
    mask-size: 100% calc(100% - var(--ch) - var(--r)), calc(100% - var(--cw) - var(--r)) 100%, calc(var(--cw) - var(--r)) var(--r), var(--r) calc(var(--ch) - var(--r)), var(--r) var(--r), var(--r) var(--r), var(--r) var(--r);
    mask-position: top 0 left 0, top 0 left 0, bottom var(--ch) right var(--r), bottom var(--r) right var(--cw), bottom var(--ch) right var(--cw), bottom var(--ch) right 0, bottom 0 right var(--cw);
    mask-repeat: no-repeat;
}
.profil-image-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: transform 0.5s ease, filter 0.5s ease;
}
.profil-image-section:hover .profil-image-wrapper img {
    transform: scale(1.05);
    filter: grayscale(0);
}

/* Badge & Floating Cards */
.profil-badge {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 145px;
    background: #0f172a;
    border: 1px solid rgba(45, 212, 191, 0.3);
    padding: 18px 0;
    border-radius: 16px;
    z-index: 2;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}
.profil-image-section:hover .profil-badge {
    border-color: var(--accent-cyan);
    transform: translateY(-5px);
}
.badge-year {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--accent-cyan);
    line-height: 1.1;
}
.badge-text {
    font-size: 0.7rem;
    color: var(--text-light);
    letter-spacing: 1.5px;
    font-weight: 600;
}

.hover-float-card {
    position: absolute;
    background: rgba(10, 10, 15, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 10px 18px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(15px);
    opacity: 0;
    pointer-events: none;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 10;
}
.hover-float-card i {
    color: var(--accent-cyan);
}
.card-pak-nur {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.5);
}
.card-mas-guru {
    top: 50%;
    right: 50%;
    transform: translate(50%, -50%) scale(0.5);
}
.profil-image-section:hover .card-pak-nur {
    opacity: 1;
    top: 220px;
    left: -35px;
    transform: translate(0, 0) scale(1);
}
.profil-image-section:hover .card-mas-guru {
    opacity: 1;
    top: 50px;
    right: -35px;
    transform: translate(0, 0) scale(1);
}

/* Bagian Teks Kanan */
.profil-text-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}
.modern-layout {
    padding-left: 20px;
    align-items: flex-start;
    text-align: left;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 25px;
}
.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: var(--accent-cyan);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--accent-cyan);
    animation: pulse 1.5s infinite;
}
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(45, 212, 191, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(45, 212, 191, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(45, 212, 191, 0);
    }
}

.hero-name {
    margin-bottom: 5px;
    line-height: 1.3;
}
.hello-text {
    font-size: 3rem;
    font-weight: 600;
    color: #ffffff;
    display: inline;
    margin-right: 8px;
    text-transform: none;
}
.gradient-name {
    display: inline;
    font-size: 3.2rem;
    font-weight: 800;
    text-transform: uppercase;
    background: linear-gradient(90deg, var(--accent-cyan), #3b82f6);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.hero-role {
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--text-light);
    margin-bottom: 15px;
    margin-top: 5px;
}
.typing-cursor {
    color: var(--accent-cyan);
    font-weight: 300;
    animation: blink 1s step-end infinite;
}
@keyframes blink {
    50% {
        opacity: 0;
    }
}

.hero-bio {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 25px;
    text-align: left;
    max-width: 100%;
}

.hero-info-tags {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 35px;
}
.hero-info-tags span {
    font-size: 0.9rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 8px;
}
.hero-info-tags i {
    color: var(--accent-cyan);
}

.hero-actions {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
    align-items: center;
}
.hero-actions .btn-kontak {
    margin: 0;
}

.hero-divider {
    width: 100%;
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 20px;
}

.hero-socials {
    display: flex;
    align-items: center;
    gap: 15px;
}
.social-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-right: 10px;
}
.hero-socials a {
    color: var(--text-light);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}
.hero-socials a:hover {
    color: var(--accent-cyan);
    transform: translateY(-3px);
}

/* =========================================
   11. TIMELINE PENDIDIKAN
========================================= */
.timeline-left-layout.wide-timeline {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 40px auto;
    padding-left: 50px;
}

.timeline-line-left {
    position: absolute;
    left: 24px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: rgba(45, 212, 191, 0.2);
    box-shadow: 0 0 10px rgba(45, 212, 191, 0.2);
}

.timeline-item-left {
    position: relative;
    width: 100%;
    margin-bottom: 40px;
}

.timeline-icon-dot {
    position: absolute;
    left: -50px;
    top: 30px;
    width: 48px;
    height: 48px;
    background: rgba(15, 23, 42, 0.9);
    border: 2px solid var(--accent-cyan);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--accent-cyan);
    z-index: 2;
    box-shadow: 0 0 15px rgba(45, 212, 191, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.timeline-item-left .timeline-card {
    margin: 0;
    padding: 35px 40px;
    position: relative;
    overflow: hidden;
    width: 100%;
}

/* Layout Flex Lebar */
.card-header-wide {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}
.card-titles-wide {
    flex: 0 0 auto;
    max-width: 60%;
}
.card-titles-wide h3 {
    font-size: 1.5rem;
    color: var(--text-light);
    margin-bottom: 8px;
    line-height: 1.3;
    font-weight: 700;
}
.study-program {
    color: var(--accent-purple);
    font-weight: 500;
    font-size: 1.05rem;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.tech-spacer-line {
    flex: 1;
    height: 2px;
    background: repeating-linear-gradient(to right, rgba(45, 212, 191, 0.3) 0, rgba(45, 212, 191, 0.3) 8px, transparent 8px, transparent 16px);
    opacity: 0.7;
    margin: 0 10px;
    transition: all 0.4s ease;
}

.card-meta-wide {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}

.card-year-badge {
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-blue));
    color: #020617;
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.95rem;
    white-space: nowrap;
    box-shadow: 0 5px 15px rgba(45, 212, 191, 0.3);
}

.location-tag {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* Efek Gambar & Deskripsi Hover */
.hover-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    z-index: 0;
    transition: all 0.6s ease;
    transform: scale(1.2);
}

.card-content {
    position: relative;
    z-index: 1;
}

.hover-desc {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    margin: 0;
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
    line-height: 1.7;
    border-left: 3px solid var(--accent-cyan);
    padding-left: 15px;
    transition: all 0.5s ease;
}

/* Animasi Hover Timeline */
.timeline-item-left:hover .timeline-icon-dot {
    background: var(--accent-cyan);
    color: #020617;
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 0 25px rgba(45, 212, 191, 0.6);
}
.timeline-item-left:hover .timeline-card {
    border-color: rgba(45, 212, 191, 0.5);
    transform: translateX(10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}
.timeline-item-left:hover .tech-spacer-line {
    opacity: 1;
    background: repeating-linear-gradient(to right, rgba(45, 212, 191, 0.8) 0, rgba(45, 212, 191, 0.8) 8px, transparent 8px, transparent 16px);
}
.timeline-item-left:hover .hover-bg-img {
    opacity: 0.15;
    transform: scale(1);
}
.timeline-item-left:hover .hover-desc {
    max-height: 150px;
    opacity: 1;
    margin-top: 25px;
}

/* =========================================
   12. GRID KEAHLIAN
========================================= */
.keahlian-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.keahlian-card {
    text-align: center;
}

.icon-keahlian {
    font-size: 2.5rem;
    color: var(--accent-cyan);
    margin-bottom: 20px;
    filter: drop-shadow(0 0 8px rgba(45, 212, 191, 0.4));
}

.keahlian-card h4 {
    color: var(--text-light);
    font-size: 1.2rem;
    margin-bottom: 10px;
}

/* =========================================
   13. SECTION SUBTITLE
========================================= */
.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    font-size: 1.05rem;
    max-width: 700px;
    margin: -25px auto 50px;
    line-height: 1.6;
    letter-spacing: 0.3px;
}

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

/* =========================================
   15. RESPONSIVE BREAKPOINTS
========================================= */
/* --- Tablet (max-width: 1199px) --- */
@media (max-width: 1199px) {
    .glass-grid-container {
        gap: 30px;
    }
    .glass-box-modern {
        padding: 30px;
    }
    .section-title {
        font-size: 2rem;
    }
    .profil-utama-card {
        gap: 40px;
        padding: 40px;
    }
    .profil-image-section {
        flex: 0 0 350px;
        max-width: 350px;
    }
    .banner-text h1 {
        font-size: 3.2rem;
    }
    .hero-name .hello-text {
        font-size: 2.4rem;
    }
    .hero-name .gradient-name {
        font-size: 2.6rem;
    }
}

/* --- Perangkat Mobile Besar / Tablet Potrait (< 992px) --- */
@media (max-width: 992px) {
    .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;
    }

    .profil-utama-card {
        flex-direction: column !important;
        padding: 40px 20px !important;
        gap: 40px !important;
        text-align: center;
    }

    /* === PERBAIKAN FOTO MOBILE === */
    .profil-image-section {
        flex: 0 0 auto !important;
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
        display: block;                /* UBAH KE BLOCK */
    }
    .profil-image-wrapper {
        height: 350px;
        /* Hapus mask sepenuhnya */
        mask: none !important;
        -webkit-mask: none !important;
        border-radius: 20px;
        overflow: hidden;
        position: relative;
    }
    .profil-image-wrapper img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    /* ===== Kartu "Pak Nur" & "Mas Guru" di Mobile ===== */
.hover-float-card {
    display: flex !important;       /* tetap flex agar bisa diatur */
    opacity: 0 !important;         /* sembunyikan dulu */
    pointer-events: none;          /* tidak bisa diklik langsung */
    transform: scale(0.85);
    transition: opacity 0.3s ease;
    backdrop-filter: blur(8px);
    background: rgba(10, 10, 15, 0.8);
}

/* Posisi default (sama seperti desktop, tapi kita atur ulang) */
.card-pak-nur {
    top: auto;
    bottom: 15px;
    left: 15px;
    right: auto;
    transform: none !important;
}
.card-mas-guru {
    top: 15px;
    right: 15px;
    left: auto;
    bottom: auto;
    transform: none !important;
}
.profil-image-section:hover .card-pak-nur {
    height: 40px;
}

/* Tampilkan saat parent (.profil-image-section) memiliki class .hovered */
.profil-image-section.hovered .hover-float-card {
    opacity: 1 !important;
    pointer-events: auto;
}
    .profil-text-section,
    .modern-layout {
        padding-left: 0 !important;
        align-items: center;
        text-align: center;
        display: flex;
        flex-direction: column;
    }
    .hero-bio {
        text-align: center !important;
    }
    .hero-info-tags,
    .hero-actions,
    .hero-socials {
        justify-content: center;
        flex-wrap: wrap;
    }

    .glass-grid-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .glass-footer {
        padding: 40px 5% 20px;
    }
    .footer-content {
        gap: 40px;
        grid-template-columns: 1fr;
    }

    .card-header-wide {
        flex-direction: column;
        align-items: flex-start;
    }
    .tech-spacer-line {
        display: none;
    }
    .card-meta-wide {
        align-items: flex-start;
        margin-top: 5px;
        flex-direction: row-reverse;
        align-items: center;
        justify-content: space-between;
        width: 100%;
    }
    .card-titles-wide {
        max-width: 100%;
    }
    .profil-content-wrapper {
        margin-top: 70vh;
    }
}

/* --- Perangkat Mobile Kecil (< 768px) --- */
@media (max-width: 768px) {
    .section-title {
        font-size: 1.9rem;
    }
    .cyan-line-title {
        width: 180px;
    }
    .section-subtitle {
        font-size: 0.95rem;
        padding: 0 20px;
        margin-bottom: 40px;
    }
    .origin-narration-modern {
        padding-left: 20px;
    }
    .origin-narration-modern p {
        font-size: 1rem;
        line-height: 1.8;
    }
    .motto-ribbon-wrapper {
        padding: 40px 0;
        margin: 60px 0 80px 0;
    }
    .quote-icon-ribbon {
        font-size: 2rem;
        margin-bottom: 15px;
    }
    .ribbon-text {
        font-size: 1.3rem;
        line-height: 1.6;
    }
    .ribbon-author {
        flex-direction: column;
        gap: 5px;
    }

    .banner-text h1 {
        font-size: 2.8rem;
    }
    .banner-text p {
        font-size: 1rem;
    }

    .profil-utama-card {
        padding: 30px 15px !important;
    }
    .hero-name .hello-text {
        font-size: 2rem;
    }
    .hero-name .gradient-name {
        font-size: 2.2rem;
    }

    .profil-image-wrapper {
        height: 300px; /* sedikit lebih kecil */
    }

    .timeline-left-layout.wide-timeline {
        padding-left: 40px;
    }
    .timeline-line-left {
        left: 19px;
    }
    .timeline-icon-dot {
        width: 38px;
        height: 38px;
        left: -39px;
        font-size: 1rem;
        top: 25px;
    }
    .timeline-item-left .timeline-card {
        padding: 25px 20px;
    }
    .card-titles-wide h3 {
        font-size: 1.25rem;
    }
    .study-program {
        font-size: 0.95rem;
    }
    .card-year-badge {
        padding: 6px 15px;
        font-size: 0.85rem;
    }
    .card-meta-wide {
        flex-direction: column-reverse;
        align-items: flex-start;
    }

    .keahlian-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .glass-footer {
        padding: 40px 5% 20px;
    }
    .footer-content {
        gap: 30px;
        grid-template-columns: 1fr;
    }
    .social-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

/* --- Perangkat Sangat Kecil (< 576px) --- */
@media (max-width: 576px) {
    .btn-hero {
        width: 100%;
        font-size: 0.8rem;
        padding: 10px;
        justify-content: center;
    }
    .hero-actions {
        flex-direction: column;
        gap: 12px;
    }
    .social-icon {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }
    .profil-badge {
        right: -10px;
        bottom: -15px;
        width: 100px;
    }
    .profil-badge .badge-year {
        font-size: 20px;
    }
    .profil-badge .badge-text {
        font-size: 10px;
    }
    .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;
    }

    .profil-image-wrapper {
        height: 280px;
    }
}