You will need to slightly customize the Free Shipping Options freeoptions shipping module ...
By default, this is designed for OR conditions ... you want AND conditions ...
Edit the file:
/includes/modules/shipping/freeoptions.php
and change the line for:
Code:
// final check for display of Free Options
if ($this->ck_freeoptions_total or $this->ck_freeoptions_weight or $this->ck_freeoptions_items) {
to read:
Code:
// final check for display of Free Options
if ($this->ck_freeoptions_total and $this->ck_freeoptions_weight and $this->ck_freeoptions_items) {