.elementor-3026 .elementor-element.elementor-element-669d0a1{--display:flex;}/* Start custom CSS for shortcode, class: .elementor-element-c20c7cd *//* Import Font - Menambahkan Orbitron untuk Headline */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&family=Orbitron:wght@400;700;900&display=swap');

/* --- BAGIAN HEADLINE YANG DIUBAH --- */

.form-header h3 {
    margin: 0 0 10px 0;
    color: #00f2ff;
    font-size: 26px; /* Sedikit lebih besar agar tegas */
    text-align: center;
    font-family: 'Orbitron', sans-serif; /* Font Cyberpunk */
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 900;
    
    /* Efek Glow Statis */
    text-shadow: 
        0 0 5px #00f2ff,
        0 0 10px #00f2ff,
        0 0 20px #00f2ff;
        
    /* Animasi Menyala Berkedip */
    animation: neon-flicker 2s infinite alternate;
}

/* Animasi Glitch/Flicker Neon */
@keyframes neon-flicker {
    0%, 18%, 22%, 25%, 53%, 57%, 100% {
        text-shadow: 
            0 0 5px #00f2ff,
            0 0 10px #00f2ff,
            0 0 20px #00f2ff,
            0 0 40px #00f2ff;
        opacity: 1;
    }
    20%, 24%, 55% {
        text-shadow: none;
        opacity: 0.7;
    }
}

/* --- LANJUTAN CSS ANDA (TIDAK BERUBAH) --- */

.optima-form-container {
    max-width: 550px;
    margin: 20px auto;
    padding: 30px;
    background: #0f172a;
    border-radius: 20px;
    border: 1px solid rgba(0, 242, 255, 0.3);
    font-family: 'Inter', sans-serif;
    color: #f8fafc;
    box-sizing: border-box;
}

/* Tambahkan sedikit glow pada deskripsi di bawah headline */
.form-header p {
    text-align: center;
    font-size: 13px;
    color: #94a3b8;
    margin-bottom: 25px;
    letter-spacing: 1px;
}

/* Perbaikan Radio Button (Tetap Sama Seperti Sebelumnya) */
.wpcf7-list-item {
    display: block;
    margin: 10px 0 !important;
}

.wpcf7-list-item label {
    display: flex !important;
    align-items: center !important;
    cursor: pointer;
    background: #1e293b;
    padding: 12px 15px;
    border-radius: 10px;
    border: 1px solid #334155;
    transition: all 0.2s ease;
}

.wpcf7-list-item input[type="radio"] {
    appearance: none;
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid #00f2ff;
    border-radius: 50%;
    margin-right: 12px !important;
    position: relative;
    cursor: pointer;
    flex-shrink: 0;
}

.wpcf7-list-item input[type="radio"]:checked::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    background-color: #00f2ff;
    border-radius: 50%;
    box-shadow: 0 0 8px #00f2ff;
}

.wpcf7-list-item input[type="radio"]:checked + .wpcf7-list-item-label {
    color: #00f2ff;
}

.wpcf7-list-item:hover label {
    border-color: #00f2ff;
}

.wpcf7-form-control.wpcf7-text, 
.wpcf7-form-control.wpcf7-textarea,
.wpcf7-form-control.wpcf7-tel {
    width: 100% !important;
    padding: 12px 15px !important;
    border: 1px solid #334155;
    border-radius: 10px;
    background: #1e293b;
    color: #ffffff;
    font-size: 16px;
    box-sizing: border-box;
}

.wpcf7-submit {
    width: 100%;
    height: 55px;
    line-height: 1;
    padding: 0 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #00f2ff;
    color: #0f172a;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    text-transform: uppercase;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.wpcf7-submit:hover {
    box-shadow: 0 0 20px rgba(0, 242, 255, 0.6);
}

@media (min-width: 768px) {
    .wpcf7-list-item {
        display: inline-block;
        width: calc(33.33% - 10px);
        margin-right: 10px !important;
    }
}/* End custom CSS */