You have no predicate in your WHERE clause to join the tables a,b and c, with means that every row of each table joins to the other. This is called a cartesian product.
Try adding to oyur where clause:
AND A.FIR_ID = C.FIR_ID
AND A.COUNTRY_CODE_ID B.COUNTRY_ID

Gerry