/* ===== فرم مشاوره ===== */
.consult-form-wrapper {
    background: #f8fafc;
    padding: 40px;
    border-radius: 20px;
    max-width: 500px;
    margin: 40px auto;
    box-shadow: 0 10px 30px rgba(124, 58, 237, 0.08);
    border: 1px solid #ede9fe;
}

.consult-form-wrapper h3 {
    color: #1e1b4b;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 8px;
    text-align: center;
}

.consult-form-wrapper p {
    color: #6b7280;
    text-align: center;
    margin-bottom: 24px;
}

.consult-form .form-group {
    margin-bottom: 20px;
}

.consult-form label {
    display: block;
    font-weight: 600;
    color: #1e1b4b;
    margin-bottom: 6px;
}

.consult-form input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 1rem;
    transition: border-color 0.3s;
    background: #fff;
}

.consult-form input:focus {
    outline: none;
    border-color: #7c3aed;
    box-shadow: 0 0 0 4px rgba(124, 58, 237, 0.1);
}

.btn-consult {
    width: 100%;
    background: #7c3aed;
    color: #fff;
    padding: 14px;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
}

.btn-consult:hover {
    background: #6d28d9;
    transform: translateY(-2px);
}

.consult-success {
    background: #dcfce7;
    color: #166534;
    padding: 12px 16px;
    border-radius: 10px;
    margin-bottom: 16px;
    text-align: center;
    border-right: 4px solid #22c55e;
}

.consult-error {
    background: #fee2e2;
    color: #991b1b;
    padding: 12px 16px;
    border-radius: 10px;
    margin-bottom: 16px;
    text-align: center;
    border-right: 4px solid #ef4444;
}