
Assistance form
Whether you have feedback to share, concerns to address, or simply need assistance, please fill out the form below
We are here to help!
Need help? We’ll get back to you within 24 hours.
Whether you have feedback to share, concerns to address, or simply need assistance, please fill out the form below
Other contact information
Customer service
Whatsapp
+1 877 733 0724
SMS
SMS +1 321 342 3063
Our office
1777 McCoy Rd, Orlando, FL 32809
From Monday to Friday, 7:00 am – 11:00 pm
document.addEventListener(‘DOMContentLoaded’, function () {
function activateChat() {
document.querySelector(‘.helpButtonEnabled’).click();
}
const params = new URLSearchParams(window.location.search);
const paramUrl = params.get(«option»);
let option = »;
if (paramUrl) {
switch (paramUrl.toLowerCase()) {
case ‘lost-luggage’:
option = ‘Lost luggage’;
break;
case ‘inquiry’:
option = ‘Inquiry’;
break;
case ‘claim’:
option = ‘Claim’;
break;
default:
break;
}
const select = document.getElementById(«type-message»);
const labelSelect = document.getElementById(«label-select»);
if (select && option) {
window.onload = () => {
setTimeout(() => {
select.value = option;
const event = new Event(‘change’, { bubbles: true });
select.dispatchEvent(event);
labelSelect.classList.add(‘active’);
}, 100)
}
}
}
});