/* Styling Khusus Halaman Bantuan */

.support-title {
    font-family: 'Instrument Serif', serif;
    font-size: 2.5rem;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.support-subtitle {
    font-family: 'Inter', sans-serif;
    color: #6b7280;
    font-size: 1rem;
    line-height: 1.5;
}

.support-label {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    color: #374151;
}

.custom-card {
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
}

/* Styling Tombol Pilihan (Radio) */
.option-btn {
    border-color: #e5e7eb;
    color: #4b5563;
    background-color: #f9fafb;
    border-radius: 12px;
    transition: all 0.2s ease;
}

.option-btn:hover {
    background-color: #f3f4f6;
    border-color: #d1d5db;
}

.btn-check:checked + .option-btn {
    background-color: #eff6ff;
    border-color: #3b82f6;
    color: #1d4ed8;
    box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.2);
}

/* Form Inputs */
.custom-select, .custom-textarea {
    border-radius: 10px;
    border: 1px solid #d1d5db;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
}

.custom-select:focus, .custom-textarea:focus {
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
}

/* Tombol WA */
.btn-wa-submit {
    background-color: #25D366;
    color: white;
    font-weight: 600;
    border-radius: 10px;
    font-family: 'Inter', sans-serif;
    transition: background-color 0.2s;
    border: none;
}

.btn-wa-submit:hover {
    background-color: #1EBE55;
    color: white;
}