Explore the Wild’s of Africa

Adventure

Adventure

Celebrate

Celebrate

Discovery

Discovery

Extraordinary Experiences

Extraordinary Experiences

Family

Family

Safari

Safari

Desert Explorer

Experiencing an 18 day journey through the Namibian national parks will undoubtedly leave you with memories that will last a lifetime. Begin in Windhoek, home to the stunning ‘Olive Exclusive Boutique Hotel’ where the balance between modern and traditional architecture provides a real unique experience. A safari through places such as the Kalahari Desert, Fish River Canyon and The Giants Playground will take you within touching distance of some of the most naturally beautiful places in Africa, whilst also giving you the opportunity to see the majestic Big 5 in their natural habitat. 

Explore Namibia

From Bush to Beach in Tanzania

Tanzania is a perfect place to get a taste of the wild. Why visit one, or even two nature reserves, when there are five of the best-known reserves within the whole of Africa located within Tanzania? During this trip you will be taken around the country stopping at the aforementioned five nature reserves, ensuring you get the incredible opportunity to witness Africa’s most famous animals in their natural habitats. Whether it be leopards, lions, rhinos or elephants you will see them all – during one of the privately guided journeys through the reserves or from the comfort of your hotel. Finish your time in Tanzania with a trip to the breath-taking Zanzibar Island which is home to several beautiful sandy beaches, allowing you to indulge in some relaxation on the beach after some serious adventure.

Discover Tanzania’s Big Five

The Wonders of Botswana and Zambia

Escape to Botswana and Zambia for the adventure of a lifetime, spending 13 days exploring the vast landscape of these two African countries. Take in the beauty of the Kalahari Game Reserve, where you will be able to see Elephants bathing in the river before heading to Livingstone in Zambia. Zambia offers you the chance to really immerse yourself in some traditional culture, such as their vibrant markets and traditional village life. 

Experience two destinations in one journey

At Quintessentially Travel, we want to make sure your safari is a blend of wild exploration and lush indulgence. From the incredible resorts you’ll stay in with exclusive VIP benefits, to the private charters and flights we can arrange to take your trip to the next level, we’ll make sure your adventure is like no other. Your dedicated Travel Specialist will create a completely bespoke itinerary so that you can have the safari escape you’ve always imagined – but with a few extra Quintessentially Travel perks thrown in, of course.

If you’d like to organise one of our luxury safaris, get in touch with us to tell us your ideas today, or take a look at our other safari itineraries for inspiration. 

// Replace the Salesforce submission with Kentico data submission
$(‘#newsletter-form-‘ + 93 + ‘ form’).on(‘submit’, function (event) {
event.preventDefault();

let formData = {
//Title: $(‘#salutation’).val(), // Replace with the actual ID of the Title input field
FirstName: $(‘#first_name’).val(), // Replace with the actual ID of the FirstName input field
LastName: $(‘#last_name’).val(), // Replace with the actual ID of the LastName input field
Email: $(‘#email’).val(), // Replace with the actual ID of the Email input field
Country: $(‘#country’).val(), // Replace with the actual ID of the Country input field
};
console.log(“formData: “, formData);
$.ajax({
url: “/NewsletterForm/Submit”, // Update with your actual controller and action
method: “POST”,
data: formData,
success: function (data) {
// Handle success, e.g., display a success message
console.log(“Form submitted successfully!”);
console.log(“Returned JSON:”, data); // Log the returned JSON data
$(‘#newsletter-form-‘ + 93 + ‘ .title’).hide();

Cookies.set(‘NewsletterDismissed’, true, { path: ‘/’ });

setTimeout(function () {
$(‘#newsletter-popup’).removeClass(‘active’);
$(‘body’).removeClass(‘mask’);
}, 2000);

window.location.replace(“/en-gb/thank-you-for-signing-up-to-our-newsletter”);
},
error: function (error) {
// Handle error, e.g., display an error message
console.log(‘Error submitting form:’, error);
}
});
});