Home Missed Flight Date Change Seat Upgrade Cancellation Policy Contact Us
Support Available Now

Reach Us Instantly

Independent flight assistance — expert guidance on bookings, cancellations, baggage & more. Real specialists, no bots.

Independent Service: AirlinesGuideline is a third-party flight assistance service. Not affiliated with or endorsed by any airline.

// ── Scroll reveal ── const obs=new IntersectionObserver(entries=>{ entries.forEach(e=>{if(e.isIntersecting){e.target.classList.add('in');obs.unobserve(e.target)}}); },{threshold:0.1,rootMargin:'0px 0px -30px 0px'}); document.querySelectorAll('.reveal').forEach(el=>obs.observe(el)); // ── Footer animations ── const fObs=new IntersectionObserver(entries=>{ entries.forEach(e=>{if(e.isIntersecting){e.target.classList.add('footer-in');fObs.unobserve(e.target)}}); },{threshold:0.15}); document.querySelectorAll('.footer-col-anim,.footer-bottom-anim').forEach(el=>fObs.observe(el)); // ── Back to top ── const backBtn=document.getElementById('backToTop'); window.addEventListener('scroll',()=>{backBtn.classList.toggle('visible',window.scrollY>400)}); // ── Scroll progress bar ── window.addEventListener('scroll',()=>{ const s=(window.scrollY/(document.documentElement.scrollHeight-window.innerHeight))*100; document.getElementById('scrollProgress').style.width=s+'%'; }); // ── Cursor glow ── const cg=document.getElementById('cursorGlow'); document.addEventListener('mousemove',e=>{cg.style.left=e.clientX+'px';cg.style.top=e.clientY+'px';}); // ── Popup ── function openPopup(){document.getElementById('popupOverlay').classList.add('active');document.body.style.overflow='hidden';} function closePopup(){document.getElementById('popupOverlay').classList.remove('active');document.body.style.overflow='';} function closePopupOutside(e){if(e.target===document.getElementById('popupOverlay'))closePopup();} document.addEventListener('keydown',e=>{if(e.key==='Escape')closePopup();});