<?php
wp_enqueue_script('datetimepicker');
extract( shortcode_atts( array(
'title' => '',
'id' => '',
), $atts ) );
$html = '<div class="contact">';
$html .= '<div class="booking-form">';
$html .= '<h3>'.esc_attr($title).'<i class="fa fa-cutlery"></i></h3>';
$html .= do_shortcode('[contact-form-7 id="'.$id.'" title="'.$title.'"]');
$html .= '</div>';
$html .= '</div>';
echo $html;
?>