/* --- VARIABLE & RESET --- */
:root {
    --primary-color: #007BFF;
    --secondary-color: #17a2b8;
    --dark-color: #212529;
    --light-color: #f8f9fa;
    --grey-color: #6c757d;
    --font-family: 'Poppins', sans-serif;
    --transition: all 0.3s ease-in-out;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: none; /* Sembunyikan kursor default */
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(to bottom, #2e67a1, #d9e7ff);
    background-attachment: fixed;
    color: var(--dark-color);
    line-height: 1.7;
    overflow-x: hidden; /* Mencegah scroll horizontal */
}

/* --- EFEK KURSOR --- */
.cursor-dot, .cursor-outline {
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: 11000;
    transition: opacity 0.3s, transform 0.3s;
}

.cursor-dot {
    width: 8px;
    height: 8px;
    background-color: var(--primary-color);
}

.cursor-outline {
    width: 30px;
    height: 30px;
    border: 5px solid hsla(0, 0%, 0%, 0.5);
    transition: width 0.3s, height 0.3s, border-color 0.3s, transform 0.1s;
}

/* --- GAYA UNTUK BACKGROUND PARTIKEL --- */
#particle-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    z-index: -2; /* Posisikan di belakang gelembung dan konten */
}


.bubble {
    position: absolute;
    bottom: -150px;
    background: rgba(20, 112, 249, 0.2);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: rise 1s infinite;
    opacity: 0;
}

@keyframes rise {
    0% {
        transform: translateY(0) translateX(0);
        opacity: 0;
    }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% {
        transform: translateY(-120vh) translateX(var(--x-end));
        opacity: 0;
    }
}


/* --- GAYA UMUM & SEAMLESS SECTION --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

a, button {
    cursor: none; /* Terapkan juga pada elemen yang bisa diklik */
}

ul { list-style: none; }
img { max-width: 100%; height: auto; }

.section-container {
    padding: 20px 0;
    background: transparent !important; /* Membuat semua section transparan & menyatu */
    border: none !important;
    box-shadow: none !important;
    position: relative;
    z-index: 2;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
    margin-top: 70px;
}

.section-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

/* --- HEADER & HERO --- */

.main-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 20px 0;
    transition: background-color 0.4s ease, padding 0.4s ease;
}

.main-header.scrolled {
    position: fixed;
    padding: 15px 0;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.1);
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-logo img {
    height: 50px;
    width: auto;
    display: block;
}

.main-nav ul { display: flex; }
.main-nav ul li a {
    color: #fff;
    margin: 0 15px;
    font-weight: 500;
    text-decoration: none;
}

.menu-toggle { display: none; }

.hero-section {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    position: relative;
    background-size: cover; /* Memastikan gambar menutupi area tanpa merusak rasio */
    background-position: center center; /* Selalu memusatkan gambar */
    background-attachment: fixed; /* Memberi efek parallax saat scroll */
}

.hero-content h1 {
    font-size: 4.5rem;
    font-weight: 800;
}

.hero-content p {
    font-size: 1.5rem;
    font-weight: 400;
    margin-top: 10px;
}

/* Efek Glow Teks */
.text-glow {
    color: #f0f0f0;
    text-shadow: 
        0 0 5px rgba(255, 255, 255, 0.7),
        0 0 15px rgba(0, 123, 255, 0.5),
        0 0 30px rgba(0, 123, 255, 0.4);
    animation: subtle-flicker 2s infinite alternate; 
}

@keyframes subtle-flicker {
    to {
        text-shadow: 
            0 0 5px rgba(255, 255, 255, 0.7),
            0 0 15px rgba(0, 123, 255, 0.5),
            0 0 40px rgba(0, 123, 255, 0.3);
    }
}

/* --- GALERI (MARQUEE SLIDER) --- */
.gallery-slider {
    max-width: none;
    width: 100vw; /* Lebar penuh viewport */
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    overflow: hidden;
    padding: 20px 0;
    -webkit-mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent);
    mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent);
}

.slider-wrapper {
    display: flex;
    width: fit-content;
    animation: marquee 40s linear infinite;
}

.gallery-slider:hover .slider-wrapper {
    animation-play-state: paused;
}

.slide {
    width: 350px;
    height: 250px;
    margin: 0 15px;
    flex-shrink: 0;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.slider-nav { display: none; }

@keyframes marquee {
    from { transform: translateX(0%); }
    to { transform: translateX(-50%); }
}

.tabs {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 50px;
    gap: 40px;
}

.tab-btn {
    font-size: 2.5rem;
    font-weight: 700;
    color: #6c757d;
    background: none;
    border: none;
    padding-bottom: 10px;
    position: relative;
}
.tab-btn:hover { color: #343a40; }
.tab-btn.active { color: var(--dark-color); }
.tab-btn.active::after { transform: scaleX(1); }
.tab-btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: var(--primary-color);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.content-view { display: none; }
.content-view.active { display: block; }


/* --- SECTION STRUKTUR & JADWAL --- */

.structure-image-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px 0; /* Beri sedikit ruang lebih di atas untuk pin */
    perspective: 2000px;
    position: relative; /* DIUBAH: Penting untuk memposisikan pin */
}

/* Gaya untuk gambar pin */
.structure-pin {
    position: absolute;
    top: 0;
    width: 60px; /* Ukuran pin */
    height: auto;
    z-index: 10; /* Pastikan pin di atas gambar struktur */
    /* Animasi 3D untuk pin */
    animation: pin-bob 3s ease-in-out infinite;
}

/* Gaya untuk gambar struktur */
.structure-image {
    max-width: 80%;
    height: auto;
    background: transparent;
    /* Transisi tetap ada untuk interaksi hover */
    transition: transform 0.8s cubic-bezier(0.075, 0.82, 0.165, 1), box-shadow 0.8s cubic-bezier(0.075, 0.82, 0.165, 1);
    
    /* DIUBAH: Animasi melayang menjadi atas-bawah sedikit */
    animation: floating-simple 4s ease-in-out infinite alternate;
}

/* Efek hover tetap ada, tapi tanpa rotasi 3D */
.structure-image-wrapper:hover .structure-image {
    transform: scale(1.05); /* Sedikit membesar saat di-hover */
    box-shadow: 0px 25px 50px rgba(0, 0, 0, 0.2);
    border-radius: 20px;
}

/* Keyframes untuk animasi pin */
@keyframes pin-bob {
    0% {
        transform: translateY(0px) rotateZ(5deg) rotateX(20deg);
    }
    50% {
        transform: translateY(-20px) rotateZ(-5deg) rotateX(0deg);
    }
    100% {
        transform: translateY(0px) rotateZ(5deg) rotateX(20deg);
    }
}

/* DIUBAH: Keyframes untuk animasi gambar struktur */
@keyframes floating-simple {
    from {
        transform: translateY(0px);
    }
    to {
        transform: translateY(-15px); /* Bergerak ke atas sedikit */
    }
}
/* --- GAYA UNTUK STRUKTUR & JADWAL (INTERAKTIF) --- */
#struktur-jadwal {
    background: transparent;
    padding-bottom: 120px;
}

.tabs-title {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 60px;
}

.tabs-title .tab-btn {
    font-size: 2.5rem;
    font-weight: 700;
    color: #a0a0a0;
    cursor: none;
    position: relative;
    padding-bottom: 10px;
    transition: color 0.4s ease;
}

.tabs-title .tab-btn.active {
    color: var(--dark-color);
}

.tabs-title .tab-btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--primary-color);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.4s ease;
}

.tabs-title .tab-btn.active::after {
    transform: scaleX(1);
}

.tabs-title .separator {
    font-size: 2rem;
    color: #ccc;
    font-weight: 300;
}

.content-wrapper {
    position: relative;
    overflow: hidden;
    /* BARU: Tambahkan transisi untuk tinggi agar perubahan ukuran berjalan mulus */
    transition: height 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

/* --- Animasi Konten (Slide Kiri-Kanan) --- */
.content-view {
    position: absolute;
    width: 100%;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.5s ease;
}

.content-view:not(.active) {
    transform: translateX(-100%); /* Posisi awal yang keluar */
    opacity: 0;
    pointer-events: none;
}
.content-view.exit-to-left {
    transform: translateX(-100%);
    opacity: 0;
}
.content-view.enter-from-right {
    transform: translateX(100%);
    opacity: 0;
}
.content-view.active {
    transform: translateX(0);
    opacity: 1;
}

/* --- Tampilan Jadwal Minimalis & Responsif --- */
.schedule-list-minimalist {
    max-width: 800px; /* Batasi lebar agar tidak terlalu panjang di desktop */
    margin: 0 auto;
    padding: 20px 0;
}

.schedule-day-title {
    font-size: 2rem;
    font-weight: 600;
    text-align: center;
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.schedule-day-title:first-child {
    margin-top: 0;
}

.schedule-list-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 15px;
    border-bottom: 1px solid #d1d1d1;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.schedule-list-item:hover {
    background-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.02);
    border-radius: 10px;
}

.subject-lecturer {
    display: flex;
    flex-direction: column;
}

.subject {
    font-size: 1.1rem;
    font-weight: 500;
}

.lecturer {
    font-size: 0.9rem;
    color: var(--grey-color);
    margin-top: 5px;
}

.time {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--primary-color);
    text-align: right;
    white-space: nowrap;
    margin-left: 20px;
}

/* --- Media Query untuk Tampilan Mobile --- */
@media (max-width: 600px) {
    .schedule-list-item {
        flex-direction: column; /* Ubah orientasi menjadi vertikal */
        align-items: flex-start; /* Ratakan ke kiri */
        gap: 10px;
    }

    .tabs-title .tab-btn {
        font-size: 1.8rem; /* Mengecilkan ukuran font judul tab */
    }

    .tabs-title .separator {
        font-size: 1.5rem; /* Mengecilkan ukuran simbol '&' */
    }

    @media (max-width: 400px) {
    .tabs-title .tab-btn {
        font-size: 1.5rem; /* Ukuran lebih kecil lagi untuk layar yang sangat sempit */
    }
    
    .tabs-title .separator {
        font-size: 1.2rem;
    }
}

    .time {
        margin-left: 0;
        width: 100%;
        text-align: left;
        background-color: #e9ecef;
        padding: 8px 10px;
        border-radius: 5px;
        font-size: 1rem;
    }
    
    .schedule-day-title {
        font-size: 1.5rem;
    }
}
/* --- KARYA (3D INTERACTIVE CARDS) --- */

.karya-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px; /* Memberi lebih banyak ruang untuk bayangan 3D */
    perspective: 1500px;
    padding-bottom:59px;
}

.karya-card {
    background-color: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transform-style: preserve-3d;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.karya-card:hover {
    box-shadow: 0 25px 50px rgba(0,0,0,0.2);
}

/* GAMBAR DIBUAT SEDIKIT MUNDUR UNTUK EFEK KEDALAMAN */
.karya-image {
    position: relative;
    height: 220px;
    transform: translateZ(-20px); /* BARU: Memberi ilusi kedalaman pada gambar */
}

.karya-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* KONTEN DIBERI RUANG 3D SENDIRI */
.karya-content {
    padding: 25px;
    transform-style: preserve-3d;
    text-align: center; /* DIUBAH: Teks menjadi di tengah */
}

/* JUDUL DIBUAT MENONJOL KE DEPAN */
.karya-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--dark-color);
    transform: translateZ(40px); /* BARU: Menonjol kuat ke depan */
}

/* DESKRIPSI JUGA MENONJOL & LEBIH KECIL */
.karya-content p {
    color: var(--grey-color);
    font-size: 0.85rem; /* DIUBAH: Ukuran tulisan lebih kecil */
    line-height: 1.6;
    transform: translateZ(20px); /* BARU: Menonjol sedikit ke depan */
}

/* OVERLAY DAN LINK DIBERI KEDALAMAN */
.karya-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-color: rgba(0, 123, 255, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: var(--transition);
    transform: translateZ(0); /* Pastikan overlay di posisi netral */
}

.karya-card:hover .karya-overlay {
    opacity: 1;
}

.karya-link {
    color: #fff;
    font-size: 2rem;
    transition: var(--transition);
    transform: translateZ(50px); /* BARU: Ikon link menjadi elemen paling depan */
}

/* --- GAYA CANGGIH UNTUK HALAMAN KARYA --- */

/* Wrapper untuk efek blur saat hover */
.karya-grid:hover .karya-card:not(:hover) {
    filter: blur(3px);
    transform: scale(0.95);
    opacity: 0.7;
}

/* Mengatur ulang gaya .karya-card dengan efek baru */
.karya-card {
    position: relative; /* Diperlukan untuk border-glow dan shine */
    overflow: hidden; /* Penting agar efek tidak keluar dari kartu */
    transition: filter 0.4s ease, transform 0.4s ease, opacity 0.4s ease; /* Transisi untuk efek blur */
}

/* EFEK KILATAN KACA (SHINE EFFECT) */
.card-shine {
    position: absolute;
    top: 0;
    left: -150%; /* Mulai dari luar kartu di sebelah kiri */
    width: 100%;
    height: 100%;
    background: linear-gradient(
        110deg,
        rgba(255, 255, 255, 0) 40%,
        rgba(255, 255, 255, 0.2) 50%,
        rgba(255, 255, 255, 0) 60%
    );
    transform: skewX(-25deg); /* Membuat kilatan miring */
    transition: left 0.8s ease;
}

.karya-card:hover .card-shine {
    left: 150%; /* Pindahkan kilatan ke kanan saat di-hover */
}

/* EFEK BORDER GLOW */
.karya-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 15px; /* Sesuaikan dengan border-radius kartu */
    padding: 2px; /* Lebar glow */
    background: radial-gradient(circle, 
        rgba(0, 123, 255, 0.6) 0%, 
        rgba(128, 0, 128, 0.4) 50%, 
        rgba(0, 123, 255, 0.6) 100%
    );
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.karya-card:hover::before {
    opacity: 1;
}

/* ANIMASI IN-OUT VERTIKAL SAAT SCROLL */
.page-content {
    padding-top: 70px; /* Jarak dari atas halaman */
}
.page-content .karya-card.animate-on-scroll {
    opacity: 0;
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

/* Aturan untuk kartu di posisi ganjil */
.page-content .karya-card:nth-child(odd).animate-on-scroll {
    transform: translateY(-80px); /* Muncul dari atas */
}

/* Aturan untuk kartu di posisi genap */
.page-content .karya-card:nth-child(even).animate-on-scroll {
    transform: translateY(80px); /* Muncul dari bawah */
}

/* Saat kartu terlihat di layar */
.page-content .karya-card.is-visible {
    opacity: 1;
    transform: translateY(0);
}



/* --- GAYA UNTUK TOMBOL "LIHAT SEMUA" & WRAPPERNYA --- */
.section-cta {
    text-align: center;
    margin-top: 20px; /* Jarak dari grid karya */
}

.btn-see-all {
    display: inline-block;
    padding: 5px 20px;
    border: 2px solid var(--dark-color);
    border-radius: 50px;
    color: #15451d;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.btn-see-all span {
    position: relative;
    z-index: 2; /* Pastikan teks di atas background animasi */
}

.btn-see-all i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

/* Background animasi yang akan mengisi tombol */
.btn-see-all::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: var(--primary-color);
    transition: width 0.4s ease;
    z-index: 1;
}

/* Efek saat di-hover */
.btn-see-all:hover {
    color: #fff; /* Warna teks menjadi putih */
}

.btn-see-all:hover::before {
    width: 100%; /* Animasi background mengisi penuh */
}

.btn-see-all:hover i {
    transform: translateX(5px); /* Panah sedikit bergeser */
}
/* ... (Sisa kode CSS untuk .footer, responsive, dll) ... */
.main-footer{
    background-color:var(--dark-color);
    color:var(--light-color);
    padding-top:60px
}
.footer-grid{
    display:grid;
    grid-template-columns:2fr 1fr 1.5fr;
    gap:40px;padding-bottom:40px
}
.footer-column.about p{
    color:#ccc;
    margin-top:15px;
    line-height:1.8
}
.footer-logo{
    font-size:1.5rem;
    font-weight:700
}
.footer-title{
    font-size:1.2rem;
    font-weight:600;
    margin-bottom:20px
}
.footer-column.links ul li{
    margin-bottom:10px
}
.footer-column.links ul li a{
    color:#ccc;
    transition:var(--transition)
}
.footer-column.links ul li a:hover{
    color:var(--primary-color);
    padding-left:5px
}
.footer-column.contact ul li{
    display:flex;
    align-items:center;
    margin-bottom:15px;
    color:#ccc
}
.footer-column.contact ul li i{
    margin-right:15px;
    width:20px;
    text-align:center
}
.footer-socials{
    margin-top:20px
}
.footer-socials a{
    color:#ccc;
    font-size:1.2rem;
    margin-right:15px;
    transition:var(--transition)
}
.footer-socials a:hover{
    color:var(--primary-color)
}
.footer-bottom{
    border-top:1px solid #444;
    text-align:center;
    padding:20px 0
}
.footer-bottom p{
    color:#ccc;
    font-size:.9rem
}
.footer-bottom .fa-heart{
    color:#e25555
}
@media (max-width:992px){
    .footer-grid{
        grid-template-columns:1fr 1fr
    }
}
@media (max-width:768px){
    .main-nav{
        position:absolute;
        top:100%;
        left:0;
        width:100%;
        background-color:var(--dark-color);
        max-height:0;
        overflow:hidden;
        transition:max-height .5s ease-in-out
    }
.main-nav.open{
    max-height:500px
}
.main-nav ul{
    flex-direction:column;
    padding:20px
}
.main-nav ul li{
    margin-bottom:15px
}
.menu-toggle{
    display:block
}
.hero-content h1{
    font-size:3rem
}
.hero-content p{
    font-size:1.2rem
}
.footer-grid{
    grid-template-columns:1fr
    ;text-align:center
}
.footer-column ul{
    justify-content:center
}
.footer-column.contact ul li{
    justify-content:center
}
}

    /* --- GAYA CANGGIH UNTUK HALAMAN GALERI (DENGAN PERBAIKAN POPUP) --- */

    /* Preloader Halaman */
    .page-preloader {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: #f0f4f8;
        display: flex;
        justify-content: center;
        align-items: center;
        z-index: 10000;
        transition: opacity 0.8s ease, visibility 0.8s ease;
        visibility: visible;
    }

    .page-preloader img {
        animation: zoom-out 1.2s ease-in-out forwards;
    }

    .page-preloader.hidden {
        opacity: 0;
        visibility: hidden;
    }

    @keyframes zoom-out {
        0% {
            transform: scale(0.5);
            opacity: 0;
        }

        50% {
            transform: scale(1.2);
            opacity: 1;
        }

        100% {
            transform: scale(5);
            opacity: 0;
        }
    }

    /* Konten Utama Halaman Galeri */
    .page-content-galeri {
        padding-top: 120px;
    }

    .gallery-hero-top {
        text-align: center;
        padding: 20px 0 60px;
    }

    .gallery-hero-top h1 {
        font-size: 3rem;
        font-weight: 700;
        margin-bottom: 15px;
    }

    .gallery-hero-top p {
        font-size: 1.1rem;
        color: var(--grey-color);
        max-width: 600px;
        margin: 0 auto;
    }

    /* Galeri Vertikal Accordion */
    .vertical-accordion {
        display: flex;
        width: 100%;
        height: 450px;
        gap: 10px;
        padding: 0 10px;
    }

    .va-panel {
        flex: 1;
        background-size: cover;
        background-position: center;
        border-radius: 15px;
        position: relative;
        overflow: hidden;
        cursor: none;
        transition: flex 0.7s cubic-bezier(0.05, 0.6, 0.4, 0.9);
    }

    .va-panel.active {
        flex: 7;
    }

    .va-content {
        position: absolute;
        bottom: 20px;
        left: 20px;
        color: white;
        background-color: rgba(0, 0, 0, 0.5);
        padding: 10px 15px;
        border-radius: 8px;
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 0.5s ease 0.5s, transform 0.5s ease 0.5s;
    }

    .va-panel.active .va-content {
        opacity: 1;
        transform: translateY(0);
    }

    .va-content span {
        font-size: 1.5rem;
        font-weight: 600;
        text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
    }

/* --PROFILE-- */

/* -- Wadah Grid Utama (3 KOLOM) -- */
.profile-grid-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    padding: 20px;
}

/* -- Wrapper untuk efek 3D -- */
.card-wrapper-3d {
    perspective: 1800px;
}

.profile-card {
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.5s ease-out;
    border-radius: 15px;
    /* Efek Glow akan muncul di sini dari ::before */
}

/* EFEK GLOW PADA BORDER */
.profile-card::before {
    content: '';
    position: absolute;
    inset: -2px; /* Sedikit lebih besar dari kartu */
    border-radius: 17px;
    /* Gradien untuk glow, akan muncul saat hover */
    background: linear-gradient(135deg, #3aff93, #ecfaa4, #e1ff00);
    background-size: 200% 200%;
    filter: blur(20px);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease-in-out, background-position 0.6s ease;
    animation: moveGradient 4s linear infinite;
}

.card-wrapper-3d:hover .profile-card::before {
    opacity: 0.8; /* Tampilkan glow saat hover */
}

@keyframes moveGradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* -- Konten Kartu -- */
.profile-card-content {
    width: 100%;
    height: 100%;
    background-color: #f8f9fa; /* Latar belakang putih bersih */
    border-radius: 15px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
    border: 1px solid #e0e0e0;
}

/* Dekorasi gradien cyan seperti pada gambar */
.profile-card-content::after {
    content: '';
    position: absolute;
    width: 150%;
    height: 150%;
    top: -90%;
    right: -70%;
    background: linear-gradient(135deg, rgba(0, 198, 255, 0.2), rgba(109, 213, 237, 0.05));
    border-radius: 50%;
    z-index: 0;
}

/* -- Header -- */
.card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    border-bottom: 1px solid #e9ecef;
    position: relative;
    z-index: 1;
}

.logo {
    height: 30px;
}

.company-name {
    font-weight: 600;
    color: #495057;
}

/* -- Body (Foto & Info) -- */
.card-body {
    flex-grow: 1;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    position: relative;
    z-index: 1;
}

.photo-wrapper {
    flex-shrink: 0;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.info-wrapper {
    flex-grow: 1;
    color: #212529;
}

.name {
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0 0 4px 0;
}

.role {
    font-size: 0.9rem;
    font-weight: 500;
    color: #007bff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0 0 15px 0;
}

.details {
    font-size: 0.85rem;
    color: #6c757d;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    padding: 3px 0;
}

.detail-item strong {
    color: #343a40;
    font-weight: 600;
}

/* -- Responsivitas -- */
@media (max-width: 1200px) {
    .profile-grid-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .profile-grid-container {
        grid-template-columns: 1fr;
    }
}