/* ================= EXCLUSIVE FORM DESIGN ================= */
/* ================= EXCLUSIVE FORM DESIGN ================= */

* {
    margin: 0; padding: 0; box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

.form-page {
    background: url('bg_form.jpg') no-repeat center center;
    background-size: cover;
    background-attachment: fixed; /* Background tetap saat scroll */
    min-height: 100vh;
    color: #fff;
    overflow-y: auto; /* Memastikan scroll aktif di desktop */
}

.overlay-exclusive {
    width: 100%;
    min-height: 100vh;
    background: radial-gradient(circle at center, rgba(11, 20, 26, 0.8) 0%, #0b141a 100%);
    /* Efek Grid Halus */
    background-image: 
        radial-gradient(circle at center, rgba(11, 20, 26, 0.8) 0%, #0b141a 100%),
        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: 100% 100%, 45px 45px, 45px 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px 20px; /* Padding luas agar konten tidak mepet saat scroll */
}

.split-container {
    display: flex;
    width: 100%;
    max-width: 1100px;
    align-items: center;
    gap: 50px;
}

/* SISI INFO (KIRI) */
.info-side {
    flex: 1;
}

.logo-main-form {
    max-width: 320px; /* Logo besar sesuai permintaan */
    margin-bottom: 40px;
    filter: drop-shadow(0 0 15px rgba(255,255,255,0.1));
}

.headline-box h1 {
    font-size: clamp(26px, 4vw, 42px);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 25px;
}

.quote {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255,255,255,0.6);
    border-left: 3px solid #ce9c31;
    padding-left: 20px;
}

.author {
    display: block;
    margin-top: 10px;
    font-weight: bold;
    color: #ce9c31;
}

/* SISI FORM (KANAN): TRANSPARAN & GLOW */
.form-side {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.glass-form-card {
    background: rgba(255, 255, 255, 0.07); /* Transparansi Eksklusif */
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 50px;
    width: 100%;
    max-width: 480px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 50px rgba(206, 156, 49, 0.15); /* Glow Kuning Emas */
    text-align: center;
}

.glass-form-card h2 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 10px;
}

.form-sub {
    font-size: 13px;
    margin-bottom: 35px;
    color: rgba(255,255,255,0.5);
}

/* INPUT ASLI */
.glass-form-card input {
    width: 100%;
    padding: 15px;
    margin-bottom: 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    color: #fff;
    font-size: 14px;
    transition: 0.3s ease;
}

.glass-form-card input:focus {
    border-color: #ce9c31;
    background: rgba(255, 255, 255, 0.08);
    outline: none;
    box-shadow: 0 0 15px rgba(206, 156, 49, 0.2);
}

/* BUTTON SESUAI TEMA */
.btn-start-assessment {
    width: 100%;
    padding: 18px;
    background: #ce9c31;
    border: none;
    color: #000;
    font-weight: 800;
    font-size: 16px;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.3s;
    margin-top: 10px;
    letter-spacing: 1px;
}

.btn-start-assessment:hover {
    background: #f1c40f;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(206, 156, 49, 0.4);
}

.form-footer-line {
    margin-top: 30px;
    font-size: 11px;
    opacity: 0.3;
    font-style: italic;
    letter-spacing: 1px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .split-container {
        flex-direction: column;
        padding: 40px 0;
    }
    .info-side {
        text-align: center;
        margin-bottom: 40px;
    }
    .quote { border-left: none; padding-left: 0; }
    .form-side { justify-content: center; width: 100%; }
    .glass-form-card { padding: 30px; }
}
