.rasad-business-form {
    max-width: 720px;
    margin: 40px auto;
    padding: 24px 20px;
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
    direction: rtl;
    font-family: inherit;
}

.rasad-business-form h3 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #111827;
}

/* فیلدها */

.rasad-field {
    margin-bottom: 18px;
}

.rasad-field label {
    display: block;
    margin-bottom: 6px;
    font-size: 13px;
    color: #4b5563;
}

.rasad-field input[type="text"],
.rasad-field input[type="file"],
.rasad-field textarea,
.rasad-field select {
    width: 100%;
    padding: 10px 12px;
    border-radius: 10px;
    border: 1px solid #e5e7eb;
    font-size: 14px;
    outline: none;
    background: #f9fafb;
    transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.rasad-field textarea {
    resize: vertical;
    min-height: 80px;
}

.rasad-field input:focus,
.rasad-field textarea:focus,
.rasad-field select:focus {
    border-color: #3b82f6;
    background: #ffffff;
    box-shadow: 0 0 0 1px rgba(59, 130, 246, 0.15);
}

/* دکمه‌ها */

.rasad-next-step,
.rasad-prev-step,
.rasad-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 9px 18px;
    border-radius: 999px;
    border: none;
    font-size: 13px;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
    margin-top: 10px;
}

.rasad-next-step,
.rasad-submit {
    background: #2563eb;
    color: #ffffff;
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.25);
}

.rasad-next-step:hover,
.rasad-submit:hover {
    background: #1d4ed8;
    transform: translateY(-1px);
    box-shadow: 0 14px 30px rgba(37, 99, 235, 0.35);
}

.rasad-prev-step {
    background: #e5e7eb;
    color: #374151;
    margin-left: 8px;
}

.rasad-prev-step:hover {
    background: #d1d5db;
}

/* نقشه */

.rasad-map {
    width: 100%;
    height: 260px;
    border-radius: 16px;
    overflow: hidden;
    background: #e5e7eb;
}

/* مراحل */

.rasad-form-step {
    animation: rasad-step-fade 0.2s ease;
}

@keyframes rasad-step-fade {
    from { opacity: 0; transform: translateY(4px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ریسپانسیو */

@media (max-width: 768px) {
    .rasad-business-form {
        margin: 20px auto;
        padding: 18px 14px;
        border-radius: 14px;
        box-shadow: 0 10px 25px rgba(15, 23, 42, 0.06);
    }

    .rasad-next-step,
    .rasad-prev-step,
    .rasad-submit {
        width: 100%;
        justify-content: center;
        margin-left: 0;
        margin-bottom: 6px;
    }
}