Interactive Guide to Can Tho Airport Arrival https://cdn.tailwindcss.com Goal: Organize/Compare. -> Viz/Method: Interactive cards to select visa status, which then reveals a dynamic, icon-based process timeline built with HTML/CSS Flexbox. -> Interaction: Click to reveal path. -> Justification: More engaging and personalized than static text. Visually separates user paths for clarity. – Report Info: Queues at immigration/VOA. -> Goal: Inform/Persuade. -> Viz/Method: Warning icons (Unicode) and accent colors (amber) on specific steps of the timeline. -> Interaction: A “Skip This Queue” button that smooth-scrolls to the solution. -> Justification: Draws attention to the core problem the service solves, creating a compelling reason to act. – Report Info: Trust elements (experience, guarantee, etc.). -> Goal: Inform/Build Trust. -> Viz/Method: A clean, 4-column grid of cards with icons and links. -> Interaction: Clickable links. -> Justification: Breaks down trust points into scannable, visually appealing components. – Report Info: Preparatory details (docs, customs, transport). -> Goal: Organize. -> Viz/Method: An accordion component built with HTML/JS. -> Interaction: Click to expand/collapse. -> Justification: Hides detailed but secondary information, reducing initial clutter and allowing users to explore it on demand. CONFIRMATION: NO SVG graphics used. NO Mermaid JS used. –> body { font-family: ‘Inter’, sans-serif; } .active-tab { border-color: #0d9488; /* teal-600 */ background-color: #f0fdfa; /* teal-50 */ color: #115e59; /* teal-800 */ } .timeline-step { transition: all 0.3s ease-in-out; display: flex; flex-direction: column; height: 100%; } .accordion-content { max-height: 0; overflow: hidden; transition: max-height 0.3s ease-out; }

Your Guide to Can Tho Airport Arrival

From Landing to Luxury Exit. Navigate the airport like a pro.

Let’s Get Started

Your arrival journey depends on your visa. Select your status below to see your personalized path.

❓

I Need a Visa

Apply now for a hassle-free visa through our guaranteed expert service.

The VIP Solution: Immigration Fast Track

Why wait? Bypass the queues and start your Vietnam adventure the moment you land.

How It Works

1

Personal Greeting

Our agent meets you right after you deplane, holding a sign with your name.

2

Priority Escort

We handle your documents and escort you to an exclusive priority immigration lane.

3

Swift Stamping & Exit

Your passport is stamped in minutes. You’re free to go while others are still in line.

Key Benefits

  • ⏰
    Save Up to 2 Hours
    Your most valuable asset is time. Don’t waste it in a queue.
  • 😊
    Eliminate All Stress
    No confusion, no paperwork hassle. We handle everything.
  • ⭐
    Enjoy a VIP Welcome
    Start your trip with a touch of luxury and personal care.
Book Fast Track Now

Ready for a Seamless Arrival?

Book your Fast Track service in 3 simple steps.

1

Fill Out The Form

Provide your flight and personal details on our secure online form.

2

Complete Payment

Pay securely for the service. We protect your transaction.

3

Receive Confirmation

Get your confirmation email with all instructions for your arrival.

Essential Arrival Toolkit

Everything else you need to know for a perfect arrival. Click to expand.

  • Passport Validity: Must be valid for at least 6 months from your entry date.
  • Printed Documents: Always carry paper copies of your e-visa or Visa Approval Letter.
  • Passport Photos (for VOA): Two 4×6 cm photos with a white background.
  • Booking Confirmations: Have proof of your flight out and your first night’s accommodation.

VOA Stamping Fee: This is critical. You must pay in cash (USD preferred). Credit cards are NOT accepted at the VOA counter.

  • Single-entry visa: US$25
  • Multi-entry visa: US$50

Local Currency (VND): It’s best to have some VND for immediate expenses like taxis or snacks. ATMs are available after you clear customs.

Can Tho Int’l Airport (VCA) is located about 10km from the city center. It’s a modern, compact, and easy-to-navigate airport.

Getting to the city:

  • Taxi: Most convenient. Approx. 15-20 mins, 200k-250k VND. Use trusted brands like Mai Linh or Vinasun.
  • Ride-Hailing (Grab): Often slightly cheaper. Use the app after connecting to airport Wi-Fi.
  • Private Car: Pre-book for maximum comfort and a fixed price.
  • Declare Cash: Any amount over US$5,000 must be declared.
  • Prohibited Items: Narcotics, weapons, anti-government materials, pornography.
  • Duty-Free Allowance: 200 cigarettes, 1.5 liters of spirits.
  • Medication: Keep prescriptions in original packaging with a doctor’s note.

© 2025 VietnamImmigration.org. All rights reserved.

Your trusted partner for a smooth journey to Vietnam.

const visaTabs = document.querySelectorAll(‘.visa-tab’); const journeySection = document.getElementById(‘arrival-journey’); const fastTrackSection = document.getElementById(‘fast-track-solution’); const paths = { ‘path-evisa’: { title: “Your E-Visa / Visa-Free Arrival Path”, steps: [ { icon: ‘πŸ›¬’, name: ‘Deplane & Enter Terminal’, detail: ‘Follow signs to Immigration.’ }, { icon: ‘πŸ›‚’, name: ‘Immigration Checkpoint’, detail: ‘Present your passport and e-visa.’, isProblem: true, problemText: “Potential for long queues (30-60+ min).” }, { icon: ‘πŸ›„’, name: ‘Baggage Claim’, detail: ‘Collect your checked luggage.’ }, { icon: ‘πŸ›ƒ’, name: ‘Customs Check’, detail: ‘Proceed through the Green Channel if nothing to declare.’ }, { icon: ‘πŸ‘‹’, name: ‘Welcome to Vietnam!’, detail: ‘You are free to exit the airport.’ } ] }, ‘path-voa’: { title: “Your Visa on Arrival (VOA) Path”, steps: [ { icon: ‘πŸ›¬’, name: ‘Deplane & Enter Terminal’, detail: ‘Follow signs to Visa on Arrival.’ }, { icon: ‘πŸ“„’, name: ‘VOA Counter’, detail: ‘Submit Approval Letter, photos, passport & pay stamping fee.’, isProblem: true, problemText: “Queues can be long and chaotic (30-60+ min).” }, { icon: ‘πŸ›‚’, name: ‘Immigration Checkpoint’, detail: ‘Get your passport stamped for entry.’, isProblem: true, problemText: “A second queue! More waiting.” }, { icon: ‘πŸ›„’, name: ‘Baggage Claim’, detail: ‘Collect your checked luggage.’ }, { icon: ‘πŸ‘‹’, name: ‘Welcome to Vietnam!’, detail: ‘You are finally free to exit.’ } ] } }; function renderJourney(pathKey) { const pathData = paths[pathKey]; if (!pathData) return; let stepsHtml = pathData.steps.map((step, index) => { const problemClass = step.isProblem ? ‘border-amber-400 bg-amber-50’ : ‘border-slate-200 bg-white’; const problemHtml = step.isProblem ? `
⚠️ ${step.problemText}
` : ”; // Add an arrow between steps, but not for the last one. const arrowHtml = index < pathData.steps.length – 1 ? '‘ : ”; return `

${step.icon}

${step.name}

${step.detail}

${problemHtml} ${arrowHtml}
`; }).join(”); journeySection.innerHTML = `

${pathData.title}

${stepsHtml}
`; document.querySelectorAll(‘.scroll-to-solution’).forEach(button => { button.addEventListener(‘click’, () => { fastTrackSection.scrollIntoView({ behavior: ‘smooth’ }); }); }); } visaTabs.forEach(tab => { tab.addEventListener(‘click’, () => { visaTabs.forEach(t => t.classList.remove(‘active-tab’)); tab.classList.add(‘active-tab’); const targetPath = tab.getAttribute(‘data-target’); renderJourney(targetPath); }); }); // Accordion Logic const accordionItems = document.querySelectorAll(‘.accordion-item’); accordionItems.forEach(item => { const header = item.querySelector(‘.accordion-header’); const content = item.querySelector(‘.accordion-content’); const icon = header.querySelector(‘span:last-child’); header.addEventListener(‘click’, () => { const isExpanded = content.style.maxHeight && content.style.maxHeight !== ‘0px’; // Close all other items accordionItems.forEach(otherItem => { if (otherItem !== item) { otherItem.querySelector(‘.accordion-content’).style.maxHeight = ‘0px’; otherItem.querySelector(‘.accordion-header span:last-child’).classList.remove(‘rotate-180’); } }); // Toggle current item if (isExpanded) { content.style.maxHeight = ‘0px’; icon.classList.remove(‘rotate-180’); } else { content.style.maxHeight = content.scrollHeight + ‘px’; icon.classList.add(‘rotate-180’); } }); }); // Auto-select and render the first tab on load if (visaTabs.length > 0) { visaTabs[0].click(); }
evisa.vn Avatar

Published by