/* Additional animations */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.scroll-arrow {
    width: 24px;
    height: 24px;
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-top: none;
    border-left: none;
    transform: rotate(45deg);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) rotate(45deg);
    }
    40% {
        transform: translateY(-10px) rotate(45deg);
    }
    60% {
        transform: translateY(-5px) rotate(45deg);
    }
}

/* Loading animation */
body {
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

/* Mobile optimizations */
@media (max-width: 768px) {
    .navbar-custom {
        padding: 0.4rem 0.7rem;
    }
    .hero-section {
        padding-top: 80px;
    }
    
    .hero-text-content {
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .particle {
        display: none;
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #0a0a0a;
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
}

/* Animated Background */
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e  25%, #16213e  50%, #0f0f23 75%, #0a0a0a 100%);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 40% 40%, rgba(120, 219, 255, 0.2) 0%, transparent 50%);
    animation: float 20s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes float {
    0%, 100% { transform: translate(0px, 0px) rotate(0deg); }
    33% { transform: translate(30px, -30px) rotate(120deg); }
    66% { transform: translate(-20px, 20px) rotate(240deg); }
}

/* Navbar */
.navbar-custom {
    background: rgba(10, 10, 10, 0.97);
    backdrop-filter: blur(24px);
    border-bottom: 1.5px solid rgba(120, 119, 198, 0.15);
    padding: 0.6rem 1.2rem;
    box-shadow: 0 4px 24px 0 rgba(120,119,198,0.10), 0 1.5px 0 0 #7877c6;
    position: relative;
    z-index: 1000;
    transition: background 0.3s, box-shadow 0.3s;
}

.navbar-brand {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 800;
    font-size: 1.25rem;
    color: #fff !important;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    letter-spacing: 1px;
}

.navbar-brand img {
    width: 32px;
    height: 32px;
    filter: drop-shadow(0 0 8px rgba(120, 119, 198, 0.7));
    transition: transform 0.2s;
}
.navbar-brand img:hover {
    transform: scale(1.08) rotate(-6deg);
}

.nav-link {
    color: rgba(255, 255, 255, 0.85) !important;
    font-weight: 600;
    margin: 0 0.7rem;
    transition: all 0.25s cubic-bezier(.4,2,.6,1);
    position: relative;
    font-size: 1rem;
    letter-spacing: 0.5px;
    padding: 0.5rem 0.3rem;
    border-radius: 8px;
}

.nav-link:hover, .nav-link.active {
    color: #fff !important;
    background: linear-gradient(90deg, #7877c6 0%, #ff77c6 100%);
    box-shadow: 0 2px 16px 0 rgba(120,119,198,0.13);
    transform: translateY(-2px) scale(1.05);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 20%;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #7877c6, #ff77c6);
    border-radius: 2px;
    transition: width 0.3s;
}

.nav-link:hover::after, .nav-link.active::after {
    width: 60%;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 85vh; /* sebelumnya 100vh */
    min-height: 500px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.typing-cursor {
    font-weight: bold;
    color:rgb(255, 255, 255)3;
    margin-left: 2px;
}

.hero-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(rem, 7vw, 5rem);
    font-weight: 800;
    background: linear-gradient(135deg, #ffffff 0%, #7877c6 50%, #ff77c6 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    animation: slideInUp 1s ease-out;
}

.hero-subtitle {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
    margin-bottom: 2rem;
    animation: slideInUp 1s ease-out 0.2s both;
}

.hero-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 3rem;
    max-width: 500px;
    animation: slideInUp 1s ease-out 0.4s both;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: slideInUp 1s ease-out 0.6s both;
}

.btn-primary-custom {
    background: linear-gradient(135deg, #7877c6 0%, #ff77c6 100%);
    border: none;
    padding: 12px 32px;
    border-radius: 50px;
    font-weight: 600;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(120, 119, 198, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-primary-custom::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-primary-custom:hover::before {
    left: 100%;
}

.btn-primary-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(120, 119, 198, 0.4);
    color: white;
}

.btn-outline-custom {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 12px 32px;
    border-radius: 50px;
    font-weight: 600;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-outline-custom:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #7877c6;
    transform: translateY(-3px);
    color: white;
}

/* Logo Section */
.hero-logo-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.hero-logo {
    width: clamp(200px, 30vw, 400px);
    height: auto;
    filter: drop-shadow(0 0 30px rgba(120, 119, 198, 0.6));
    animation: logoFloat 3s ease-in-out infinite, slideInRight 1s ease-out;
}

.logo-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(120, 119, 198, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

/* Floating particles */
.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(120, 119, 198, 0.6);
    border-radius: 50%;
    animation: particleFloat 8s linear infinite;
}

.particle:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
.particle:nth-child(2) { top: 60%; left: 20%; animation-delay: 2s; }
.particle:nth-child(3) { top: 40%; left: 80%; animation-delay: 4s; }
.particle:nth-child(4) { top: 80%; left: 70%; animation-delay: 6s; }

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes logoFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

@keyframes pulse {
    0%, 100% { opacity: 0.3; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.6; transform: translate(-50%, -50%) scale(1.1); }
}

@keyframes particleFloat {
    0% { transform: translateY(0px) rotate(0deg); opacity: 1; }
    100% { transform: translateY(-100vh) rotate(360deg); opacity: 0; }
}

/* Section Divisi MPK */
.divisi-section {
    background: linear-gradient(135deg, #1a1a2e 0%, #0f0f23 100%);
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    position: relative;
    z-index: 2;
}

.section-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(90deg, #7877c6, #ff77c6);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 2rem;
    letter-spacing: 1px;
}

.divisi-tabs .nav-link {
    color: #fff;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    background: transparent;
    border: none;
    border-bottom: 2px solid transparent;
    margin: 0 0.5rem;
    transition: all 0.3s;
    border-radius: 0;
    font-size: 1.1rem;
    padding: 0.75rem 1.5rem;
    position: relative;
}

.divisi-tabs .nav-link.active,
.divisi-tabs .nav-link:hover {
    color: #ff77c6;
    border-bottom: 2.5px solid #ff77c6;
    background: linear-gradient(90deg, rgba(120,119,198,0.15), rgba(255,119,198,0.10));
}

.divisi-tab-content {
    background: rgba(10,10,20,0.7);
    border-radius: 1.5rem;
    box-shadow: 0 8px 32px rgba(120,119,198,0.10);
    padding: 2.5rem 2rem;
    margin-top: 1rem;
    min-height: 320px;
    animation: fadeIn 0.8s;
}

.divisi-logo {
    width: 180px;
    height: 180px;
    object-fit: contain;
    border-radius: 50%;
    background: linear-gradient(135deg, #7877c6 0%, #ff77c6 100%);
    box-shadow: 0 0 48px 0 rgba(120,119,198,0.30), 0 8px 32px rgba(255,119,198,0.10);
    padding: 24px;
    margin-bottom: 1rem;
    animation: logoFloat 3s ease-in-out infinite;
    transition: transform 0.2s;
}
.divisi-logo:hover {
    transform: scale(1.08) rotate(3deg);
}


.divisi-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.7rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
    background: linear-gradient(90deg, #7877c6, #ff77c6);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.divisi-desc {
    color: rgba(255,255,255,0.85);
    font-size: 1.1rem;
    font-weight: 400;
    line-height: 1.7;
    margin-bottom: 0;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(30px);}
    to { opacity: 1; transform: translateY(0);}
}

/* Carousel Anggota Divisi */
.anggota-carousel {
    max-width: 180px;
    margin-left: auto;
    margin-right: auto;
}
.anggota-img {
    width: 140px;
    height: 140px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid #fff;
    box-shadow: 0 4px 24px rgba(120,119,198,0.18);
    background: #222;
    margin: 0 auto;
    transition: transform 0.2s;
}
.anggota-img:hover {
    transform: scale(1.07) rotate(-2deg);
}
.carousel-caption {
    background: rgba(10,10,30,0.7);
    border-radius: 1rem;
    padding: 0.5rem 1rem;
    bottom: -10px;
}
.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: #7877c6;
    border-radius: 50%;
    padding: 8px;
}
.carousel-control-prev,
.carousel-control-next {
    width: 32px;
}

/* Carousel Anggota Divisi Wide */
.anggota-carousel-wide {
    width: 100%;
    max-width: 100%;
    padding: 24px 0 0 0;
    margin: 0 auto 24px auto;
    background: rgba(30,30,50,0.15);
    border-radius: 1.2rem;
    box-shadow: 0 2px 16px rgba(120,119,198,0.08);
}
.anggota-card {
    background: rgba(255,255,255,0.04);
    border-radius: 1rem;
    padding: 22px 18px 14px 18px;
    margin: 0 6px;
    box-shadow: 0 2px 12px rgba(120,119,198,0.07);
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 170px;
    max-width: 210px;
    flex: 1 1 150px;
    transition: transform 0.2s;
}
.anggota-card:hover {
    transform: scale(1.06) rotate(-2deg);
    background: rgba(120,119,198,0.08);
}
.anggota-img-wide {
    width: 130px;
    height: 130px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid #fff;
    box-shadow: 0 2px 12px rgba(120,119,198,0.13);
    background: #222;
    margin-bottom: 10px;
    transition: transform 0.2s;
}
.anggota-img-wide:hover {
    transform: scale(1.09) rotate(2deg);
}
.anggota-caption {
    color: #fff;
    text-align: center;
    margin-top: 4px;
}
.anggota-caption h5 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 2px;
    background: linear-gradient(90deg, #7877c6, #ff77c6);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.anggota-caption p {
    font-size: 0.95rem;
    color: #ccc;
    margin-bottom: 0;
}

/* Responsive carousel anggota wide */
@media (max-width: 992px) {
    .anggota-card {
        min-width: 130px;
        max-width: 160px;
        padding: 12px 8px 8px 8px;
    }
    .anggota-img-wide {
        width: 90px;
        height: 90px;
    }
}
@media (max-width: 768px) {
    .hero-section {
        height: auto;
        min-height: 100vh;
        padding: 2rem 0;
    }
    .anggota-carousel-wide {
        padding: 12px 0 0 0;
    }
    .anggota-card {
        min-width: 100px;
        max-width: 120px;
        padding: 7px 3px 5px 3px;
    }
    .anggota-img-wide {
        width: 60px;
        height: 60px;
    }
    .anggota-caption h5 {
        font-size: 0.85rem;
    }
    .anggota-caption p {
        font-size: 0.75rem;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .hero-section {
        height: auto;
        min-height: 100vh;
        padding: 2rem 0;
    }
    
    .cta-buttons {
        justify-content: center;
    }
    
    .hero-logo {
        margin-top: 3rem;
    }
}

/* Style utama sekarang untuk Divisi */
.cta-buttons a.btn-primary-custom {
    background: linear-gradient(135deg, #7877c6 0%, #ff77c6 100%);
    border: none;
    padding: 12px 32px;
    border-radius: 50px;
    font-weight: 600;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(120, 119, 198, 0.3);
    position: relative;
    overflow: hidden;
}

.cta-buttons a.btn-primary-custom::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.cta-buttons a.btn-primary-custom:hover::before {
    left: 100%;
}

.cta-buttons a.btn-primary-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(120, 119, 198, 0.4);
    color: white;
}

/* Style outline sekarang untuk Isi Angket Aspirasi */
.cta-buttons a.btn-outline-custom {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 12px 32px;
    border-radius: 50px;
    font-weight: 600;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-buttons a.btn-outline-custom:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #7877c6;
    transform: translateY(-3px);
    color: white;
}

/* Section Kabinet */
.kabinet-section {
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 100%);
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    position: relative;
    z-index: 2;
}

.kabinet-logo-container {
    position: relative;
    display: inline-block;
}

.kabinet-logo {
    width: 280px;
    height: 280px;
    object-fit: contain;
    border-radius: 50%;
    background: linear-gradient(135deg, #7877c6 0%, #ff77c6 100%);
    box-shadow: 0 0 48px 0 rgba(120,119,198,0.30), 0 8px 32px rgba(255,119,198,0.10);
    padding: 24px;
    animation: logoFloat 3s ease-in-out infinite;
    transition: transform 0.3s;
    z-index: 2;
    position: relative;
}

.kabinet-logo:hover {
    transform: scale(1.05) rotate(2deg);
}

.logo-glow-kabinet {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    height: 90%;
    background: radial-gradient(circle, rgba(120, 119, 198, 0.25) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
    z-index: 1;
}

.kabinet-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(90deg, #7877c6, #ff77c6);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

.symbol-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #ff77c6;
    margin-bottom: 0.5rem;
}

.symbol-desc {
    color: rgba(255,255,255,0.85);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0;
}

.kabinet-motto {
    background: rgba(10,10,20,0.7);
    border: 1px solid rgba(120, 119, 198, 0.2);
    box-shadow: 0 8px 32px rgba(120,119,198,0.10);
}

.motto-text {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(90deg, #7877c6, #ff77c6);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0;
}

.motto-desc {
    color: rgba(255,255,255,0.85);
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Open Recruitment Section */
.open-recruitment-section {
    background: linear-gradient(135deg, #1a1a2e 0%, #0f0f23 100%);
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    position: relative;
    z-index: 2;
    padding: 5rem 0;
}
.openrec-card {
    background: rgba(255,255,255,0.04);
    border-radius: 1.5rem;
    box-shadow: 0 8px 32px rgba(120,119,198,0.10);
}
.openrec-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.7rem;
    font-weight: 700;
    background: linear-gradient(90deg, #7877c6, #ff77c6);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.openrec-desc {
    color: rgba(255,255,255,0.88);
    font-size: 1.1rem;
    line-height: 1.6;
}
.openrec-benefit {
    color: #fff;
    font-size: 1rem;
    margin-left: 1.2rem;
    margin-bottom: 0;
    padding-left: 0.5rem;
}
.openrec-benefit li {
    margin-bottom: 0.4rem;
    list-style: disc;
}
.openrec-img {
    display: inline-block;
    filter: drop-shadow(0 0 24px #7877c6aa);
    border-radius: 1.2rem;
    background: rgba(120,119,198,0.07);
    padding: 1.2rem;
    max-width: 260px;
    width: 100%;
    height: auto;
}
.openrec-komisi-logos {
    width: 420px;
    height: 420px;
    position: relative;
}
.openrec-komisi-logo {
    border-radius: 50%;
    box-shadow: 0 2px 16px rgba(120,119,198,0.13);
    background: #fff;
    object-fit: cover;
    border: 6px solid #fff;
    transition: transform 0.18s;
}
.openrec-komisi-logo:hover {
    transform: scale(1.08) rotate(-2deg);
    z-index: 3;
}
.center-logo {
    box-shadow: 0 0 60px #7877c6aa, 0 2px 16px rgba(120,119,198,0.13);
    border: 6px solid #7877c6;
    background: #fff;
}
@media (max-width: 1200px) {
    .openrec-komisi-logos {
        width: 320px;
        height: 320px;
    }
    .openrec-komisi-logo {
        width: 80px !important;
        height: 80px !important;
        border-width: 4px;
    }
    .center-logo {
        width: 110px !important;
        height: 110px !important;
    }
}
@media (max-width: 992px) {
    .openrec-komisi-logos {
        width: 200px;
        height: 200px;
    }
    .openrec-komisi-logo {
        width: 48px !important;
        height: 48px !important;
        border-width: 2.5px;
    }
    .center-logo {
        width: 70px !important;
        height: 70px !important;
    }
}
@media (max-width: 768px) {
    .open-recruitment-section {
        padding: 2.5rem 0;
    }
    .openrec-card {
        padding: 1.2rem 0.7rem;
    }
    .openrec-title {
        font-size: 1.2rem;
    }
    .openrec-img {
        max-width: 120px;
        padding: 0.3rem;
    }
    .openrec-komisi-logos {
        width: 120px;
        height: 120px;
    }
    .openrec-komisi-logo {
        width: 28px !important;
        height: 28px !important;
        border-width: 1.5px;
    }
    .center-logo {
        width: 38px !important;
        height: 38px !important;
    }
}

:root {
        --primary: #7877c6;
        --secondary: #ff77c6;
        --dark: #0a0a0a;
        --dark-light: #1a1a2e;
        --text-light: rgba(255, 255, 255, 0.85);
    }
    
    .scroll-indicator {
        position: absolute;
        bottom: 30px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 10;
    }

    .scroll-arrow {
        width: 24px;
        height: 24px;
        border: 2px solid rgba(255, 255, 255, 0.6);
        border-top: none;
        border-left: none;
        transform: rotate(45deg);
        animation: bounce 2s infinite;
    }

    @keyframes bounce {
        0%, 20%, 50%, 80%, 100% {
            transform: translateY(0) rotate(45deg);
        }
        40% {
            transform: translateY(-10px) rotate(45deg);
        }
        60% {
            transform: translateY(-5px) rotate(45deg);
        }
    }

    /* Loading animation */
    body {
        opacity: 0;
        transition: opacity 0.5s ease-in-out;
    }

    /* Mobile optimizations */
    @media (max-width: 768px) {
        .navbar-custom {
            padding: 0.4rem 0.7rem;
        }
        .hero-section {
            padding-top: 80px;
        }
        
        .hero-text-content {
            text-align: center;
            margin-bottom: 2rem;
        }
        
        .particle {
            display: none;
        }
        
        /* Perbaikan carousel untuk mobile */
        .anggota-carousel-wide {
            padding: 12px 0 0 0;
            margin-bottom: 16px;
        }
        
        .anggota-card {
            min-width: 120px;
            max-width: 140px;
            padding: 10px 5px 6px 5px;
            margin: 0 4px;
        }
        
        .anggota-img-wide {
            width: 80px;
            height: 80px;
        }
        
        .anggota-caption h5 {
            font-size: 0.9rem;
            margin-bottom: 2px;
        }
        
        .anggota-caption p {
            font-size: 0.8rem;
        }
        
        .divisi-logo {
            width: 140px;
            height: 140px;
            padding: 18px;
        }

        .hero-title {
            font-size: 2.5rem !important;
        }
        
        .section-title {
            font-size: 2rem !important;
        }
        
        .kabinet-logo {
            width: 180px !important;
            height: 180px !important;
        }
    }

    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    body {
        background: var(--dark);
        font-family: 'Inter', sans-serif;
        overflow-x: hidden;
        color: var(--text-light);
        line-height: 1.6;
    }

    /* Animated Background */
    .hero-bg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e  25%, #16213e  50%, #0f0f23 75%, #0a0a0a 100%);
        background-size: 400% 400%;
        animation: gradientShift 15s ease infinite;
    }

    .hero-bg::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.3) 0%, transparent 50%),
                    radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.3) 0%, transparent 50%),
                    radial-gradient(circle at 40% 40%, rgba(120, 219, 255, 0.2) 0%, transparent 50%);
        animation: float 20s ease-in-out infinite;
    }

    @keyframes gradientShift {
        0%, 100% { background-position: 0% 50%; }
        50% { background-position: 100% 50%; }
    }

    @keyframes float {
        0%, 100% { transform: translate(0px, 0px) rotate(0deg); }
        33% { transform: translate(30px, -30px) rotate(120deg); }
        66% { transform: translate(-20px, 20px) rotate(240deg); }
    }

    /* Navbar */
    .navbar-custom {
        background: rgba(10, 10, 10, 0.97);
        backdrop-filter: blur(24px);
        border-bottom: 1.5px solid rgba(120, 119, 198, 0.15);
        padding: 0.6rem 1.2rem;
        box-shadow: 0 4px 24px 0 rgba(120,119,198,0.10), 0 1.5px 0 0 var(--primary);
        position: fixed;
        width: 100%;
        top: 0;
        z-index: 1000;
        transition: all 0.3s ease;
    }

    .navbar-brand {
        font-family: 'Space Grotesk', sans-serif;
        font-weight: 800;
        font-size: 1.25rem;
        color: #fff !important;
        text-decoration: none;
        display: flex;
        align-items: center;
        gap: 10px;
        letter-spacing: 1px;
    }

    .navbar-brand img {
        width: 32px;
        height: 32px;
        filter: drop-shadow(0 0 8px rgba(120, 119, 198, 0.7));
        transition: transform 0.2s;
    }
    .navbar-brand img:hover {
        transform: scale(1.08) rotate(-6deg);
    }

    .nav-link {
        color: rgba(255, 255, 255, 0.85) !important;
        font-weight: 600;
        margin: 0 0.7rem;
        transition: all 0.25s cubic-bezier(.4,2,.6,1);
        position: relative;
        font-size: 1rem;
        letter-spacing: 0.5px;
        padding: 0.5rem 0.3rem;
        border-radius: 8px;
    }

    .nav-link:hover, .nav-link.active {
        color: #fff !important;
        background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
        box-shadow: 0 2px 16px 0 rgba(120,119,198,0.13);
        transform: translateY(-2px) scale(1.05);
    }

    .nav-link::after {
        content: '';
        position: absolute;
        bottom: 4px;
        left: 20%;
        width: 0;
        height: 3px;
        background: linear-gradient(90deg, var(--primary), var(--secondary));
        border-radius: 2px;
        transition: width 0.3s;
    }

    .nav-link:hover::after, .nav-link.active::after {
        width: 60%;
    }

    /* Hero Section */
    .hero-section {
        position: relative;
        height: 100vh;
        min-height: 600px;
        display: flex;
        align-items: center;
        overflow: hidden;
        padding-top: 76px; /* Untuk mengkompensasi navbar fixed */
    }

    .hero-content {
        position: relative;
        z-index: 2;
        width: 100%;
    }

    .hero-title {
        font-family: 'Space Grotesk', sans-serif;
        font-size: clamp(3rem, 8vw, 5rem);
        font-weight: 800;
        background: linear-gradient(135deg, #ffffff 0%, var(--primary) 50%, var(--secondary) 100%);
        background-clip: text;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        margin-bottom: 1.5rem;
        line-height: 1.1;
    }

    .hero-subtitle {
        font-size: clamp(1.2rem, 3vw, 1.8rem);
        color: rgba(255, 255, 255, 0.9);
        font-weight: 300;
        margin-bottom: 2rem;
    }

    .hero-description {
        font-size: 1.1rem;
        color: rgba(255, 255, 255, 0.7);
        line-height: 1.6;
        margin-bottom: 3rem;
        max-width: 500px;
    }

    .cta-buttons {
        display: flex;
        gap: 1rem;
        flex-wrap: wrap;
    }

    .btn-primary-custom {
        background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
        border: none;
        padding: 12px 32px;
        border-radius: 50px;
        font-weight: 600;
        color: white;
        text-decoration: none;
        transition: all 0.3s ease;
        box-shadow: 0 8px 25px rgba(120, 119, 198, 0.3);
        position: relative;
        overflow: hidden;
        display: inline-flex;
        align-items: center;
        gap: 8px;
    }

    .btn-primary-custom::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
        transition: left 0.5s;
    }

    .btn-primary-custom:hover::before {
        left: 100%;
    }

    .btn-primary-custom:hover {
        transform: translateY(-3px);
        box-shadow: 0 12px 35px rgba(120, 119, 198, 0.4);
        color: white;
    }

    .btn-outline-custom {
        background: transparent;
        border: 2px solid rgba(255, 255, 255, 0.3);
        padding: 12px 32px;
        border-radius: 50px;
        font-weight: 600;
        color: white;
        text-decoration: none;
        transition: all 0.3s ease;
        display: inline-flex;
        align-items: center;
        gap: 8px;
    }

    .btn-outline-custom:hover {
        background: rgba(255, 255, 255, 0.1);
        border-color: var(--primary);
        transform: translateY(-3px);
        color: white;
    }

    /* Logo Section */
    .hero-logo-container {
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        height: 100%;
    }

    .hero-logo {
        width: clamp(200px, 30vw, 400px);
        height: auto;
        filter: drop-shadow(0 0 30px rgba(120, 119, 198, 0.6));
    }

    .logo-glow {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 80%;
        height: 80%;
        background: radial-gradient(circle, rgba(120, 119, 198, 0.2) 0%, transparent 70%);
        border-radius: 50%;
        animation: pulse 2s ease-in-out infinite;
    }

    /* Floating particles */
    .particle {
        position: absolute;
        width: 4px;
        height: 4px;
        background: rgba(120, 119, 198, 0.6);
        border-radius: 50%;
        animation: particleFloat 8s linear infinite;
    }

    .particle:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
    .particle:nth-child(2) { top: 60%; left: 20%; animation-delay: 2s; }
    .particle:nth-child(3) { top: 40%; left: 80%; animation-delay: 4s; }
    .particle:nth-child(4) { top: 80%; left: 70%; animation-delay: 6s; }

    @keyframes gradientShift {
        0%, 100% { background-position: 0% 50%; }
        50% { background-position: 100% 50%; }
    }

    @keyframes float {
        0%, 100% { transform: translate(0px, 0px) rotate(0deg); }
        33% { transform: translate(30px, -30px) rotate(120deg); }
        66% { transform: translate(-20px, 20px) rotate(240deg); }
    }

    @keyframes logoFloat {
        0%, 100% { transform: translateY(0px); }
        50% { transform: translateY(-10px); }
    }

    @keyframes pulse {
        0%, 100% { opacity: 0.3; transform: translate(-50%, -50%) scale(1); }
        50% { opacity: 0.6; transform: translate(-50%, -50%) scale(1.1); }
    }

    @keyframes particleFloat {
        0% { transform: translateY(0px) rotate(0deg); opacity: 1; }
        100% { transform: translateY(-100vh) rotate(360deg); opacity: 0; }
    }

    /* Section Styling */
    .section-container {
        padding: 5rem 0;
        position: relative;
    }
    
    .section-title {
        font-family: 'Space Grotesk', sans-serif;
        font-size: 2.8rem;
        font-weight: 700;
        background: linear-gradient(90deg, var(--primary), var(--secondary));
        background-clip: text;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        margin-bottom: 3rem;
        letter-spacing: 1px;
        text-align: center;
        position: relative;
        padding-bottom: 1rem;
    }
    
    .section-title::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 4px;
        background: linear-gradient(90deg, var(--primary), var(--secondary));
        border-radius: 2px;
    }
    
    .section-subtitle {
        font-size: 1.2rem;
        color: rgba(255, 255, 255, 0.8);
        text-align: center;
        max-width: 800px;
        margin: 0 auto 4rem;
    }

    /* Section Kabinet Bhaskasura */
    .kabinet-section {
        background: linear-gradient(135deg, var(--dark-light) 0%, var(--dark) 100%);
        border-top: 1px solid rgba(255,255,255,0.05);
        border-bottom: 1px solid rgba(255,255,255,0.05);
    }

    .kabinet-logo-container {
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        height: 100%;
    }
    .kabinet-logo {
        width: clamp(200px, 28vw, 320px);
        height: auto;
        filter: drop-shadow(0 0 30px rgba(120, 119, 198, 0.6));
        border-radius: 50%;
        background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
        box-shadow: 0 0 48px 0 rgba(120,119,198,0.30), 0 8px 32px rgba(255,119,198,0.10);
        padding: 24px;
        transition: all 0.3s ease;
    }
    
    .kabinet-logo:hover {
        transform: scale(1.05);
    }
    
    .logo-glow-kabinet {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 80%;
        height: 80%;
        background: radial-gradient(circle, rgba(120, 119, 198, 0.2) 0%, transparent 70%);
        border-radius: 50%;
        animation: pulse 2s ease-in-out infinite;
    }
    
    .kabinet-title {
        font-family: 'Space Grotesk', sans-serif;
        font-size: 2rem;
        font-weight: 700;
        background: linear-gradient(90deg, var(--primary), var(--secondary));
        background-clip: text;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        margin-bottom: 1.5rem;
        letter-spacing: 1px;
    }
    
    .symbol-title {
        font-family: 'Space Grotesk', sans-serif;
        font-size: 1.3rem;
        font-weight: 600;
        color: var(--secondary);
        margin-bottom: 0.5rem;
        display: flex;
        align-items: center;
        gap: 10px;
    }
    
    .symbol-title i {
        font-size: 1.1rem;
        color: var(--primary);
    }
    
    .symbol-desc {
        color: rgba(255,255,255,0.85);
        font-size: 1.05rem;
        line-height: 1.6;
        margin-bottom: 1.5rem;
        padding-left: 2rem;
    }
    
    .kabinet-motto {
        background: rgba(10,10,20,0.7);
        border: 1px solid rgba(120, 119, 198, 0.2);
        box-shadow: 0 8px 32px rgba(120,119,198,0.10);
        border-radius: 20px;
        padding: 2.5rem;
        margin-top: 3rem;
        position: relative;
        overflow: hidden;
    }
    
    .kabinet-motto::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(45deg, rgba(120,119,198,0.1), rgba(255,119,198,0.05));
        z-index: -1;
    }
    
    .motto-text {
        font-family: 'Space Grotesk', sans-serif;
        font-size: 2rem;
        font-weight: 700;
        background: linear-gradient(90deg, var(--primary), var(--secondary));
        background-clip: text;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        margin-bottom: 1rem;
        text-align: center;
    }
    
    .motto-desc {
        color: rgba(255,255,255,0.85);
        font-size: 1.1rem;
        line-height: 1.6;
        max-width: 700px;
        margin: 0 auto;
        text-align: center;
    }

    /* Section Divisi MPK */
    .divisi-section {
        background: linear-gradient(135deg, var(--dark-light) 0%, var(--dark) 100%);
        border-top: 1px solid rgba(255,255,255,0.05);
        border-bottom: 1px solid rgba(255,255,255,0.05);
    }

    .divisi-tabs .nav-link {
        color: #fff;
        font-weight: 600;
        font-family: 'Inter', sans-serif;
        background: transparent;
        border: none;
        border-bottom: 2px solid transparent;
        margin: 0 0.5rem;
        transition: all 0.3s;
        border-radius: 0;
        font-size: 1.1rem;
        padding: 0.75rem 1.5rem;
        position: relative;
    }

    .divisi-tabs .nav-link.active,
    .divisi-tabs .nav-link:hover {
        color: var(--secondary);
        border-bottom: 2.5px solid var(--secondary);
        background: linear-gradient(90deg, rgba(120,119,198,0.15), rgba(255,119,198,0.10));
    }

    .divisi-tab-content {
        background: rgba(10,10,20,0.7);
        border-radius: 1.5rem;
        box-shadow: 0 8px 32px rgba(120,119,198,0.10);
        padding: 2.5rem 2rem;
        margin-top: 1rem;
        min-height: 320px;
        animation: fadeIn 0.8s;
        border: 1px solid rgba(255,255,255,0.05);
    }

    .divisi-logo {
        width: 180px;
        height: 180px;
        object-fit: contain;
        border-radius: 50%;
        background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
        box-shadow: 0 0 48px 0 rgba(120,119,198,0.30), 0 8px 32px rgba(255,119,198,0.10);
        padding: 24px;
        margin-bottom: 1rem;
        animation: logoFloat 3s ease-in-out infinite;
        transition: transform 0.2s;
    }
    .divisi-logo:hover {
        transform: scale(1.08) rotate(3deg);
    }

    .divisi-title {
        font-family: 'Space Grotesk', sans-serif;
        font-size: 1.7rem;
        font-weight: 700;
        color: #fff;
        margin-bottom: 0.5rem;
        background: linear-gradient(90deg, var(--primary), var(--secondary));
        background-clip: text;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .divisi-desc {
        color: rgba(255,255,255,0.85);
        font-size: 1.1rem;
        font-weight: 400;
        line-height: 1.7;
        margin-bottom: 0;
    }

    @keyframes fadeIn {
        from { opacity: 0; transform: translateY(30px);}
        to { opacity: 1; transform: translateY(0);}
    }

    /* Carousel Anggota Divisi Wide */
    .anggota-carousel-wide {
        width: 100%;
        max-width: 100%;
        padding: 24px 0 0 0;
        margin: 0 auto 24px auto;
        background: rgba(30,30,50,0.15);
        border-radius: 1.2rem;
        box-shadow: 0 2px 16px rgba(120,119,198,0.08);
    }
    
    .anggota-card {
        background: rgba(255,255,255,0.04);
        border-radius: 1rem;
        padding: 22px 18px 14px 18px;
        margin: 0 6px;
        box-shadow: 0 2px 12px rgba(120,119,198,0.07);
        display: flex;
        flex-direction: column;
        align-items: center;
        min-width: 170px;
        max-width: 210px;
        flex: 1 1 150px;
        transition: all 0.3s ease;
        border: 1px solid rgba(255,255,255,0.05);
    }
    
    .anggota-card:hover {
        transform: scale(1.06) rotate(-2deg);
        background: rgba(120,119,198,0.08);
        box-shadow: 0 6px 20px rgba(120,119,198,0.15);
    }
    
    .anggota-img-wide {
        width: 130px;
        height: 130px;
        object-fit: cover;
        border-radius: 50%;
        border: 3px solid #fff;
        box-shadow: 0 2px 12px rgba(120,119,198,0.13);
        background: #222;
        margin-bottom: 10px;
        transition: transform 0.3s ease;
    }
    
    .anggota-img-wide:hover {
        transform: scale(1.09) rotate(2deg);
    }
    
    .anggota-caption {
        color: #fff;
        text-align: center;
        margin-top: 4px;
    }
    
    .anggota-caption h5 {
        font-size: 1.05rem;
        font-weight: 700;
        margin-bottom: 2px;
        background: linear-gradient(90deg, var(--primary), var(--secondary));
        background-clip: text;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }
    
    .anggota-caption p {
        font-size: 0.95rem;
        color: #ccc;
        margin-bottom: 0;
    }

    /* Modal styling */
    .modal-content.bg-dark {
        background: rgba(15, 15, 35, 0.95) !important;
        backdrop-filter: blur(10px);
        border: 1px solid rgba(120, 119, 198, 0.2);
    }
    
    /* Footer */
    .footer {
        background: var(--dark);
        padding: 3rem 0 1.5rem;
        border-top: 1px solid rgba(120, 119, 198, 0.2);
        color: rgba(255, 255, 255, 0.7);
        text-align: center;
    }
    
    .footer-logo {
        width: 60px;
        margin-bottom: 1.5rem;
        opacity: 0.8;
    }
    
    .footer-title {
        font-family: 'Space Grotesk', sans-serif;
        font-size: 1.5rem;
        margin-bottom: 1rem;
        background: linear-gradient(90deg, var(--primary), var(--secondary));
        background-clip: text;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }
    
    .social-links {
        display: flex;
        justify-content: center;
        gap: 1rem;
        margin: 1.5rem 0;
    }
    
    .social-link {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: rgba(255,255,255,0.1);
        color: white;
        transition: all 0.3s ease;
    }
    
    .social-link:hover {
        background: linear-gradient(135deg, var(--primary), var(--secondary));
        transform: translateY(-3px);
        color: white;
    }
    
    .copyright {
        margin-top: 2rem;
        padding-top: 1.5rem;
        border-top: 1px solid rgba(255,255,255,0.1);
    }

    /* Open Recruitment Section */
    .pengumuman-section {
        background: linear-gradient(135deg, var(--dark-light) 0%, var(--dark) 100%);
        padding: 5rem 0;
        position: relative;
        z-index: 2;
    }
    
    .pengumuman-card {
        background: rgba(255,255,255,0.05);
        border: 1px solid rgba(120,119,198,0.25);
        border-radius: 1.3rem;
        padding: 1.8rem 1.6rem;
        box-shadow: 0 8px 32px rgba(120,119,198,0.10);
        backdrop-filter: blur(6px);
    }
    
    .syarat-list {
        margin: 0 0 1rem 0.2rem;
        padding-left: 1.1rem;
        color: rgba(255,255,255,0.85);
        font-size: 0.98rem;
    }
    
    .syarat-list li { 
        margin-bottom: 0.4rem; 
        position: relative;
    }
    
    .syarat-list li::before {
        content: '•';
        color: var(--secondary);
        font-weight: bold;
        display: inline-block;
        width: 1em;
        margin-left: -1em;
    }
    
    .accordion-button {
        background: rgba(120,119,198,0.10);
        color: #fff;
        font-weight: 600;
        backdrop-filter: blur(4px);
        border: none;
        border-radius: 12px !important;
        padding: 1rem 1.5rem;
    }
    
    .accordion-button:not(.collapsed) {
        background: linear-gradient(90deg, rgba(120,119,198,0.25), rgba(255,119,198,0.20));
        color: #ffb6ec;
        box-shadow: inset 0 0 0 1px rgba(255,255,255,0.08);
    }
    
    .accordion-button:focus { 
        box-shadow: 0 0 0 0.15rem rgba(255,119,198,0.4); 
    }
    
    .accordion-item { 
        background: transparent; 
        border: 1px solid rgba(120,119,198,0.25); 
        border-radius: 12px !important; 
        overflow: hidden; 
        margin-bottom: 1rem;
    }
    
    .badge-komisi { 
        background: linear-gradient(135deg, var(--primary), var(--secondary)); 
        font-size: 0.65rem; 
        letter-spacing: 0.5px; 
    }
    
    .subtitle-pengumuman { 
        color: rgba(255,255,255,0.75); 
        font-size: 1.1rem; 
        max-width: 760px; 
        margin: 0 auto 2rem; 
        text-align: center;
    }
    
    .timeline {
        position: relative;
        padding-left: 2rem;
        margin: 2rem 0;
    }
    
    .timeline::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        height: 100%;
        width: 2px;
        background: linear-gradient(to bottom, var(--primary), var(--secondary));
    }
    
    .timeline-item {
        position: relative;
        margin-bottom: 2rem;
        padding-left: 1.5rem;
    }
    
    .timeline-item::before {
        content: '';
        position: absolute;
        left: -1.9rem;
        top: 0.3rem;
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background: var(--secondary);
    }
    
    .timeline-date {
        font-weight: 600;
        color: var(--secondary);
        margin-bottom: 0.5rem;
    }
    
    .timeline-content {
        color: rgba(255,255,255,0.8);
    }

    /* Back to top button */
    .back-to-top {
        position: fixed;
        bottom: 30px;
        right: 30px;
        width: 50px;
        height: 50px;
        border-radius: 50%;
        background: linear-gradient(135deg, var(--primary), var(--secondary));
        color: white;
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        box-shadow: 0 4px 20px rgba(120, 119, 198, 0.3);
        transition: all 0.3s ease;
        z-index: 999;
        opacity: 0;
        visibility: hidden;
    }
    
    .back-to-top.show {
        opacity: 1;
        visibility: visible;
    }
    
    .back-to-top:hover {
        transform: translateY(-5px);
        box-shadow: 0 6px 25px rgba(120, 119, 198, 0.5);
    }

    @keyframes pulseExtra {
        0% { box-shadow:0 2px 16px rgba(255,119,198,0.25); }
        100% { box-shadow:0 6px 32px rgba(255,119,198,0.45); }
    }

    @media (max-width: 768px){
        .pengumuman-section { padding: 3rem 0; }
        .accordion-button { font-size: 0.95rem; }
        .syarat-list { font-size: 0.85rem; }
    }
/* Rundown Timeline Modern */
    .rundown-timeline-modern {
        position: relative;
        padding: 2rem 0;
    }

    .rundown-step-modern {
        display: flex;
        align-items: flex-start;
        gap: 2rem;
        margin-bottom: 3rem;
        position: relative;
        padding: 2rem;
        background: rgba(255,255,255,0.03);
        border-radius: 20px;
        border: 1px solid rgba(120,119,198,0.15);
        transition: all 0.4s ease;
    }

    .rundown-step-modern:hover {
        background: rgba(120,119,198,0.08);
        border-color: rgba(255,119,198,0.3);
        transform: translateX(10px);
        box-shadow: 0 8px 32px rgba(120,119,198,0.15);
    }

    .rundown-step-modern.final-step {
        background: linear-gradient(135deg, rgba(120,119,198,0.15), rgba(255,119,198,0.1));
        border: 2px solid rgba(255,119,198,0.4);
    }

    .rundown-step-modern.final-step:hover {
        background: linear-gradient(135deg, rgba(120,119,198,0.25), rgba(255,119,198,0.2));
    }

    .step-number {
        flex-shrink: 0;
        width: 60px;
        height: 60px;
        border-radius: 15px;
        background: linear-gradient(135deg, var(--primary), var(--secondary));
        color: white;
        display: flex;
        align-items: center;
        justify-content: center;
        font-family: 'Space Grotesk', sans-serif;
        font-size: 1.5rem;
        font-weight: 700;
        box-shadow: 0 4px 20px rgba(120,119,198,0.3);
    }

    .step-icon-wrapper {
        flex-shrink: 0;
        width: 70px;
        height: 70px;
        border-radius: 50%;
        background: rgba(120,119,198,0.1);
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
    }

    .step-icon-wrapper::before {
        content: '';
        position: absolute;
        width: 100%;
        height: 100%;
        border-radius: 50%;
        background: linear-gradient(135deg, var(--primary), var(--secondary));
        opacity: 0.2;
        animation: pulse 2s ease-in-out infinite;
    }

    .step-icon {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        background: linear-gradient(135deg, var(--primary), var(--secondary));
        color: white;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.3rem;
        z-index: 1;
    }

    .step-content {
        flex: 1;
    }

    .step-title {
        font-family: 'Space Grotesk', sans-serif;
        font-size: 1.4rem;
        font-weight: 700;
        background: linear-gradient(90deg, var(--primary), var(--secondary));
        background-clip: text;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        margin-bottom: 0.8rem;
    }

    .step-description {
        color: rgba(255,255,255,0.85);
        font-size: 1.05rem;
        line-height: 1.7;
        margin: 0;
    }

    /* Info Banner */
    .info-banner {
        background: linear-gradient(135deg, rgba(120,119,198,0.2), rgba(255,119,198,0.15));
        border: 2px solid rgba(255,119,198,0.4);
        border-radius: 20px;
        padding: 2rem 2.5rem;
        display: flex;
        align-items: center;
        gap: 2rem;
        box-shadow: 0 8px 32px rgba(255,119,198,0.2);
    }

    .info-banner-icon {
        flex-shrink: 0;
        width: 70px;
        height: 70px;
        border-radius: 50%;
        background: linear-gradient(135deg, var(--primary), var(--secondary));
        color: white;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 2rem;
        box-shadow: 0 4px 20px rgba(255,119,198,0.4);
    }

    .info-banner-content {
        flex: 1;
    }

    .info-banner-title {
        font-family: 'Space Grotesk', sans-serif;
        font-size: 1.5rem;
        font-weight: 700;
        color: var(--secondary);
        margin-bottom: 0.5rem;
    }

    .info-banner-text {
        color: rgba(255,255,255,0.9);
        font-size: 1.1rem;
        line-height: 1.6;
        margin: 0;
    }

    /* Responsive untuk Rundown Modern */
    @media (max-width: 992px) {
        .rundown-step-modern {
            flex-direction: column;
            gap: 1.5rem;
            padding: 1.5rem;
        }

        .rundown-step-modern:hover {
            transform: translateX(0);
            transform: translateY(-5px);
        }

        .step-number {
            width: 50px;
            height: 50px;
            font-size: 1.3rem;
        }

        .step-icon-wrapper {
            width: 60px;
            height: 60px;
        }

        .step-icon {
            width: 45px;
            height: 45px;
            font-size: 1.1rem;
        }

        .step-title {
            font-size: 1.2rem;
        }

        .step-description {
            font-size: 0.95rem;
        }

        .info-banner {
            flex-direction: column;
            text-align: center;
            padding: 1.5rem;
        }

        .info-banner-icon {
            width: 60px;
            height: 60px;
            font-size: 1.7rem;
        }

        .info-banner-title {
            font-size: 1.3rem;
        }

        .info-banner-text {
            font-size: 1rem;
        }
    }

    @media (max-width: 768px) {
        .rundown-step-modern {
            padding: 1rem;
            margin-bottom: 2rem;
        }

        .step-number {
            width: 45px;
            height: 45px;
            font-size: 1.1rem;
            border-radius: 10px;
        }

        .step-icon-wrapper {
            width: 50px;
            height: 50px;
        }

        .step-icon {
            width: 38px;
            height: 38px;
            font-size: 1rem;
        }

        .step-title {
            font-size: 1.1rem;
        }

        .step-description {
            font-size: 0.9rem;
        }

        .info-banner {
            padding: 1.2rem;
        }

        .info-banner-icon {
            width: 50px;
            height: 50px;
            font-size: 1.5rem;
        }

        .info-banner-title {
            font-size: 1.1rem;
        }

        .info-banner-text {
            font-size: 0.9rem;
        }
    }
