Infographic: A Traveler’s Guide to Can Tho Airport
https://cdn.tailwindcss.com
https://cdn.jsdelivr.net/npm/chart.js
body {
font-family: ‘Inter’, sans-serif;
}
.flow-step {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
text-align: center;
position: relative;
width: 180px;
min-height: 150px;
}
.flow-step:not(:last-child)::after {
content: ‘→’;
position: absolute;
right: -30px;
top: 50%;
transform: translateY(-50%);
font-size: 2.5rem;
color: #d1d5db;
}
@media (max-width: 1024px) {
.flow-container {
flex-direction: column;
align-items: center;
}
.flow-step:not(:last-child)::after {
content: ‘↓’;
right: 50%;
top: 100%;
transform: translateX(50%) translateY(-10px);
}
}
.chart-container {
position: relative;
width: 100%;
max-width: 500px;
margin-left: auto;
margin-right: auto;
height: 300px;
max-height: 400px;
}
An essential guide to navigating VCA airport, avoiding queues, and starting your trip with ease.
The Two Paths to Entry
Your journey through the airport depends on your visa type. See your step-by-step process below.
📄 E-Visa & Visa-Free Visitors
1
Immigration
Present Passport & E-visa
⏳Long Queues Possible
2
Baggage Claim
Collect Luggage
3
Customs
Proceed to Exit
✈️
Welcome to Vietnam
Start Your Adventure
🛂 Visa-on-Arrival Visitors
1
Visa Counter
Submit Paperwork & Fee
⏳Major Delay Point
2
Immigration
Get Passport Stamped
⏳Second Queue Likely
3
Baggage Claim
Collect Luggage
4
Customs
Proceed to Exit
✈️
Welcome to Vietnam
Finally, Your Adventure
The Solution: Expedited Entry Service
Bypass the queues and airport stress. Our team meets you at the gate and escorts you through a VIP priority lane.
⏱️
Save Time
Up to an hour saved
😊
Eliminate Stress
We handle all paperwork
✅
Peace of Mind
Forgot a photo? No cash? We’ll sort it.
🤝
Personalized Help
Ideal for families & first-timers
Visa-on-Arrival Fees
The visa stamping fee must be paid in cash (USD or VND) at the landing visa counter. ATMs are not available in this area.
Pre-Arrival Checklist
- ✓
Passport: Valid for 6+ months with 2 blank pages.
- ✓
Visa/Approval Letter: A printed copy is essential.
- ✓
Accommodation Info: Address for your arrival form.
- ❗
VOA Only: 4x6cm photo and completed NA1 form.
- ❗
VOA Only: Exact cash ($25 or $50) for stamping fee.
Book with Confidence
We’ve built our reputation on reliable service and customer satisfaction since 2008.
Book Your Fast-Track Service Now
document.addEventListener(‘DOMContentLoaded’, () => {
const ctx = document.getElementById(‘voaFeeChart’).getContext(‘2d’);
const wrapLabel = (str) => {
if (str.length > 16) {
const words = str.split(‘ ‘);
const lines = [];
let currentLine = ”;
words.forEach(word => {
if ((currentLine + ‘ ‘ + word).length > 16 && currentLine.length > 0) {
lines.push(currentLine);
currentLine = word;
} else {
currentLine = currentLine ? `${currentLine} ${word}` : word;
}
});
lines.push(currentLine);
return lines;
}
return str;
};
const originalLabels = [‘Single-Entry Visa’, ‘Multi-Entry Visa’];
const chartLabels = originalLabels.map(label => wrapLabel(label));
new Chart(ctx, {
type: ‘bar’,
data: {
labels: chartLabels,
datasets: [{
label: ‘Stamping Fee (USD)’,
data: [25, 50],
backgroundColor: [‘#4BB3FD’, ‘#0496FF’],
borderColor: [‘#00487C’],
borderWidth: 2,
borderRadius: 5,
}]
},
options: {
responsive: true,
maintainAspectRatio: false,
plugins: {
legend: {
display: false
},
tooltip: {
backgroundColor: ‘#00487C’,
titleFont: { size: 14, weight: ‘bold’ },
bodyFont: { size: 12 },
displayColors: false,
callbacks: {
title: function(tooltipItems) {
const item = tooltipItems[0];
let label = item.chart.data.labels[item.dataIndex];
if (Array.isArray(label)) {
return label.join(‘ ‘);
}
return label;
},
label: function(context) {
return `Fee: $${context.raw}`;
}
}
}
},
scales: {
y: {
beginAtZero: true,
grid: {
color: ‘#e2e8f0’
},
ticks: {
color: ‘#475569’,
font: {
weight: ‘600’
}
}
},
x: {
grid: {
display: false
},
ticks: {
color: ‘#475569’,
font: {
weight: ‘600’
}
}
}
}
}
});
});