Thank You for Your Reservation

The reservation fee went through successfully. You'll receive reservation confirmation soon. Thank you for choosing City Gate Suites!

Next Steps

1

Reservation Confirmation

You will receive a reservation confirmation email within 24 business hours.

2

Showings

In-person showings are available upon request.

3

Accommodation Agreement

Your accommodation agreement will be sent for e-signature.

4

Photo ID

A government-issued photo ID must be submitted prior to check-in.

5

Accommodation Fee

The first 30-night accommodation fee is due before check-in.

6

Security Deposit

The $500 security deposit will be refunded within 7 days after checkout, provided all keys are returned and the suite is in good condition.

7

Key Pickup Instructions

24/7 key pickup details will be provided once all payments have been received.

8

Building Location

Your final building assignment will be confirmed one week before arrival.

// Smooth scroll for any internal links document.querySelectorAll('a[href^="#"]').forEach(anchor => { anchor.addEventListener('click', function (e) { e.preventDefault(); const target = document.querySelector(this.getAttribute('href')); if (target) { target.scrollIntoView({ behavior: 'smooth', block: 'start' }); } }); }); // Add animation on scroll for step items const observerOptions = { threshold: 0.1, rootMargin: '0px 0px -50px 0px' }; const observer = new IntersectionObserver((entries) => { entries.forEach(entry => { if (entry.isIntersecting) { entry.target.style.opacity = '1'; entry.target.style.transform = 'translateY(0)'; } }); }, observerOptions); // Observe all step items document.querySelectorAll('.step-item').forEach((item, index) => { item.style.opacity = '0'; item.style.transform = 'translateY(20px)'; item.style.transition = `all 0.5s ease ${index * 0.1}s`; observer.observe(item); });