:root {
    --primary-blue: #003869;
    --gold-gradient: linear-gradient(135deg, #D4AF37 0%, #F1D27B 100%);
    --blue-gradient: linear-gradient(135deg, #003869 0%, #0056a3 100%);
    --white: #ffffff;
    --text-dark: #0f172a;
    --text-gray: #64748b;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

body {
    background-color: #f8fafc;
    color: var(--text-dark);
    line-height: 1.6;
}

.main-header {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1200px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 0.8rem 2rem;
    border-radius: 100px;
    z-index: 1000;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 35px;
}

.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 25px;
}

.nav-links li a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.85rem;
    transition: 0.3s ease;
    position: relative;
}

.nav-links li a:not(.btn-lms)::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-blue);
    transition: 0.3s ease;
}

.nav-links li a:not(.btn-lms):hover {
    color: var(--primary-blue);
}

.nav-links li a:not(.btn-lms):hover::after {
    width: 100%;
}

.btn-lms {
    background: var(--blue-gradient);
    color: white !important;
    padding: 10px 22px;
    border-radius: 50px;
    font-size: 0.85rem !important;
    box-shadow: 0 4px 15px rgba(0, 56, 105, 0.2);
}

.btn-lms:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 56, 105, 0.3);
}

.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 80px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative; 
}

.hero-content {
    text-align: center;
    z-index: 2;
}

.hero-subtitle {
    display: inline-block;
    font-weight: 800;
    letter-spacing: 2px;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
}

.hero-title {
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 800;
    letter-spacing: -2px;
    color: #ffffff;
    line-height: 1.1;
}

.hero-description {
    font-size: 1.15rem;
    max-width: 600px;
    margin: 20px auto;
    color: #ffffff;
    padding: 0 20px;
}

.hero-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 30px;
}

.btn-primary {
    background: var(--blue-gradient);
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 56, 105, 0.3);
    filter: brightness(1.1);
}

.btn-secondary {
    background: white;
    border: 1px solid #e2e8f0;
    color: var(--primary-blue);
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: 0.3s ease;
}

.btn-secondary:hover {
    background: #f1f5f9;
    border-color: var(--primary-blue);
    transform: translateY(-3px);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: var(--primary-blue);
    transition: 0.3s ease;
}

@media (max-width: 992px) {
    .hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -200%;
        width: 100%;
        max-width: 300px;
        height: 100vh;
        background: rgba(255, 255, 255, 0.9);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 10px;
        transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        border-radius: 40px 0    40px;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
        gap: 30px;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links.active ~ .hamburger span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .nav-links.active ~ .hamburger span:nth-child(2) {
        opacity: 0;
    }

    .nav-links.active ~ .hamburger span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .hero-actions {
        flex-direction: row;
        flex-wrap: wrap;
        padding: 0 20px;
    }

    .btn-primary, 
    .btn-secondary {
        padding: 12px 20px;
        font-size: 0.9rem;
        flex: 1;
        text-align: center;
        min-width: 140px;
    }
}

.about {
    padding: 100px 5%;
    position: relative;
    background-color: #ffffff;
    background-image: 
        radial-gradient(at 0% 0%, rgba(0, 56, 105, 0.05) 0px, transparent 50%),
        radial-gradient(at 100% 100%, rgba(0, 56, 105, 0.08) 0px, transparent 50%);
    overflow: hidden;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-intro {
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.about-list {
    list-style: none;
    margin-bottom: 30px;
}

.about-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    color: var(--text-gray);
    font-size: 0.95rem;
}

.about-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #D4AF37;
    font-weight: bold;
}

.about-text {
    color: var(--text-gray);
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-highlight {
    font-weight: 700;
    color: var(--primary-blue);
    border-left: 4px solid #D4AF37;
    padding-left: 15px;
}

.about-bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 150px);
    gap: 15px;
}

.bento-item {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.bento-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.bento-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,56,105,0.15);
    z-index: 2;
}

.bento-item:hover img {
    transform: scale(1.1);
}

.item-1 { grid-column: span 2; grid-row: span 2; }
.item-2 { grid-column: span 1; grid-row: span 1; }
.item-3 { grid-column: span 1; grid-row: span 2; }
.item-4 { grid-column: span 1; grid-row: span 1; }
.item-5 { grid-column: span 1; grid-row: span 1; }

@media (max-width: 992px) {
    .about {
        padding: 60px 5%;
    }

    .about-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-bento-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(4, 150px);
    }

    .item-1 { grid-column: span 2; grid-row: span 2; }
    .item-2 { grid-column: span 1; grid-row: span 1; }
    .item-3 { grid-column: span 1; grid-row: span 1; }
    .item-4 { grid-column: span 1; grid-row: span 1; }
    .item-5 { grid-column: span 1; grid-row: span 1; }
}

/* --- BENTO GRID MOBILE REVISI --- */
@media (max-width: 768px) {
    .about-bento-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr); 
        /* Kita butuh 3 baris: baris 1 (full), baris 2 (split), baris 3 (split) */
        grid-template-rows: 200px 140px 140px; 
        gap: 12px;
    }

    /* Gambar 1: Full width di baris pertama */
    .item-1 { 
        grid-column: span 2; 
        grid-row: span 1; 
    }

    /* Gambar 2 & 3: Sejajar di baris kedua */
    .item-2 { 
        grid-column: span 1; 
        grid-row: span 1; 
    }
    .item-3 { 
        grid-column: span 1; 
        grid-row: span 1; 
    }

    /* Gambar 4 & 5: Sejajar di baris ketiga */
    .item-4 { 
        grid-column: span 1; 
        grid-row: span 1; 
    }
    .item-5 { 
        grid-column: span 1; 
        grid-row: span 1; 
    }
}

/* --- LIGHTBOX STYLES --- */
.lightbox {
    display: none;
    position: fixed;
    z-index: 2000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(8px);
    justify-content: center;
    align-items: center;
}

.lightbox-content {
    max-width: 85%;
    max-height: 80%;
    display: flex;
    justify-content: center;
}

.lightbox-content img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 80vh;
    border-radius: 10px;
    box-shadow: 0 0 30px rgba(0,0,0,0.5);
    animation: zoomIn 0.3s ease;
}

.close-btn {
    position: absolute;
    top: 30px;
    right: 40px;
    color: white;
    font-size: 40px;
    cursor: pointer;
    z-index: 2100;
}

.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.1);
    border: none;
    color: white;
    padding: 20px;
    cursor: pointer;
    font-size: 24px;
    border-radius: 50%;
    transition: 0.3s;
}

.prev:hover, .next:hover { background: rgba(255,255,255,0.3); }
.prev { left: 20px; }
.next { right: 20px; }

@keyframes zoomIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

.programs {
    padding: 100px 5%;
    background-attachment: fixed; /* Membuat efek Parallax */
    background-size: cover;
    background-position: center;
    position: relative;
}

.programs-container {
    max-width: 1200px;
    margin: 0 auto;
}

.programs-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-blue);
    margin-top: 10px;
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.program-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 40px;
    border-radius: 30px;
    transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
}

.program-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 20px 40px rgba(0, 56, 105, 0.1);
    border-color: #D4AF37;
}

.program-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 25px;
}

.program-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.program-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.program-desc {
    color: var(--text-gray);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

.program-materi {
    margin-top: auto;
    background: rgba(255, 255, 255, 0.5);
    padding: 25px;
    border-radius: 20px;
}

.program-materi h4 {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #D4AF37;
    margin-bottom: 15px;
    font-weight: 800;
}

.program-materi ul {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}

.program-materi ul li {
    font-size: 0.9rem;
    color: var(--text-dark);
    font-weight: 500;
    position: relative;
    padding-left: 20px;
}

.program-materi ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-blue);
    font-weight: bold;
}

/* --- RESPONSIVE PROGRAM --- */
@media (max-width: 992px) {
    .programs-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .program-card {
        padding: 30px;
    }

    .section-title {
        font-size: 2rem;
    }
    
    /* Disable parallax on mobile for better performance */
    .programs {
        background-attachment: scroll;
    }
}

.alumni {
    padding: 100px 5%;
    background: #ffffff;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
}

.alumni-container {
    max-width: 1200px;
    width: 100%;
    position: relative;
    z-index: 2;
}

.alumni-header {
    text-align: center;
    margin-bottom: 50px;
}

.blob-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.blob {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.12;
    animation: moveBlob 20s infinite alternate;
}

.blob-blue {
    background: #D4AF37;
    top: -150px;
    left: -150px;
}

.blob-gold {
    background: #D4AF37;
    bottom: -150px;
    right: -150px;
    animation-delay: -7s;
}

@keyframes moveBlob {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(150px, 100px) scale(1.3); }
}

.alumni-stats {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 80px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(0, 56, 105, 0.08);
    padding: 40px;
    border-radius: 30px;
    text-align: center;
    flex: 1;
    max-width: 350px;
    transition: 0.3s;
}

.stat-card:hover {
    border-color: #D4AF37;
    transform: translateY(-5px);
}

.stat-card h2 {
    font-size: 4.5rem;
    font-weight: 800;
    color: #003869;
    line-height: 1;
    margin-bottom: 10px;
}

.stat-card p {
    font-weight: 600;
    color: #666;
    font-size: 1.1rem;
}

.portfolio-title {
    text-align: center;
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 3px;
    color: #D4AF37;
    margin-bottom: 40px;
    text-transform: uppercase;
}

.logo-marquee-wrapper {
    width: 100%;
    max-width: 100%;
    margin: 0 auto 50px auto;
    overflow: hidden;
    position: relative;
    mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.logo-track {
    display: flex;
    width: calc(180px * 20);
    animation: scrollLogos 35s linear infinite;
}

.logo-track:hover {
    animation-play-state: paused;
}

.logo-slide {
    width: 180px;
    display: flex;
    justify-content: center;
    padding: 0 20px;
}

.logo-slide img {
    height: 100px;
    width: auto;
    transition: 0.4s;
}


@keyframes scrollLogos {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-180px * 16)); }
}

.testimonial-section {
    padding: 5px 5%;
}

.testi-bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    /* Gunakan minmax agar tinggi minimal terjaga tapi bisa nambah kalau teks panjang */
    grid-auto-rows: minmax(220px, auto); 
    gap: 20px;
}

.testi-card {
    background: #fcfcfc;
    border: 1px solid rgba(0, 56, 105, 0.08);
    padding: 30px;
    border-radius: 25px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s ease;
    height: 100%; /* Memastikan card mengisi penuh tinggi row grid */
}

.testi-card:hover {
    background: #ffffff;
    box-shadow: 0 20px 40px rgba(0, 56, 105, 0.08);
    border-color: rgba(212, 175, 55, 0.5);
    transform: translateY(-5px);
}

.testi-card p {
    font-size: 0.95rem;
    font-style: italic;
    color: #444;
    line-height: 1.7;
    margin-bottom: 20px;
}

.testi-card span {
    display: block;
    font-weight: 700;
    color: #003869;
    font-size: 0.85rem;
    position: relative;
    padding-left: 20px;
}

.testi-card span::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 2px;
    background: #D4AF37;
}

/* Konfigurasi Bento - Disesuaikan agar teks panjang tidak tumpang tindih */
.testi-1 { grid-column: span 2; }
.testi-2 { grid-column: span 2; }
.testi-3 { grid-column: span 1; }
.testi-4 { grid-column: span 2; }
.testi-5 { grid-column: span 1; }

@media (max-width: 1100px) {
    .testi-bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .testi-1, .testi-2, .testi-3, .testi-4, .testi-5 {
        grid-column: span 1;
    }
}

@media (max-width: 768px) {
    .testi-bento-grid {
        display: flex;
        overflow-x: auto;
        padding: 20px 0;
        scroll-snap-type: x mandatory;
        gap: 15px;
        /* Menghilangkan scrollbar di beberapa browser */
        -webkit-overflow-scrolling: touch;
    }

    .testi-bento-grid::-webkit-scrollbar {
        display: none;
    }

    .testi-card {
        min-width: 85%;
        max-width: 85%;
        scroll-snap-align: center;
        flex-shrink: 0;
    }

    .stat-card h2 {
    font-size: 4.5rem;
    font-weight: 800;
    color: #003869;
    line-height: 1;
    margin-bottom: 10px;
}

.stat-card p {
    font-weight: 600;
    color: #666;
    font-size: 0.7rem;
}

.logo-slide {
    width: 100px;
    display: flex;
    justify-content: center;
    padding: 0 20px;
}

.logo-slide img {
    height: 80px;
    width: auto;
    transition: 0.4s;
}

}

.benefits {
    padding: 100px 5%;
    background-color: #1a3866;
    position: relative;
    overflow: hidden;
    color: #ffffff;
}

.benefits-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    mask-image: radial-gradient(circle at center, black, transparent 80%);
    pointer-events: none;
}

.benefits::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: #D4AF37;
    filter: blur(150px);
    opacity: 0.1;
    top: -50px;
    right: -50px;
}

.benefits-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 5;
}

.benefits-header {
    text-align: center;
    margin-bottom: 60px;
}

.benefits-subtitle {
    color: #D4AF37;
    letter-spacing: 3px;
    font-weight: 700;
    font-size: 0.9rem;
}

.benefits-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-top: 10px;
}

.benefits-main-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 60px;
}

.benefit-main-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px 30px;
    border-radius: 20px;
    transition: 0.4s;
    position: relative;
}

.benefit-main-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: #D4AF37;
    transform: translateY(-10px);
}

.benefit-num {
    font-size: 3rem;
    font-weight: 900;
    color: rgba(212, 175, 55, 0.2);
    position: absolute;
    top: 20px;
    right: 30px;
}

.benefit-main-card h3 {
    font-size: 1.4rem;
    color: #D4AF37;
    margin-bottom: 15px;
    position: relative;
}

.benefit-main-card p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
}

.benefits-sub-section {
    background: rgba(0, 0, 0, 0.2);
    padding: 40px;
    border-radius: 30px;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.sub-points-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.sub-point-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.sub-point-dot {
    width: 8px;
    height: 8px;
    background: #D4AF37;
    border-radius: 2px;
    transform: rotate(45deg);
    flex-shrink: 0;
}

.sub-point-item p {
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 992px) {
    .benefits-main-grid {
        grid-template-columns: 1fr;
    }
    .sub-points-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .benefits-title {
        font-size: 2rem;
    }
    .benefits-sub-section {
        padding: 25px;
    }
}

.faq {
    padding: 100px 5%;
    background: #ffffff;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-header {
    text-align: center;
    margin-bottom: 50px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    border: 1px solid rgba(0, 56, 105, 0.1);
    border-radius: 15px;
    overflow: hidden;
    transition: 0.3s;
}

.faq-question {
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: #fff;
    transition: 0.3s;
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #003869;
    margin: 0;
    padding-right: 20px;
}

.faq-icon {
    position: relative;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.faq-icon span {
    position: absolute;
    background: #D4AF37;
    transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-icon span:nth-child(1) {
    width: 100%;
    height: 2px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.faq-icon span:nth-child(2) {
    width: 2px;
    height: 100%;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.faq-item.active {
    border-color: #D4AF37;
    box-shadow: 0 10px 30px rgba(0, 56, 105, 0.05);
}

.faq-item.active .faq-icon span:nth-child(2) {
    transform: translateX(-50%) rotate(90deg);
    opacity: 0;
}

.faq-item.active .faq-icon span:nth-child(1) {
    transform: translateY(-50%) rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    background: #fdfdfd;
}

.faq-answer p {
    padding: 0 30px 25px 30px;
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

.faq-cta {
    margin-top: 60px;
    text-align: center;
    padding: 40px;
    border-top: 1px solid #eee;
}

.faq-cta p {
    font-weight: 600;
    color: #444;
    margin-bottom: 20px;
}

.btn-wa {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #25D366;
    color: #fff;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: 0.3s;
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.2);
}

.btn-wa:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(37, 211, 102, 0.3);
    background: #20ba5a;
}

.btn-wa i {
    font-size: 1.4rem;
}

@media (max-width: 768px) {
    .faq-question {
        padding: 20px;
    }
    .faq-question h3 {
        font-size: 1rem;
    }
}

.main-footer {
    background: #ffffff;
    padding-top: 80px;
    border-top: 1px solid rgba(0, 56, 105, 0.1);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 0.8fr 1fr 1.2fr;
    gap: 40px;
    padding-bottom: 60px;
}

.footer-logo {
    height: 65px;
    margin-bottom: 25px;
    width: auto;
}

.footer-brand p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 25px;
}

.footer-socials {
    display: flex;
    gap: 20px;
}

.footer-socials a {
    color: #d4af37;
    font-size: 1.5rem;
    transition: 0.3s;
    text-decoration: none;
}

.footer-socials a:hover {
    color: #D4AF37;
    transform: translateY(-2px);
}

.footer-grid h4 {
    color: #003869;
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 25px;
    letter-spacing: 1px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    text-decoration: none;
    color: #444;
    font-size: 0.95rem;
    transition: 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-links ul li a i {
    font-size: 0.75rem;
    color: #D4AF37;
}

.footer-links ul li a:hover {
    color: #D4AF37;
    padding-left: 5px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    text-align: left;
}

.contact-item i {
    color: #D4AF37;
    font-size: 1.1rem;
    min-width: 20px;
    text-align: center;
    margin-top: 4px;
}

.contact-item p {
    margin: 0;
    color: #444;
    font-size: 0.9rem;
    line-height: 1.5;
    flex: 1;
}

.footer-bottom {
    padding: 30px 0;
    border-top: 1px solid #eee;
    text-align: center;
}

.footer-bottom p {
    color: #888;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

.footer-bottom a {
    color: #003869;
    text-decoration: none;
    font-weight: 700;
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    .footer-grid h4 {
        text-align: left;
    }
    .footer-brand, .footer-links, .footer-contact {
        text-align: left;
    }
    .footer-logo {
        display: block;
        margin-left: 0;
        margin-right: auto;
    }
    .footer-socials {
        justify-content: flex-start;
    }
    .footer-links ul li a {
        justify-content: flex-start;
    }
    .contact-item {
        justify-content: flex-start;
    }
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered delay (biar muncul gantian) */
.hero-subtitle.active { transition-delay: 0.1s; }
.hero-title.active { transition-delay: 0.3s; }
.hero-actions.active { transition-delay: 0.5s; }

/* Container untuk section Programs agar 3D-nya terasa */
.programs-grid {
    perspective: 1000px;
}

/* Gaya Utama: Ringan & Fluid */
.anim-up, .anim-scale, .reveal, .anim-3d {
    opacity: 0;
    will-change: transform, opacity;
    /* Kita pakai cubic-bezier "Power4" yang sangat smooth */
    transition: 
        opacity 1s ease, 
        transform 1.1s cubic-bezier(0.16, 1, 0.3, 1);
}

/* State Awal: Masing-masing punya karakter */
.anim-up {
    transform: translateY(40px) skewY(2deg); /* Sedikit miring saat naik */
}

.anim-scale {
    transform: scale(0.94) translateY(20px);
}

.anim-3d {
    transform: rotateX(-15deg) translateY(50px); /* Efek rebah */
}

/* --- Saat Aktif (Masuk Viewport) --- */
.anim-up.active, .anim-scale.active, .reveal.active, .anim-3d.active {
    opacity: 1;
    transform: translateY(0) skewY(0) scale(1) rotateX(0);
}

/* --- Staggered Delays (Sangat Rapat agar Flowy) --- */
.about-content .anim-up:nth-child(odd).active { transition-delay: 0.05s; }
.about-content .anim-up:nth-child(even).active { transition-delay: 0.15s; }

.bento-item:nth-child(1).active { transition-delay: 0.1s; }
.bento-item:nth-child(2).active { transition-delay: 0.2s; }
.bento-item:nth-child(3).active { transition-delay: 0.3s; }
.bento-item:nth-child(4).active { transition-delay: 0.4s; }
.bento-item:nth-child(5).active { transition-delay: 0.5s; }

/* Program Cards Stagger */
.program-card:nth-child(1).active { transition-delay: 0.1s; }
.program-card:nth-child(2).active { transition-delay: 0.25s; }

/* Container harus punya perspektif agar efek 3D terlihat */
.programs-grid {
    perspective: 1500px;
}

.anim-3d {
    opacity: 0;
    transform: translateX(80px) rotateY(-20deg) scale(0.9);
    will-change: transform, opacity;
    transition: 
        opacity 1.2s cubic-bezier(0.22, 1, 0.36, 1),
        transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Keadaan saat aktif */
.anim-3d.active {
    opacity: 1;
    transform: translateX(0) rotateY(0) scale(1);
}

/* Staggered delay agar kartu muncul berurutan dari kanan ke kiri */
.program-card:nth-child(1).active {
    transition-delay: 0.2s;
}

.program-card:nth-child(2).active {
    transition-delay: 0.4s;
}

/* Efek Hover Tambahan: Biar makin premium saat disentuh */
.program-card {
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.5s ease;
}

.program-card:hover {
    transform: translateY(-10px) scale(1.02) !important;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* --- Counter & Stat Style --- */
.counter {
    display: inline-block;
}

/* --- Animasi Pop untuk Testi Bento --- */
.anim-pop {
    opacity: 0;
    transform: scale(0.8) translateY(30px);
    will-change: transform, opacity;
    transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1); /* Efek bouncy premium */
}

.anim-pop.active {
    opacity: 1;
    transform: scale(1) translateY(0);
}

/* Staggered Delay Testimoni */
.testi-card:nth-child(1).active { transition-delay: 0.1s; }
.testi-card:nth-child(2).active { transition-delay: 0.2s; }
.testi-card:nth-child(3).active { transition-delay: 0.3s; }
.testi-card:nth-child(4).active { transition-delay: 0.4s; }
.testi-card:nth-child(5).active { transition-delay: 0.5s; }

/* --- Portfolio Marquee Smoothness --- */
.logo-track {
    display: flex;
    width: calc(250px * 32); /* Sesuaikan jumlah logo */
    animation: scroll 40s linear infinite;
}

.logo-marquee-wrapper:hover .logo-track {
    animation-play-state: paused; /* Berhenti saat di-hover agar user bisa baca logo */
    cursor: pointer;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-250px * 16)); }
}

/* Gaya Animasi Baru: Slide dari Kiri */
.anim-left {
    opacity: 0;
    transform: translateX(-30px) skewX(-5deg);
    will-change: transform, opacity;
    transition: all 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.anim-left.active {
    opacity: 1;
    transform: translateX(0) skewX(0);
}

/* Staggered Delay untuk Main Cards */
.benefit-main-card:nth-child(1).active { transition-delay: 0.1s; }
.benefit-main-card:nth-child(2).active { transition-delay: 0.25s; }
.benefit-main-card:nth-child(3).active { transition-delay: 0.4s; }

/* Staggered Delay untuk Sub Points (Muncul berurutan kebawah) */
.sub-point-item:nth-child(1).active { transition-delay: 0.1s; }
.sub-point-item:nth-child(2).active { transition-delay: 0.2s; }
.sub-point-item:nth-child(3).active { transition-delay: 0.3s; }
.sub-point-item:nth-child(4).active { transition-delay: 0.4s; }
.sub-point-item:nth-child(5).active { transition-delay: 0.5s; }
.sub-point-item:nth-child(6).active { transition-delay: 0.6s; }

/* Hover Effect Premium pada Card */
.benefit-main-card {
    transition: all 0.4s ease;
}
.benefit-main-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.1); /* Efek glassmorphism tipis */
    backdrop-filter: blur(5px);
}

/* --- Cascade Animation --- */
.faq-stagger {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.faq-stagger.active {
    opacity: 1;
    transform: translateY(0);
}

/* Delay berurutan */
.faq-item:nth-child(1).active { transition-delay: 0.1s; }
.faq-item:nth-child(2).active { transition-delay: 0.2s; }
.faq-item:nth-child(3).active { transition-delay: 0.3s; }

/* --- Animation Reveal (Saat Scroll) --- */
.faq-stagger {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Ganti .active jadi .show khusus untuk reveal scroll */
.faq-stagger.show {
    opacity: 1;
    transform: translateY(0);
}

/* --- FAQ Icon Micro-interaction --- */
.faq-icon {
    position: relative;
    width: 20px;
    height: 20px;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Ganti .active jadi .open untuk fungsi klik */
.faq-item.open .faq-icon {
    transform: rotate(135deg);
}

.faq-icon span {
    position: absolute;
    background: #D4AF37;
    transition: background 0.3s ease;
}

.faq-icon span:nth-child(1) {
    width: 100%; height: 2px; top: 50%; left: 0; transform: translateY(-50%);
}

.faq-icon span:nth-child(2) {
    width: 2px; height: 100%; left: 50%; top: 0; transform: translateX(-50%);
}

/* --- FAQ Answer Logic --- */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-in-out;
}

/* Buka jawaban pakai class .open */
.faq-item.open .faq-answer {
    max-height: 500px; /* Atur sesuai konten */
}

/* Container Utama Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    z-index: 10;
}

/* Animasi Mouse */
.mouse {
    width: 25px;
    height: 40px;
    border: 2px solid #ffffff;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.wheel {
    width: 4px;
    height: 8px;
    background-color: #ffffff;
    border-radius: 2px;
    animation: scroll-wheel 1.5s infinite;
}

/* Animasi Panah (Chevron) */
.arrow span {
    display: block;
    width: 10px;
    height: 10px;
    border-bottom: 2px solid #ffffff;
    border-right: 2px solid #ffffff;
    transform: rotate(45deg);
    margin: -5px;
    animation: arrow-down 1.5s infinite;
}

.arrow span:nth-child(2) {
    animation-delay: 0.2s;
}

/* Keyframes Animasi */
@keyframes scroll-wheel {
    0% { opacity: 1; transform: translateY(0); }
    100% { opacity: 0; transform: translateY(15px); }
}

@keyframes arrow-down {
    0% { opacity: 0; transform: rotate(45deg) translate(-5px, -5px); }
    50% { opacity: 1; }
    100% { opacity: 0; transform: rotate(45deg) translate(5px, 5px); }
}

/* WhatsApp Floating Button */
.wa-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.wa-float i {
    margin-top: 1px;
}

/* Pulse Animation */
.wa-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #25d366;
    border-radius: 50%;
    z-index: -1;
    animation: wa-pulse-anim 2s infinite;
}

@keyframes wa-pulse-anim {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }
    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

/* Tooltip on Hover */
.wa-tooltip {
    position: absolute;
    right: 75px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(5px);
    color: #003869; /* Warna biru tema kita */
    padding: 8px 15px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    white-space: nowrap;
}

.wa-float:hover {
    transform: scale(1.1) translateY(-5px);
    background-color: #20ba5a;
}

.wa-float:hover .wa-tooltip {
    opacity: 1;
    visibility: visible;
    right: 80px;
}

/* Mobile Adjustment */
@media (max-width: 768px) {
    .wa-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 25px;
    }
    .wa-tooltip {
        display: none; /* Sembunyikan tooltip di mobile biar gak menutupi konten */
    }
}