Infographic: A Guide to Van Don Airport Arrival
https://cdn.tailwindcss.com
https://cdn.jsdelivr.net/npm/chart.js
Goal: Organize, Compare. -> Viz/Method: Side-by-side HTML/CSS flowcharts. -> Interaction: Static. -> Justification: Directly visualizes the added complexity of the VOA process, making the value proposition of skipping steps clear. -> Library/Method: HTML/Tailwind. CONFIRMING NO SVG/Mermaid.
– Report Info: VOA Stamping Fees. -> Goal: Inform, Compare. -> Viz/Method: Bar Chart. -> Interaction: Static. -> Justification: Best for direct comparison of two fixed monetary values. -> Library/Method: Chart.js.
– Report Info: 100% Guarantee. -> Goal: Build Trust. -> Viz/Method: Donut Chart. -> Interaction: Static. -> Justification: Visually engaging way to represent a complete value (100%). -> Library/Method: Chart.js.
– Report Info: Service Benefits & Trust Metrics. -> Goal: Inform, Persuade. -> Viz/Method: Info cards with Unicode icons and large text callouts. -> Justification: Breaks down qualitative info into scannable, visually appealing chunks. -> Library/Method: HTML/Tailwind.
– Report Info: Preparation Checklists. -> Goal: Organize. -> Viz/Method: HTML Accordion. -> Justification: Condenses supplementary info to keep the main infographic uncluttered, accessible on demand. -> Library/Method: HTML/Tailwind.
–>
body { font-family: ‘Inter’, sans-serif; background-color: #e0f7fa; color: #023047; }
.chart-container { position: relative; width: 100%; max-width: 600px; margin-left: auto; margin-right: auto; height: 250px; max-height: 350px; }
@media (min-width: 640px) {
.chart-container { height: 300px; }
}
.flow-card { background-color: white; border-radius: 0.75rem; padding: 1.5rem; box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1); transition: transform 0.2s; }
.flow-card:hover { transform: translateY(-5px); }
.flow-connector { position: relative; padding-bottom: 2.5rem; }
.flow-connector::after { content: ‘βΌ’; font-size: 1.5rem; color: #8ecae6; position: absolute; bottom: 0rem; left: 50%; transform: translateX(-50%); }
.accordion-content { max-height: 0; overflow: hidden; transition: max-height 0.3s ease-in-out; }
details[open] .accordion-content { max-height: 500px; }
details summary::-webkit-details-marker { display: none; }
details[open] summary .accordion-icon { transform: rotate(45deg); }
The Arrival Challenge
Navigating an international airport can be complex. See how your arrival at Van Don (VDO) works, and how to make it seamless.
Your Journey Through Van Don Airport
E-Visa / Visa-Free Arrival
βοΈ
1. Immigration Checkpoint
Proceed to the main immigration hall. Present your passport & printed E-Visa.
π§³
2. Baggage Claim
Collect your checked luggage from the assigned carousel.
β
3. Customs Check
Walk through the Green Channel if you have nothing to declare.
π
4. Airport Exit
Welcome to Vietnam!
Visa on Arrival (VOA)
π
1. Landing Visa Counter
Your FIRST stop. Submit documents & pay the stamping fee here.
βοΈ
2. Immigration Checkpoint
After getting the visa sticker, queue for the entry stamp.
π§³
3. Baggage Claim
Collect your checked luggage.
π
4. Airport Exit
Welcome to Vietnam!
The Difference is Clear
The Visa on Arrival process adds an extra, often lengthy, step. Long queues are common at both the visa and immigration counters. Our Expedited Entry Service lets you bypass these lines entirely, saving you valuable time and eliminating stress.
Why Choose Expedited Entry?
β±οΈ
Save Time
Turn potential hours of waiting into mere minutes. Start your vacation the moment you land.
π
Eliminate Stress
No confusing paperwork, no language barriers. We handle everything for you.
π¨βπ©βπ§βπ¦
Family Friendly
A lifesaver for those with children, elderly parents, or heavy luggage.
π
VIP Welcome
Being greeted and escorted personally is the perfect start to a special trip.
Book With Confidence
VOA Stamping Fees
A mandatory cash fee at the VOA counter. Our service can handle this for you.
Our Guarantee to You
We stand by our service promise, ensuring your peace of mind.
Arrive Prepared
Essential Checklist
+
- Passport with 6+ months validity.
- Printed E-Visa or Visa Approval Letter.
- Address of your first night’s accommodation.
- For VOA: 4x6cm photo and USD cash for stamping fee.
Customs Quick-Guide
+
- Declare cash over US$5,000.
- Duty-free limits: 1.5L spirits, 200 cigarettes.
- Prohibited: Narcotics, weapons, anti-government materials.
document.addEventListener(‘DOMContentLoaded’, () => {
const voaLabels = [[‘Single-Entry’, ‘Visa’], [‘Multi-Entry’, ‘Visa’]];
const tooltipCallback = {
plugins: {
tooltip: {
callbacks: {
title: function(tooltipItems) {
const item = tooltipItems[0];
let label = item.chart.data.labels[item.dataIndex];
return Array.isArray(label) ? label.join(‘ ‘) : label;
}
}
}
}
};
const voaFeeCtx = document.getElementById(‘voaFeeChart’).getContext(‘2d’);
new Chart(voaFeeCtx, {
type: ‘bar’,
data: {
labels: voaLabels,
datasets: [{
label: ‘Stamping Fee in USD’,
data: [25, 50],
backgroundColor: [‘#8ecae6’, ‘#219ebc’],
borderColor: [‘#023047’],
borderWidth: 2,
borderRadius: 5,
}]
},
options: {
…tooltipCallback,
responsive: true,
maintainAspectRatio: false,
scales: { y: { beginAtZero: true } },
plugins: { …tooltipCallback.plugins, legend: { display: false } }
}
});
const guaranteeCtx = document.getElementById(‘guaranteeChart’).getContext(‘2d’);
new Chart(guaranteeCtx, {
type: ‘doughnut’,
data: {
labels: [‘100% Money-Back Guarantee’],
datasets: [{
data: [100],
backgroundColor: [‘#00b4d8’],
borderColor: [‘#fff’],
borderWidth: 4,
hoverOffset: 4
}]
},
options: {
responsive: true,
maintainAspectRatio: false,
plugins: {
legend: {
position: ‘bottom’,
},
tooltip: {
callbacks: {
label: () => ‘A risk-free transaction for your peace of mind.’
}
}
}
}
});
document.querySelectorAll(‘details’).forEach((detail) => {
detail.addEventListener(‘toggle’, (event) => {
const sign = detail.querySelector(‘.accordion-icon’);
if (detail.open) {
sign.textContent = ‘β’;
} else {
sign.textContent = ‘+’;
}
});
});
});