/* =========================================
    VANASAGA REPORT - Alchemy Edition 2026
   ========================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    background: #030303; 
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(168, 85, 247, 0.3) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(126, 34, 206, 0.25) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(76, 29, 149, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 30% 80%, rgba(192, 38, 211, 0.2) 0%, transparent 40%),
        radial-gradient(circle at 80% 20%, rgba(67, 56, 202, 0.2) 0%, transparent 40%);

    background-size: 200% 200%; 
    animation: liquidFlow 20s linear infinite;
    
    color: #fff;
    font-family: 'Plus Jakarta Sans', sans-serif;
    min-height: 100vh;
}

@keyframes liquidFlow {
    0% { background-position: 0% 0%; }
    25% { background-position: 100% 0%; }
    50% { background-position: 100% 100%; }
    75% { background-position: 0% 100%; }
    100% { background-position: 0% 0%; }
}

/* Wrapper Utama agar Konten di Tengah */
.report-main-wrapper {
    padding: 120px 20px 60px; /* Padding top disesuaikan dengan tinggi Navbar */
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

.report-container {
    width: 100%;
    max-width: 650px;
    margin: auto;
}

/* --- TYPOGRAPHY --- */
.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    text-align: center;
    margin-bottom: 10px;
    letter-spacing: -1px;
    line-height: 1.2;
}

.subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
    margin-bottom: 35px;
    line-height: 1.6;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* --- CARD --- */
.report-card {
    background: rgba(15, 15, 15, 0.65);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(168, 85, 247, 0.2);
    border-radius: 32px;
    padding: 45px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.6);
    transition: 0.3s ease;
}

.report-card:hover {
    border-color: rgba(168, 85, 247, 0.4);
}

.form-label-custom {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    color: #a855f7;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 12px;
    padding-left: 4px;
}

/* --- INPUTS, SELECTS, TEXTAREA --- */
.form-input-group input, 
.form-input-group select, 
.form-input-group textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 18px;
    padding: 16px 22px;
    color: #fff !important;
    outline: none;
    transition: 0.3s;
    font-size: 0.95rem;
    font-family: inherit;
    line-height: 1.5;
}

/* Fix untuk Textarea agar tidak bisa di-resize sembarangan */
textarea {
    resize: none;
}

/* Fix Autofill Putih di Chrome */
input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 1000px #0f0f0f inset !important;
    -webkit-text-fill-color: white !important;
}

/* Focus State */
.form-input-group input:focus, 
.form-input-group select:focus, 
.form-input-group textarea:focus {
    border-color: #a855f7 !important;
    background: rgba(168, 85, 247, 0.08) !important;
    box-shadow: 0 0 20px rgba(168, 85, 247, 0.15);
}

/* Custom Select Dropdown Arrow */
select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23a855f7' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right 20px center !important;
    background-size: 16px !important;
    cursor: pointer;
}

select option {
    background: #0f0f0f !important;
    color: #fff !important;
}

/* --- BUTTON --- */
.btn-report {
    width: 100%;
    background: linear-gradient(135deg, #a855f7 0%, #6d28d9 100%);
    border: none;
    padding: 18px;
    border-radius: 50px;
    color: #fff;
    font-weight: 800;
    font-size: 1rem;
    cursor: pointer;
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.btn-report:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 25px rgba(168, 85, 247, 0.4);
}

.btn-report i {
    font-size: 1.1rem;
    transition: 0.3s;
}

.btn-report:hover i {
    transform: rotate(-15deg) scale(1.1);
}

/* --- ANIMATIONS --- */
.slide-up {
    animation: slideUp 0.8s ease forwards;
    opacity: 0;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }

@keyframes slideUp { 
    from { transform: translateY(30px); opacity: 0; } 
    to { transform: translateY(0); opacity: 1; } 
}

/* --- MOBILE RESPONSIVE --- */
@media (max-width: 576px) {
    .report-main-wrapper {
        padding-top: 100px;
    }
    
    .report-card {
        padding: 35px 20px;
        border-radius: 24px;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .btn-report {
        font-size: 0.85rem;
        letter-spacing: 1px;
        padding: 16px;
    }
}