You can use the code bellow to remove listing booking Service fee or changing VAT tax percent
add_filter( 'esb_listing_fees', function($fee){
return 0; // percent
} );
add_filter( 'esb_listing_vat', function($vat){
return 10; // percent
} );