The government portal shuts down for 9 days. Don’t let a “Pending” status derail your high-stakes travel. We provide elite, 2-hour visa clearance when others cannot.
The 9-Day Administrative Shutdown
During Tet 2026 (Year of the Fire Horse), standard government operations cease completely.
Visualizing this timeline is critical for your planning. Red zones indicate total closure of public portals.
Service Availability: Feb 2026
Gov Portal (Closed)
Our Service (Open)
Critical Insight: The official holiday runs from Feb 14 to Feb 22. While the public portal freezes, our emergency channels remain active 24/7.
Identify Your Status & Solution
Select your current situation to reveal your bespoke accelerated pathway.
Accelerate Pending E-Visa
Stuck on “Processing”? You are in a queue of thousands. We active-manage your file using our direct government liaisons to trigger immediate review.
✓
Override the Queue: Move from generic processing to priority review.
✓
Requirements: Just your Registration Code (E32…) and Email.
Haven’t applied or realized your visa is invalid? Do not use the public portal. Our “White-Glove” service audits your data instantly for a guaranteed result.
✓
Error-Free Audit: We pre-screen photos and passport scans.
✓
Chinese E-Passports: Includes guidance for loose-leaf visa exchange.
// — Visualization & Content Choices —
// 1. Timeline Chart: Uses Chart.js Bar chart (horizontal) to show the “Government Shutdown” vs “Our Availability”.
// Goal: Visual urgency. Justification: A simple list of dates doesn’t convey the “blockage” feeling like a Gantt chart does.
// 2. Comparison Chart: Uses Chart.js Radar chart.
// Goal: Show multi-dimensional superiority (Speed, Support, Reliability). Justification: Radar charts are excellent for comparing profiles/entities.
// 3. Pricing Toggles: Simple DOM manipulation.
// Goal: Clarity. Justification: Users need to know the specific price for their specific situation (Standard vs Holiday).
// 4. FAQ Builder: JS array map.
// Goal: Clean code. Justification: Easier to update text content.
// — CONFIRMATION: NO SVG graphics used. NO Mermaid JS used. —
document.addEventListener(‘DOMContentLoaded’, () => {
initTimelineChart();
initComparisonChart();
renderFAQs();
// Default to Pending state
switchTab(‘pending’);
});
// — Data & State —
const pricingData = {
pending: { base: [145, 175, 200], surcharge: [215, 260, 300] }, // Example surcharge math (+~50%)
new: { base: [170, 200, 230], surcharge: [255, 300, 345] } // Example surcharge math
};
const faqs = [
{ q: “Can I really get a visa in 2 hours during Tet?”, a: “Yes. Our Elite 2-Hour Rescue Protocol utilizes local on-duty officers to prioritize your application, even during the high-volume surge.” },
{ q: “How does the 9-day Tet shutdown affect my ‘Pending’ application?”, a: “Standard applications freeze from Feb 14-22. Our acceleration service is the only way to override this by engaging emergency duty officers.” },
{ q: “Is my data secure with a private agency?”, a: “Absolutely. We operate with executive-level discretion and delete all biometric data within 15 days of your successful arrival.” },
{ q: “What is the ‘Fire Horse’ Travel Boom?”, a: “Year 2026 sees a 40% travel surge. We recommend acceleration services for any arrival between Feb and March to avoid seasonal bottlenecks.” }
];
// — Interaction Logic —
function switchTab(mode) {
// Update UI State
const pendingBtn = document.getElementById(‘tab-pending’);
const newBtn = document.getElementById(‘tab-new’);
const contentPending = document.getElementById(‘content-pending’);
const contentNew = document.getElementById(‘content-new’);
if (mode === ‘pending’) {
pendingBtn.classList.remove(‘bg-white’, ‘text-slate-500’);
pendingBtn.classList.add(‘bg-brand-dark’, ‘text-white’, ‘shadow’);
newBtn.classList.remove(‘bg-brand-dark’, ‘text-white’, ‘shadow’);
newBtn.classList.add(‘bg-white’, ‘text-slate-500’);
contentPending.classList.remove(‘hidden’);
contentNew.classList.add(‘hidden’);
} else {
newBtn.classList.remove(‘bg-white’, ‘text-slate-500’);
newBtn.classList.add(‘bg-blue-600’, ‘text-white’, ‘shadow’); // Distinct color for New
pendingBtn.classList.remove(‘bg-brand-dark’, ‘text-white’, ‘shadow’);
pendingBtn.classList.add(‘bg-white’, ‘text-slate-500’);
contentNew.classList.remove(‘hidden’);
contentPending.classList.add(‘hidden’);
}
// Reset toggles and update prices
document.getElementById(`holiday-toggle-${mode}`).checked = false;
updatePricing(mode);
}
function updatePricing(mode) {
const isHoliday = document.getElementById(`holiday-toggle-${mode}`).checked;
const prices = document.querySelectorAll(‘.price-display’);
const msg = document.getElementById(‘surcharge-msg’);
const data = pricingData[mode];
prices.forEach((el, index) => {
const price = isHoliday ? data.surcharge[index] : data.base[index];
// Simple animation effect
el.style.opacity = 0;
setTimeout(() => {
el.innerText = `$${price}`;
el.style.opacity = 1;
}, 150);
});
if (isHoliday) {
msg.classList.remove(‘hidden’);
} else {
msg.classList.add(‘hidden’);
}
}
function scrollToSection(id) {
document.getElementById(id).scrollIntoView({ behavior: ‘smooth’ });
}
function renderFAQs() {
const container = document.getElementById(‘faq-container’);
container.innerHTML = faqs.map((item, index) => `
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