#consultation-form{
    width:88%;
    max-width:1110px;
    margin:35px auto;
    direction:rtl;
    text-align:center;
}

.consultation-box{
    background:#fff;
    border:1px solid #e5e5e5;
    border-top:5px solid #19b8af;
    border-radius:22px;
    padding:28px 30px 30px;
    box-shadow:0 5px 20px rgba(0,0,0,.07);
}

.consultation-box h2{
    margin:0 0 8px;
    font-size:21px;
    font-weight:700;
    color:#333;
}

.consultation-box .consultation-desc{
    margin:0 0 23px;
    font-size:13.5px;
    color:#666;
    line-height:26px;
}

.consultation-fields{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
    justify-content:center;
}

.consultation-field{
    flex:1;
    min-width:220px;
}

.consultation-field input,
.consultation-field select,
.consultation-field textarea{
    width:100%;
    box-sizing:border-box;
    border:1px solid #d7d7d7;
    border-radius:12px;
    background:#fafafa;
    padding:11px 13px;
    font-family:IRANSans!important;
    font-size:13px;
    direction:rtl;
    outline:none;
    transition:.2s;
}

.consultation-field input,
.consultation-field select{
    height:45px;
}

.consultation-field textarea{
    min-height:72px;
    resize:vertical;
    line-height:24px;
}

.consultation-field input:focus,
.consultation-field select:focus,
.consultation-field textarea:focus{
    border-color:#19b8af;
    background:#fff;
    box-shadow:0 0 0 3px rgba(25,184,175,.10);
}

.consultation-time{
    width:100%;
    margin-top:12px;
}

.consultation-submit{
    margin-top:18px;
    border:0;
    border-radius:25px;
    background:#19b8af;
    color:#fff;
    padding:11px 30px;
    min-width:245px;
    font-family:IRANSans!important;
    font-size:14px;
    font-weight:500;
    cursor:pointer;
    transition:.2s;
}

.consultation-submit:hover{
    background:#159e96;
}

.consultation-message{
    max-width:700px;
    margin:0 auto 18px;
    padding:10px 15px;
    border-radius:12px;
    font-size:13px;
}

.consultation-success{
    background:#e8f7ee;
    color:#267341;
}

.consultation-error{
    background:#fff0f0;
    color:#a33;
}

@media screen and (max-width:700px){
    #consultation-form{
        width:92%;
        margin:25px auto;
    }

    .consultation-box{
        padding:22px 15px;
        border-radius:18px;
    }

    .consultation-box h2{
        font-size:18px;
        line-height:30px;
    }

    .consultation-field{
        flex:0 0 100%;
        min-width:0;
    }

    .consultation-submit{
        width:100%;
        min-width:0;
    }
}