Interactive Guide: Arriving at Phu Cat Airport (UIH)
Interactive Guide: Arriving at Phu Cat Airport (UIH)
https://cdn.tailwindcss.comhttps://cdn.jsdelivr.net/npm/chart.js
Goal: Compare/Inform -> Viz/Method: Interactive buttons toggling visibility of two distinct, dynamically rendered HTML flowcharts. -> Interaction: User clicks their visa type to see their specific process. -> Justification: Provides a personalized, clutter-free experience. -> Library/Method: Vanilla JS.
– Report Info: The steps for airport navigation (Immigration, Baggage, Customs). -> Goal: Organize/Inform -> Viz/Method: A visual step-by-step flowchart built with styled HTML divs and Tailwind CSS. -> Interaction: Key steps highlight the “queue” problem and link to the expedited service solution. -> Justification: A visual flow is more intuitive and easier to digest than a list of text. -> Library/Method: HTML/CSS.
– Report Info: Transport options and costs from the airport. -> Goal: Compare -> Viz/Method: A horizontal bar chart comparing the estimated cost of different transport options. -> Interaction: Tooltips on hover provide exact costs. -> Justification: A chart allows for quick, at-a-glance comparison of quantitative data. -> Library/Method: Chart.js.
– Report Info: Benefits of the expedited service and trust signals for the provider. -> Goal: Inform/Persuade -> Viz/Method: A grid layout with icon-and-text cards for benefits, and a similar layout for trust signals (stats, logos). -> Interaction: Static, but visually organized for scannability and impact. -> Justification: Breaks down information into digestible, visually appealing chunks to build confidence. -> Library/Method: HTML/CSS with Unicode icons.
–>
body { font-family: ‘Inter’, sans-serif; }
.chart-container {
position: relative;
width: 100%;
max-width: 600px;
margin-left: auto;
margin-right: auto;
height: 300px;
max-height: 400px;
}
@media (min-width: 768px) {
.chart-container { height: 350px; }
}
.flow-step {
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
position: relative;
}
.flow-step:not(:last-child)::after {
content: ”;
position: absolute;
top: 40px;
right: -50%;
width: calc(100% – 80px);
height: 2px;
background-color: #e2e8f0;
z-index: 0;
}
@media (max-width: 767px) {
.flow-step:not(:last-child)::after {
top: 80px;
left: 50%;
right: auto;
transform: translateX(-50%);
width: 2px;
height: 4rem;
}
}
.active-tab {
border-bottom-color: #0284c7;
color: #0284c7;
font-weight: 600;
}
.inactive-tab {
border-bottom-color: transparent;
color: #475569;
}
Arrive at Phu Cat Airport (UIH) with Ease
Your personalized, step-by-step guide to navigating the airport in Binh Dinh, so you can start your Vietnam adventure faster.
First, select your arrival status:
Essential Arrival Information
const content = {
evisa: {
title: “Your Arrival Process: E-visa / Visa-Free”,
intro: “As an e-visa holder or visa-free visitor, your arrival process is straightforward. Follow these steps to navigate Phu Cat Airport efficiently. Be aware that queues can still form at the immigration checkpoint, especially during peak hours.”,
steps: [
{ name: “Disembark Aircraft”, icon: “βοΈ”, description: “Proceed from the aircraft into the terminal building.” },
{ name: “Immigration Checkpoint”, icon: “π”, description: “Present your passport and printed e-visa. The officer will verify your documents and stamp your passport.”, problem: “Long queues are common here, potentially causing significant delays.” },
{ name: “Baggage Claim”, icon: “π”, description: “Collect your checked luggage from the assigned carousel.” },
{ name: “Customs Check”, icon: “π”, description: “Proceed through the green channel if you have nothing to declare.” },
{ name: “Exit Airport”, icon: “π”, description: “Welcome to Vietnam! Find your transport and begin your adventure.” }
]
},
voa: {
title: “Your Arrival Process: Visa on Arrival”,
intro: “For those getting a visa on arrival, there’s an extra step at the start of your process. This is often the most time-consuming part of arriving. This guide shows you the full procedure.”,
steps: [
{ name: “Disembark Aircraft”, icon: “βοΈ”, description: “Proceed from the aircraft into the terminal building.” },
{ name: “Landing Visa Counter”, icon: “π”, description: “Submit your Passport, NA1 Form, photo, and approval letter. Pay the stamping fee in cash (USD/VND).”, problem: “This counter is known for very long queues and complex paperwork. Missing photos or cash can cause major issues.” },
{ name: “Immigration Checkpoint”, icon: “π”, description: “With your new visa stamp, present your passport to the immigration officer.”, problem: “After waiting for the visa, you may face another queue at the immigration checkpoint itself.” },
{ name: “Baggage Claim”, icon: “π”, description: “Collect your checked luggage from the assigned carousel.” },
{ name: “Customs Check”, icon: “π”, description: “Proceed through the green channel if you have nothing to declare.” },
{ name: “Exit Airport”, icon: “π”, description: “Welcome to Vietnam! Find your transport and begin your adventure.” }
]
},
expeditedService: {
title: “Skip the Queues with Expedited Entry”,
intro: “Our Expedited Entry Service is the fastest and most stress-free way to get through Phu Cat Airport. Our team meets you upon arrival and handles everything, escorting you through priority lanes.”,
benefits: [
{ icon: “β±οΈ”, title: “Save Time”, text: “Bypass the long public queues at both the visa and immigration counters.” },
{ icon: “π§”, title: “Reduce Stress”, text: “No need to worry about paperwork, photos, or cash for fees. We handle it.” },
{ icon: “π€”, title: “Expert Guidance”, text: “Our staff are airport experts who navigate the process for you.” },
{ icon: “β ”, title: “Guaranteed Smoothness”, text: “We ensure all your documents are in order for a seamless entry.” }
],
cta: “Book Service Now”, // Changed CTA text
fastTrackUrl: “https://www.vietnamimmigration.org/cip-on-arrival-support-order-form/”
},
checklist: `
Ensure a smooth start by having these items ready in your carry-on luggage.
β
Valid Passport: Must be valid for at least 6 months beyond your departure date.
β
Vietnam Visa/E-visa: A printed copy of your e-visa or visa approval letter (for VOA).
β
For VOA – NA1 Form: Completed and signed.
β
For VOA – Passport Photo: One 4×6 cm photo.
β
For VOA – Stamping Fee: Cash in USD or VND (US$25 single-entry, US$50 multi-entry).
β
Accommodation Details: Address and contact info of your first hotel.
`,
airportGuide: {
intro: “Phu Cat Airport (UIH) is located about 30-35km from Quy Nhon city center. Here are your options for getting to the city, with a comparison of typical costs.”,
transportChartData: {
labels: [‘Airport Shuttle’, ‘Taxi’, ‘Private Car (Pre-booked)’],
datasets: [{
label: ‘Cost (VND)’,
data: [50000, 300000, 400000],
backgroundColor: [‘#7dd3fc’, ‘#38bdf8’, ‘#0ea5e9’],
borderColor: [‘#0ea5e9’],
borderWidth: 1,
borderRadius: 5
}]
}
},
trust: `
When booking a vital service like airport assistance, trust is paramount. Hereβs why travelers have relied on Vietnamimmigration.org for over a decade.
15+
Years of Experience
Operating since 2008, we are veterans in Vietnam immigration services.
We provide arrangement service for e-visa | visa on arrival | visa extension | visa renewal | visa run.
We also arrange FnB tours, medical tours | spa tours
Thank you