Plan Your Journey
Tell us about your dream trip and we’ll design a personalized Southern African journey just for you.
Step 1: About You
Let’s get to know you before we start planning your journey.
(function() {
let step = 1;
const next = document.getElementById(‘btn-next’);
const prev = document.getElementById(‘btn-prev’);
const bar = document.getElementById(‘journey-progress’);
next.onclick = () => {
if (step === 1) {
const name = document.getElementById(‘field-name’).value;
const email = document.getElementById(‘field-email’).value;
const country = document.getElementById(‘field-country’).value;
if (!name || !email || !country) {
alert(‘Please fill in all required fields.’);
return;
}
}
if(step {
if(step > 1) {
document.getElementById(‘step-‘+step).style.display = ‘none’;
step–;
document.getElementById(‘step-‘+step).style.display = ‘block’;
update();
}
};
function update() {
bar.style.width = (step/6*100)+’%’;
prev.style.display = step === 1 ? ‘none’ : ‘block’;
next.innerText = step === 6 ? ‘Submit’ : ‘Next’;
}
})();
