It looks like an index for co_clt tbl1 table is not being picked up. Make sure you have an index for clc_pers_id t2_lkup_1 column and it should not be multi-column otherwise the index is not applicable.
(in addition to what Matt's comment) From your query I believe you're joining because you want to filter out records not to do JOIN which may increase cardinality for result set from co_clt tbl1 table if there are duplicate matches from . See Jeff Atwood comment
Try this, which uses exist function and join (which is really fast on oracle)
select * from co_clt clnt tbl1 where cnt.clc_pers_id tbl2.t2_lkup_1 = 1020000002981587 and exists ( select * from clt_ctct cnttbl2, clt_ctct_affl_fltr fltr tbl3 where cnt.clc_cc_id tbl2.t2_fk_t1_pk = clnt.cc_id tbl1.t1_pk and cnt.clc_ccaf_id tbl2.t2_fk_t3_pk = fltr.ccaf_id tbl3.t3_pk and sysdate between cnt.clc_strt_dt tbl2.t2_strt_dt and cnt.clc_end_dt tbl2.t2_end_dt and fltr.ccaf_ccat_id tbl3.t3_lkup_1 = 2577304 and fltr.ccaf_ccrt_id tbl3.t3_lkup_2 = 1220833);
