/* --- HERO ISI PROGRAM STYLING --- */
.hero-isiprogram {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 120px 5% 80px 5%;
    text-align: center;
    overflow: hidden;
}

.hero-isiprogram-content {
    max-width: 900px;
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-isiprogram-title {
    font-size: 4rem;
    font-weight: 800;
    color: #1a3866; /* Warna biru tema sesuai image_d14f66.jpg */
    letter-spacing: -1px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.hero-isiprogram-desc {
    font-size: 1.25rem;
    font-weight: 500;
    color: #1a3866; /* Warna biru tema */
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 800px;
}

/* --- BUTTONS --- */
.hero-isiprogram-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn-isiprogram-primary, 
.btn-isiprogram-secondary {
    display: inline-block;
    padding: 14px 35px;
    border-radius: 15px;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 56, 105, 0.15);
}

.btn-isiprogram-primary {
    background-color: #1a3866;
    color: #ffffff;
}

.btn-isiprogram-primary:hover {
    background-color: #D4AF37; /* Aksen Gold */
    color: #1a3866;
    transform: translateY(-3px);
}

.btn-isiprogram-secondary {
    background-color: transparent;
    color: #1a3866;
    border: 2px solid #1a3866;
}

.btn-isiprogram-secondary:hover {
    background-color: #1a3866;
    color: #ffffff;
    transform: translateY(-3px);
}

/* --- MOUSE SCROLL INDICATOR --- */
.isiprogram-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 5;
}

.isiprogram-mouse {
    width: 26px;
    height: 42px;
    border: 2px solid #1a3866;
    border-radius: 15px;
    position: relative;
}

.isiprogram-wheel {
    width: 4px;
    height: 8px;
    background-color: #1a3866;
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 1.5s infinite;
}

.isiprogram-arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.isiprogram-arrow span {
    display: block;
    width: 8px;
    height: 8px;
    border-bottom: 2px solid #1a3866;
    border-right: 2px solid #1a3866;
    transform: rotate(45deg);
    margin: -2px;
    animation: scrollArrow 1.5s infinite;
}

.isiprogram-arrow span:nth-child(2) {
    animation-delay: 0.2s;
}

/* --- ANIMATIONS --- */
@keyframes scrollWheel {
    0% { opacity: 1; top: 8px; }
    100% { opacity: 0; top: 22px; }
}

@keyframes scrollArrow {
    0% { opacity: 0; transform: rotate(45deg) translate(-5px, -5px); }
    50% { opacity: 1; }
    100% { opacity: 0; transform: rotate(45deg) translate(5px, 5px); }
}

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
    .hero-isiprogram-title {
        font-size: 2.5rem;
    }
    
    .hero-isiprogram-desc {
        font-size: 1.05rem;
    }

    .hero-isiprogram-actions {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        gap: 12px;
    }
    
    .btn-isiprogram-primary, 
    .btn-isiprogram-secondary {
        width: 100%;
        text-align: center;
    }
}

/* --- TAHAPAN INITIATING STAGE STYLE --- */
.tahapan-initiating-section {
    padding: 100px 5%;
    background-color: #ffffff;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    width: 100%;
}

.tahapan-initiating-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.tahapan-initiating-header {
    text-align: center;
    margin-bottom: 60px;
}

.tahapan-initiating-main-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: #000000;
    letter-spacing: -0.5px;
}

.tahapan-initiating-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: stretch;
}

.tahapan-initiating-card {
    background-color: #4D47FF; /* Biru ungu cerah sesuai gambar image_d14b45.png */
    border-radius: 40px; /* Radius melengkung tebal sesuai contoh */
    padding: 50px 35px;
    box-shadow: 0 15px 35px rgba(77, 71, 255, 0.25);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    min-height: 400px;
}

.tahapan-initiating-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(77, 71, 255, 0.4);
}

.tahapan-initiating-card-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.tahapan-initiating-card h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 25px;
    letter-spacing: 0.5px;
    line-height: 1.4;
    text-transform: uppercase;
}

.tahapan-initiating-card p {
    font-size: 1.05rem;
    font-weight: 400;
    color: #ffffff;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Tombol Daftar Khusus Card 1 */
.btn-tahapan-daftar {
    display: inline-block;
    background-color: #EBC12B; /* Warna kuning emas cerah sesuai contoh */
    color: #000000;
    padding: 12px 35px;
    border-radius: 15px;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    margin-top: 30px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-tahapan-daftar:hover {
    background-color: #ffffff;
    color: #4D47FF;
    transform: scale(1.05);
}

/* --- RESPONSIVE OPTIMIZATION --- */
@media (max-width: 992px) {
    .tahapan-initiating-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin: 0 auto;
        gap: 40px;
    }
    
    .tahapan-initiating-card {
        min-height: auto;
        padding: 45px 30px;
    }
}

@media (max-width: 576px) {
    .tahapan-initiating-main-title {
        font-size: 1.8rem;
    }

    .tahapan-initiating-card h3 {
        font-size: 1.3rem;
    }

    .tahapan-initiating-card p {
        font-size: 0.95rem;
    }
}

/* --- VERTICAL TAB SYSTEM STYLE --- */
.isiprogram-tab-section {
    padding: 90px 5%;
    background-color: #ffffff;
    width: 100%;
}

.isiprogram-tab-container {
    max-width: 1200px;
    margin: 0 auto;
}

.isiprogram-tab-header {
    text-align: center;
    margin-bottom: 50px;
}

.isiprogram-tab-main-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a3866; /* Warna biru tema utama */
}

.isiprogram-tab-layout {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 50px;
    align-items: start;
}

/* Sisi Kiri: Menu List Tombol */
.isiprogram-tab-nav {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.isiprogram-tab-nav .switch-btn {
    width: 100%;
    text-align: left;
    background: transparent;
    border: none;
    padding: 18px 24px;
    border-radius: 14px;
    font-size: 1rem;
    font-weight: 600;
    color: #1a3866;
    cursor: pointer;
    line-height: 1.4;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* State Active Button - Persis seperti kotak navy di image_d13d5a.png */
.isiprogram-tab-nav .switch-btn.active {
    background-color: #1a3866;
    color: #ffffff;
    box-shadow: 0 8px 20px rgba(26, 56, 102, 0.15);
}

/* Sisi Kanan: Konten Dinamis */
.isiprogram-tab-content-wrapper {
    background: transparent;
    min-height: 380px;
}

.tab-content {
    display: none;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.tab-content.active {
    opacity: 1;
    transform: translateY(0);
}

.tab-content .content-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: #1a3866;
    margin-bottom: 20px;
    line-height: 1.3;
}

.tab-content .content-desc {
    font-size: 1.1rem;
    font-weight: 400;
    color: #333333;
    line-height: 1.6;
    margin-bottom: 25px;
}

/* List Bullets Inner Content */
.tab-content .content-points {
    padding-left: 20px;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.tab-content .content-points li {
    font-size: 1.05rem;
    font-weight: 600;
    color: #000000;
    position: relative;
    list-style-type: disc;
    line-height: 1.4;
}

/* Styling Baris Kelompok Skill Di Bawah */
.tab-content .content-skills {
    font-size: 1rem;
    color: #444444;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    padding-top: 20px;
    line-height: 1.5;
}

.tab-content .content-skills strong {
    color: #000000;
    font-weight: 700;
}

/* --- RESPONSIVE OPTIMIZATION --- */
@media (max-width: 992px) {
    .isiprogram-tab-layout {
        grid-template-columns: 1fr; /* Berubah jadi stacked atas-bawah saat mobile */
        gap: 35px;
    }

    .isiprogram-tab-nav {
        flex-direction: row;
        overflow-x: auto; /* Memungkinkan slide menu menyamping di mobile */
        padding-bottom: 10px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }

    .isiprogram-tab-nav .switch-btn {
        white-space: nowrap;
        width: auto;
        padding: 12px 20px;
        font-size: 0.95rem;
        scroll-snap-align: start;
    }
    
    .tab-content .content-title {
        font-size: 1.5rem;
    }
}

/* --- PERSYARATAN PESERTA STYLING --- */
.bizcube-syarat-section {
    padding: 80px 0;
    background-color: #ffffff;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.bizcube-syarat-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.bizcube-syarat-header {
    text-align: center;
    margin-bottom: 50px;
}

.bizcube-syarat-header .sub-title {
    font-size: 14px;
    font-weight: 800;
    color: #1e293b;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 12px;
}

.bizcube-syarat-header .main-title {
    font-size: 42px;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 20px;
}

.bizcube-syarat-header .main-title span {
    color: #4f46e5;
}

.bizcube-syarat-header .desc-title {
    font-size: 16px;
    color: #64748b;
    line-height: 1.6;
    font-weight: 400;
}

/* Layout Split */
.bizcube-syarat-layout {
    display: flex;
    align-items: center;
    gap: 50px;
}

/* Sisi Kiri: Gambar Syarat (Background Putih Polos) */
.bizcube-syarat-left {
    flex: 0.9;
    display: flex;
    justify-content: center;
    align-items: center;
}

.syarat-img-wrapper {
    width: 100%;
    max-width: 480px;
    background-color: #ffffff; /* Background putih polos murni */
    border-radius: 24px;
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.syarat-img-wrapper img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 20px;
}

/* Sisi Kanan: Cards Persyaratan */
.bizcube-syarat-right {
    flex: 1.1; 
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.syarat-card {
    display: flex;
    align-items: center;
    background: #ffffff;
    padding: 20px 25px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(226, 232, 240, 0.8);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.syarat-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(79, 70, 229, 0.08);
}

.syarat-icon-box {
    width: 55px;
    height: 55px;
    background-color: #f1f5f9;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.syarat-icon-box i {
    font-size: 22px;
    color: #4f46e5;
}

.syarat-text {
    flex: 1;
    padding-right: 50px;
}

.syarat-text p {
    font-size: 15px;
    color: #334155;
    line-height: 1.5;
    font-weight: 500;
    margin: 0;
}

.syarat-number {
    font-size: 18px;
    font-weight: 800;
    color: #1e293b;
    background: #f1f5f9;
    padding: 6px 14px;
    border-radius: 8px;
    position: absolute;
    right: 25px;
}

/* RESPONSIVE (MOBILE & TABLET) */
@media (max-width: 991px) {
    .bizcube-syarat-layout {
        flex-direction: column; /* Di layar HP otomatis bertumpuk ke bawah secara natural */
        gap: 40px;
    }
    
    .bizcube-syarat-header .main-title {
        font-size: 32px;
    }
    
    .syarat-img-wrapper {
        max-width: 100%;
    }
}

@media (max-width: 576px) {
    .syarat-card {
        padding: 15px;
    }
    
    .syarat-icon-box {
        width: 45px;
        height: 45px;
        margin-right: 15px;
    }
    
    .syarat-icon-box i {
        font-size: 18px;
    }
    
    .syarat-text p {
        font-size: 13px;
    }
    
    .syarat-number {
        position: relative;
        right: auto;
        font-size: 14px;
        padding: 4px 8px;
        margin-left: auto;
    }
}


/* --- FORM SECTION PREMIUM THEME --- */
.form-section { 
    flex-grow: 1; 
    padding: 80px 20px; 
    margin-top: 40px;
    background: #f8fafc; /* Latar belakang soft agar card menonjol */
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.form-card {
    max-width: 650px;
    margin: 0 auto;
    background: var(--white, #ffffff);
    border-radius: 24px;
    padding: 45px;
    /* Efek bayangan premium & border tipis ala glassmorphism */
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(226, 232, 240, 0.8);
    position: relative;
}

.form-card h2 { 
    font-size: 1.8rem; 
    font-weight: 800;
    color: var(--primary, #1e293b); 
    margin-bottom: 12px; 
    text-align: center; 
    letter-spacing: -0.5px;
}

.form-card .desc { 
    text-align: center; 
    color: var(--text-gray, #64748b); 
    margin-bottom: 35px; 
    font-size: 0.95rem; 
    line-height: 1.6; 
}

.form-group { 
    margin-bottom: 22px; 
}

.form-group label { 
    display: block; 
    margin-bottom: 9px; 
    font-weight: 700; 
    font-size: 0.88rem; 
    color: var(--primary, #1e293b); 
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Base Input & Select Styling */
.form-group input,
.form-group select {
    width: 100%;
    padding: 14px 20px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    font-family: inherit;
    font-size: 0.98rem;
    color: #334155;
    background-color: #ffffff;
    transition: all 0.3s ease;
    outline: none;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus { 
    border-color: var(--gold, #D4AF37); 
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.15); 
    background-color: #ffffff;
}

/* Custom Dropdown Wrapper */
.form-group .select-wrapper {
    position: relative;
    width: 100%;
}

/* Sembunyikan panah default browser & buat kustom */
.form-group select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding-right: 45px; /* Beri ruang untuk ikon panah */
    cursor: pointer;
}

/* Ikon Panah Dropdown Kustom */
.form-group .select-wrapper::after {
    content: '\f078'; /* Kode Font Awesome untuk fa-chevron-down */
    font-family: 'Font Awesome 6 Free', 'Font Awesome 5 Free', sans-serif;
    font-weight: 900;
    font-size: 11px;
    color: var(--text-gray, #94a3b8);
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    transition: 0.3s ease;
}

.form-group .select-wrapper:focus-within::after {
    color: var(--gold, #D4AF37);
    transform: translateY(-50%) rotate(180deg);
}

/* Layout Grid untuk Email dan Program */
.form-grid-2 {
    display: grid; 
    grid-template-columns: 1.1fr 1.1fr; 
    gap: 20px;
}

/* Button Download dengan Gradasi/Aksen Elegan */
.btn-download {
    width: 100%;
    background: var(--primary, #1e293b);
    color: white;
    padding: 16px;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
    box-shadow: 0 4px 12px rgba(30, 41, 59, 0.15);
}

.btn-download:hover { 
    background: var(--gold, #D4AF37); 
    color: #1e293b; /* Kontras teks gelap saat hover gold */
    transform: translateY(-2px); 
    box-shadow: 0 12px 24px rgba(212, 175, 55, 0.3); 
}

.btn-download:active {
    transform: translateY(0);
}

/* Alert System */
.alert { 
    padding: 16px 20px; 
    border-radius: 12px; 
    margin-bottom: 25px; 
    font-size: 0.9rem; 
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 12px;
}

.alert-error { 
    background: #fef2f2; 
    color: #b91c1c; 
    border: 1px solid #fca5a5; 
}

/* Kembali Ke Beranda Link */
.back-link { 
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 30px; 
    text-decoration: none; 
    color: var(--text-gray, #64748b); 
    font-size: 0.9rem; 
    font-weight: 600; 
    transition: 0.3s ease; 
}

.back-link:hover { 
    color: var(--gold, #D4AF37); 
}

/* RESPONSIVE LAYOUT */
@media (max-width: 600px) {
    .form-card { 
        padding: 35px 20px; 
    }
    
    .form-grid-2 {
        grid-template-columns: 1fr; /* Menjadi 1 kolom bertumpuk di HP */
        gap: 0;
    }
    
    .form-card h2 { 
        font-size: 1.5rem; 
    }
}