Cat Bi Airport (HPH) Arrival Infographic
https://cdn.tailwindcss.com
https://cdn.jsdelivr.net/npm/chart.js
Goal: Compare, Inform. -> Viz/Presentation: Side-by-side static flowcharts. -> Interaction: None (static). -> Justification: Allows for direct, at-a-glance comparison of the two processes, which is clearer in a static format. -> Library/Method: HTML/CSS. NO SVG/Mermaid.
– Report Info: Time saved. -> Goal: Compare, Inform. -> Viz/Presentation: Bar Chart. -> Interaction: None (static). -> Justification: A classic, effective way to show quantitative comparison that fits well in a static scroll. -> Library/Method: Chart.js on Canvas.
– Report Info: Service benefits. -> Goal: Inform. -> Viz/Presentation: An icon-and-text grid. -> Interaction: None (static). -> Justification: Breaks down features into easily scannable points. -> Library/Method: HTML/Tailwind CSS with Unicode.
– Report Info: Checklist and trust factors. -> Goal: Organize, Persuade. -> Viz/Presentation: A clean, multi-part section. -> Interaction: None (static). -> Justification: Groups all final decision-making info (preparation, trust, booking) into one cohesive block before the final CTA. -> Library/Method: HTML/Tailwind CSS. –>
body {
font-family: ‘Roboto’, sans-serif;
background-color: #EDF2F4;
}
.text-navy { color: #2B2D42; }
.bg-navy { background-color: #2B2D42; }
.text-blue { color: #8D99AE; }
.bg-blue { background-color: #8D99AE; }
.text-accent { color: #EF233C; }
.bg-accent { background-color: #EF233C; }
.flow-line {
position: relative;
padding-left: 50px;
padding-bottom: 2rem;
border-left: 3px solid #D90429;
}
.flow-line:last-child {
border-left: 3px solid transparent;
}
.flow-dot {
position: absolute;
left: -14px;
top: 0;
width: 24px;
height: 24px;
border-radius: 9999px;
background-color: #D90429;
border: 4px solid #EDF2F4;
}
.flow-dot.danger {
background-color: #EF233C;
animation: pulse-danger 1.5s infinite;
}
@keyframes pulse-danger {
0% { box-shadow: 0 0 0 0 rgba(239, 35, 59, 0.7); }
70% { box-shadow: 0 0 0 10px rgba(239, 35, 59, 0); }
100% { box-shadow: 0 0 0 0 rgba(239, 35, 59, 0); }
}
.chart-container {
position: relative;
width: 100%;
max-width: 800px;
margin: auto;
height: 400px;
}
THE PROBLEM WITH AIRPORT ARRIVALS
Long queues at Cat Bi Airport (HPH) can turn the start of your trip into a waiting game. Here’s a visual breakdown of the challenge and the solution.
Two Paths, Common Delays
Your Journey with an E-Visa / Visa Exemption
Deplane & Walk to Terminal
The journey begins.
Arrival Immigration Queue
The main bottleneck. Wait times can exceed an hour depending on flight arrivals.
Baggage Claim
Find your carousel and wait for your luggage.
Customs Check & Exit
Final check before you’re free to go.
Your Journey with a Visa On Arrival (VOA)
Deplane & Walk to Terminal
The journey begins.
Landing Visa Counter Queue
First delay: Submit paperwork, photo, and cash fee. This queue can be long and slow.
Arrival Immigration Queue
Second delay: After getting your visa, you join the main immigration line.
Baggage Claim
Find your carousel and wait for your luggage.
Customs Check & Exit
Final check before you’re free to go.
Time is Precious: The Data
Here is how the minutes add up. Fast Track service minimizes time spent at every single queueing point.
THE SOLUTION: FAST TRACK SERVICE
🚀
Skip All Queues
You are personally escorted through priority lanes, bypassing both the Visa and Immigration lines completely.
✨
All Paperwork Handled
Our agents handle your VOA forms, stamping fees, and photos, so you don’t have to worry about a thing.
⏱️
10-15 Minute Exit
What normally takes 1-2 hours becomes a swift, stress-free exit. Start your vacation immediately.
Get Ready & Book Your VIP Arrival
Essential Pre-Flight Checklist
✓ Passport valid for 6+ months with 2 blank pages.
✓ Printed E-Visa or VOA Approval Letter.
✓ Cash for VOA stamping fee (US$25 or US$50).
✓ Hotel address for your arrival form.
Don’t Risk Your Trip Apply for Your Visa With an Expert
A tiny mistake on your visa application can cause major delays or even rejection. Our expert service ensures a flawless, fast, and guaranteed process.
✓ Simple, hassle-free application form.
✓ Fast turnaround time for your peace of mind.
✓ 100% success rate or your money back.
Ready to Apply?
Get your E-Visa or Visa on Arrival letter the easy way.
Apply for Your Visa Now
Infographic by VietnamImmigration.org. Your trusted partner for a seamless arrival in Vietnam.
document.addEventListener(‘DOMContentLoaded’, function () {
const ctx = document.getElementById(‘waitTimeChart’).getContext(‘2d’);
const waitTimeChart = new Chart(ctx, {
type: ‘bar’,
data: {
labels: [‘VOA Counter’, ‘Immigration’, ‘Baggage Claim’],
datasets: [
{
label: ‘Standard Wait (Minutes)’,
data: [45, 60, 20],
backgroundColor: ‘#D90429’,
borderColor: ‘#D90429’,
borderWidth: 1,
borderRadius: 4,
},
{
label: ‘Fast Track (Minutes)’,
data: [5, 5, 10],
backgroundColor: ‘#8D99AE’,
borderColor: ‘#8D99AE’,
borderWidth: 1,
borderRadius: 4,
}
]
},
options: {
responsive: true,
maintainAspectRatio: false,
scales: {
y: {
beginAtZero: true,
title: {
display: true,
text: ‘Estimated Minutes’,
font: {
weight: ‘bold’
}
}
},
x: {
grid: {
display: false
}
}
},
plugins: {
legend: {
position: ‘top’,
},
title: {
display: false,
},
tooltip: {
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;
}
}
}
}
}
});
});