“The tour was unforgettable! Everything was well-organized and the guide was amazing.”
– Alicia R.
★★★★★
“Best transportation service I've used in Jamaica. Professional, punctual, and super friendly.”
– James T.
★★★★★
“Luxury experience from start to finish. Highly recommend Bennett Tours!”
– Sasha M.
Choosing a selection results in a full page refresh.
Opens in a new window.
Booking & Deposit Policy
All deposits are non-refundable. If you cancel 48 hours in advance, no extra fees will apply. However, deposits are not returned.
You can recover your deposit by referring someone who books and completes a trip of equal or greater value. We will refund your deposit or apply it as a discount for the person you referred.
Refer more than one person and earn credit toward your own future trip.
// Make the modal show when the Catalog menu item is clicked
document.body.addEventListener('click', function (e) {
const target = e.target.closest('a');
if (
target &&
target.textContent.trim().toLowerCase() === 'catalog'
) {
e.preventDefault();
openBookingModal('continueBookTours'); // Reuse the same redirect
}
});