Đặt Phòng Khách Sạn Sunset Town Phú Quốc – Ưu Đãi Độc Quyền /* CSS Reset và biến toàn cục */ * { margin: 0; padding: 0; box-sizing: border-box; } :root { –primary-color: #FF6B35; –secondary-color: #1E88E5; –dark-color: #2D3748; –light-color: #F7FAFC; –text-color: #333; –text-light: #666; –border-radius: 8px; –box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08); –transition: all 0.3s ease; } body { font-family: ‘Open Sans’, sans-serif; line-height: 1.6; color: var(–text-color); background-color: #fff; } h1, h2, h3, h4 { font-family: ‘Montserrat’, sans-serif; font-weight: 700; line-height: 1.3; margin-bottom: 1rem; } h1 { font-size: 2.5rem; } h2 { font-size: 2rem; color: var(–dark-color); } h3 { font-size: 1.5rem; } p { margin-bottom: 1rem; } a { text-decoration: none; color: var(–secondary-color); transition: var(–transition); } a:hover { color: var(–primary-color); } .container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; } .btn { display: inline-block; padding: 12px 28px; background-color: var(–primary-color); color: white; border-radius: var(–border-radius); font-weight: 600; text-align: center; border: none; cursor: pointer; transition: var(–transition); font-size: 1rem; font-family: ‘Montserrat’, sans-serif; } .btn:hover { background-color: #e55a2b; transform: translateY(-3px); box-shadow: 0 7px 15px rgba(255, 107, 53, 0.2); } .btn-secondary { background-color: var(–secondary-color); } .btn-secondary:hover { background-color: #0d7bd4; box-shadow: 0 7px 15px rgba(30, 136, 229, 0.2); } .btn-large { padding: 16px 36px; font-size: 1.1rem; } .btn-full { width: 100%; } .section { padding: 80px 0; } .section-title { text-align: center; margin-bottom: 50px; } .section-title h2 { position: relative; display: inline-block; padding-bottom: 15px; } .section-title h2:after { content: ”; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); width: 80px; height: 3px; background-color: var(–primary-color); } .highlight { color: var(–primary-color); } /* Hero Section */ .hero { background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(‘https://sunset-town.com/wp-content/uploads/2024/05/PQCPQQQ_Pool_Day_02-scaled.webp’); background-size: cover; background-position: center; color: white; text-align: center; padding: 120px 0; } .hero h1 { font-size: 3rem; margin-bottom: 20px; text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3); } .hero p { font-size: 1.2rem; max-width: 800px; margin: 0 auto 40px; opacity: 0.9; } /* Search Form */ .search-form { background-color: white; border-radius: var(–border-radius); padding: 30px; max-width: 900px; margin: 0 auto; box-shadow: var(–box-shadow); } .form-row { display: flex; flex-wrap: wrap; gap: 20px; margin-bottom: 20px; } .form-group { flex: 1; min-width: 200px; } .form-group label { display: block; margin-bottom: 8px; font-weight: 600; color: var(–dark-color); } .form-control { width: 100%; padding: 12px 15px; border: 1px solid #ddd; border-radius: var(–border-radius); font-family: ‘Open Sans’, sans-serif; font-size: 1rem; transition: var(–transition); } .form-control:focus { outline: none; border-color: var(–secondary-color); box-shadow: 0 0 0 3px rgba(30, 136, 229, 0.2); } /* Features Section */ .features { background-color: var(–light-color); } .features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; } .feature-card { background-color: white; border-radius: var(–border-radius); padding: 30px; text-align: center; box-shadow: var(–box-shadow); transition: var(–transition); } .feature-card:hover { transform: translateY(-10px); box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1); } .feature-icon { font-size: 2.5rem; color: var(–primary-color); margin-bottom: 20px; } /* Hotels Section */ .hotel-filters { display: flex; justify-content: center; flex-wrap: wrap; gap: 10px; margin-bottom: 40px; } .filter-btn { padding: 10px 20px; background-color: white; border: 2px solid #ddd; border-radius: 30px; font-weight: 600; cursor: pointer; transition: var(–transition); } .filter-btn.active, .filter-btn:hover { background-color: var(–primary-color); border-color: var(–primary-color); color: white; } .hotels-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(350px, 1fr)); gap: 30px; } .hotel-card { background-color: white; border-radius: var(–border-radius); overflow: hidden; box-shadow: var(–box-shadow); transition: var(–transition); } .hotel-card:hover { transform: translateY(-5px); box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1); } .hotel-img { height: 200px; width: 100%; object-fit: cover; } .hotel-info { padding: 25px; } .hotel-meta { display: flex; justify-content: space-between; margin-bottom: 15px; color: var(–text-light); font-size: 0.9rem; } .hotel-location, .hotel-rating { display: flex; align-items: center; } .hotel-location i { margin-right: 5px; } .hotel-rating { color: #FFC107; } .hotel-price { font-size: 1.5rem; font-weight: 700; color: var(–primary-color); margin: 15px 0; } .price-note { font-size: 0.9rem; color: var(–text-light); } /* CTA Section */ .cta-section { background: linear-gradient(to right, var(–primary-color), #FF8B5C); color: white; text-align: center; } .cta-section h2 { color: white; } .cta-section p { max-width: 700px; margin: 0 auto 30px; font-size: 1.1rem; } /* Load More Button */ .load-more-container { text-align: center; margin-top: 50px; } #loadMore { background-color: white; color: var(–primary-color); border: 2px solid var(–primary-color); } #loadMore:hover { background-color: var(–primary-color); color: white; } /* Responsive */ @media (max-width: 992px) { h1 { font-size: 2.2rem; } h2 { font-size: 1.8rem; } .hero h1 { font-size: 2.5rem; } .hero, .section { padding: 80px 0; } } @media (max-width: 768px) { .hero h1 { font-size: 2rem; } .hero p { font-size: 1rem; } .form-row { flex-direction: column; } .hotels-grid { grid-template-columns: 1fr; } } @media (max-width: 480px) { .hero h1 { font-size: 1.8rem; } .search-form { padding: 20px; } .btn { padding: 10px 20px; } .btn-large { padding: 14px 28px; } } /* Animation */ @keyframes fadeIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } } .fade-in { animation: fadeIn 0.8s ease forwards; } .delay-1 { animation-delay: 0.2s; opacity: 0; } .delay-2 { animation-delay: 0.4s; opacity: 0; }

Kỳ Nghỉ Đẳng Cấp Tại Sunset Town Phú Quốc

Khám phá những khách sạn và resort tuyệt vời nhất tại thị trấn hoàng hôn. Trải nghiệm đẳng cấp, giá cả hợp lý và ưu đãi độc quyền.

1 khách 2 khách 3 khách 4 khách 5+ khách

Khách Sạn, Resort Tại Sunset Town

Lựa chọn chỗ ở phù hợp nhất cho kỳ nghỉ của bạn

Đừng Bỏ Lỡ Trải Nghiệm Tuyệt Vời!

Hàng ngàn du khách đã lựa chọn Sunset Town cho kỳ nghỉ của họ. Đặt phòng ngay hôm nay để nhận ưu đãi tốt nhất.

Bạn nên đặt phòng để tận hưởng trọn vẹn kỳ nghỉ tại Sunset Town

Hãy nhanh tay đặt phòng để mang đến cho bạn trải nghiệm tốt nhất.

Sunset Town Phú Quốc – Thị trấn hoàng hôn là điểm đến hàng đầu đảo ngọc Phú Quốc. Với những công trình biểu tượng thể hiện nghệ thuật kiến trúc cùng hơn 60 tiện ích cao cấp. Nơi đây sẽ cho du khách những trải nghiệm chưa từng có khi đến với Phú Quốc. Các khách sạn, resort tại Sunset Town đáp ứng cùng lúc cả nhu cầu nghỉ ngơi thư giãn và khám phá không ngừng nghỉ cho du khách mọi lứa tuổi. Bạn có thể lựa chọn nghỉ ngơi tại những khách sạn sang trọng hàng đầu Phú Quốc như JW Marriott Phú Quốc, La Festa Phú Quốc, Premier Village, hay New World Resort, … hoặc tại Mini Hotel ngay trong thị trấn hoàng hôn “Sunset Town” với “chiếc view vạn người mê” nhìn thẳng ra Cầu Hôn, được ngắm trọn màn biểu diễn Kiss of the Sea hay Show pháo hoa mà giá cả chỉ từ 500,000 VNĐ – 1,000,000 VNĐ/ đêm.

Giá Tốt Nhất

Cam kết giá tốt nhất với ưu đãi độc quyền từ Klook. Hoàn tiền nếu tìm thấy giá rẻ hơn.

Xác Nhận Tức Thì

Nhận xác nhận đặt phòng ngay lập tức. Không cần chờ đợi, mọi thứ được xử lý tự động.

Hỗ Trợ 24/7

Đội ngũ hỗ trợ khách hàng luôn sẵn sàng giúp đỡ bạn mọi lúc, mọi nơi.

Thanh Toán An Toàn

Hệ thống thanh toán được mã hóa và bảo mật. Thông tin của bạn luôn được an toàn.

// ================== DỮ LIỆU KHÁCH SẠN ĐẦY ĐỦ ================== const hotelsData = [ // Sunset Town Hotels { name: “Casepia Phu Quoc”, category: “sunset-town”, image: “https://sunset-town.com/wp-content/uploads/2024/03/caspia.jpg”, location: “302–304 Sorrento, Sunset Town”, rating: 4, price: “1,200,000”, description: “Khách sạn hiện đại với tiện nghi đầy đủ trong lòng Sunset Town.”, affiliateLink: “https://www.klook.com/hotels/detail/1278620-casepia/?aid=58044” }, { name: “La Festa Phu Quoc, Curio Collection by Hilton”, category: “sunset-town resort”, image: “https://sunset-town.com/wp-content/uploads/2024/12/La-Festa-Phu-Quoc-1.webp”, location: “Trung tâm Sunset Town”, rating: 5, price: “3,500,000”, description: “Khách sạn sang trọng với kiến trúc Ý độc đáo ngay trung tâm Sunset Town.”, affiliateLink: “https://www.klook.com/hotels/detail/1098013-la-festa-phu-quoc-curio-collection-by-hilton/?aid=58044” }, { name: “Venice Hotel Phu Quoc”, category: “sunset-town boutique”, image: “https://sunset-town.com/wp-content/uploads/2024/03/venice-hotel.webp”, location: “Trung tâm Sunset Town”, rating: 4.5, price: “1,800,000”, description: “Boutique hotel với view toàn cảnh cầu Hôn và biển, thiết kế theo phong cách Venice.”, affiliateLink: “https://www.klook.com/hotels/detail/1336409-venice-hotel-phu-quoc–free-airport-shuttle–sunset-town-tour/?aid=58044” }, { name: “Haus Stay Sunset Town Phu Quoc”, category: “sunset-town”, image: “https://sunset-town.com/wp-content/uploads/2025/12/hause-phu0-quoc.jpg.webp”, location: “Sunset Town”, rating: 4, price: “900,000”, description: “Khách sạn với phong cách hiện đại, tiện nghi đầy đủ cho kỳ nghỉ ngắn ngày.”, affiliateLink: “https://www.klook.com/hotels/detail/1766824-haus-stay-sunset-town-phu-quoc/?aid=58044” }, { name: “Hillside Luxury Phu Quoc Apartment”, category: “sunset-town apartment”, image: “https://sunset-town.com/wp-content/uploads/2022/12/hillside-phu-quoc.jpg”, location: “Burano, Sunset Town, An Thới”, rating: 4.5, price: “1,600,000”, description: “Căn hộ cao cấp với view toàn cảnh Sunset Town, đầy đủ tiện nghi.”, affiliateLink: “https://www.klook.com/hotels/detail/1314067-hillside-luxury-phu-quoc-apartment/?aid=58044” }, { name: “Times Corner Sorrento Boutique Hotel”, category: “sunset-town boutique”, image: “https://sunset-town.com/wp-content/uploads/2024/02/time-corner.webp”, location: “SOR, 201 Địa, An Thới”, rating: 5, price: “1,500,000”, description: “Boutique hotel với thiết kế tinh tế, dịch vụ cá nhân hóa và vị trí yên tĩnh.”, affiliateLink: “https://www.klook.com/hotels/detail/1092201-times-corner-sorrento-boutique-hotel/?aid=58044” }, { name: “Times Corner Amalfi Hotel”, category: “sunset-town boutique”, image: “https://sunset-town.com/wp-content/uploads/2025/12/Time-corner-amafi.jpg.webp”, location: “Sunset Town”, rating: 4.5, price: “1,400,000”, description: “Boutique hotel với phong cách Địa Trung Hải, không gian sang trọng.”, affiliateLink: “https://www.klook.com/hotels/detail/1768050-times-corner-amalfi-hotel/?aid=58044” }, { name: “Sunset Bay Retreat Hotel”, category: “sunset-town”, image: “https://sunset-town.com/wp-content/uploads/2024/03/sunset-bay-retreat.webp”, location: “9–17 Venice Street, Sunset Town”, rating: 4.5, price: “2,200,000”, description: “Khu nghỉ dưỡng nhỏ với view biển tuyệt đẹp, phù hợp cho các cặp đôi và gia đình.”, affiliateLink: “https://www.klook.com/hotels/detail/1325139-sunset-bay-retreat-hotel/?aid=58044” }, { name: “Golden Sunset Hotel”, category: “sunset-town”, image: “https://sunset-town.com/wp-content/uploads/2025/12/Goden-sunset.jpg.webp”, location: “Sunset Town”, rating: 4, price: “1,100,000”, description: “Khách sạn với view hoàng hôn tuyệt đẹp, giá cả hợp lý.”, affiliateLink: “https://www.klook.com/hotels/detail/1970471-golden-sunset-hotel/?aid=58044” }, { name: “HANZ Lagoon Sunset Boutique Hotel”, category: “sunset-town boutique”, image: “https://sunset-town.com/wp-content/uploads/2025/12/HANZ-Lagoon-Sunset-Boutique-Hotel.jpg.webp”, location: “Sunset Town”, rating: 4.5, price: “1,700,000”, description: “Boutique hotel bên lagoon với không gian yên tĩnh và view đẹp.”, affiliateLink: “https://www.klook.com/hotels/detail/1328926-hanz-lagoon-sunset-boutique-hotel/?aid=58044” }, { name: “Kim Boutique Hotel”, category: “boutique”, image: “https://sunset-town.com/wp-content/uploads/2024/03/kim-boutique.jpg”, location: “Sorrento 3, Sunset Town”, rating: 4, price: “850,000”, description: “Boutique hotel nhỏ xinh với dịch vụ thân thiện và vị trí thuận tiện.”, affiliateLink: “https://www.klook.com/hotels/detail/1251106-kim-boutique-hotel/?aid=58044” }, { name: “De Stefano Coffee and Hotel”, category: “sunset-town boutique”, image: “https://sunset-town.com/wp-content/uploads/2025/12/De-Stefano.jpg.webp”, location: “S34 Sorrento 1, The Center”, rating: 4, price: “950,000”, description: “Khách sạn kết hợp quán cà phê, không gian ấm cúng và tiện nghi.”, affiliateLink: “https://www.klook.com/hotels/detail/1738467-de-stefano-coffee-and-hotel/?aid=58044” }, { name: “Medius Terra Residences – Pool Included”, category: “sunset-town apartment”, image: “https://sunset-town.com/wp-content/uploads/2025/12/Medius-Terra-Residences-Pool-Included.jpg.webp”, location: “Sunset Town”, rating: 4.5, price: “1,800,000”, description: “Căn hộ cao cấp với hồ bơi riêng, view Sunset Town tuyệt đẹp.”, affiliateLink: “https://www.klook.com/hotels/detail/1432976-medius-terra-residences/?aid=58044” }, { name: “Sea Sunset Hotel”, category: “sunset-town”, image: “https://sunset-town.com/wp-content/uploads/2025/12/Sea-Sunset-Hotel.jpg.webp”, location: “Sunset Town”, rating: 4, price: “1,000,000”, description: “Khách sạn với view biển trực diện, lý tưởng ngắm hoàng hôn.”, affiliateLink: “https://www.klook.com/hotels/detail/1327144-sea-sunset-hotel/?aid=58044” }, { name: “Lotus Home Cafe”, category: “sunset-town boutique”, image: “https://sunset-town.com/wp-content/uploads/2025/12/Lotus-Home-Cafe.jpg.webp”, location: “69 Positano, Sunset Town”, rating: 4, price: “800,000”, description: “Homestay kết hợp quán cà phê, không gian ấm cúng như nhà.”, affiliateLink: “https://www.klook.com/hotels/detail/1195636-lotus-home-cafe/?aid=58044” }, { name: “Tramonto Boutique Hotel”, category: “sunset-town boutique”, image: “https://sunset-town.com/wp-content/uploads/2025/12/Tramonto-Boutique-Hotel.jpg.webp”, location: “Sunset Town”, rating: 4.5, price: “1,300,000”, description: “Boutique hotel với thiết kế Ý tinh tế, dịch vụ cá nhân hóa.”, affiliateLink: “https://www.klook.com/hotels/detail/1983991-tramonto-boutique-hotel/?aid=58044” }, { name: “Luxury Sunset Town Hotel Phu Quoc”, category: “sunset-town”, image: “https://sunset-town.com/wp-content/uploads/2025/12/Luxury-sunset-hotel.jpg.webp”, location: “Sunset Town”, rating: 4.5, price: “2,500,000”, description: “Khách sạn sang trọng với đầy đủ tiện nghi cao cấp.”, affiliateLink: “https://www.klook.com/hotels/detail/1781811-luxury-sunset-town-hotel-phu-quoc/?aid=58044” }, { name: “Fella Hotel”, category: “sunset-town”, image: “https://sunset-town.com/wp-content/uploads/2025/12/Fella-hotel-phu-quoc.jpg”, location: “330–332 Sorrento 3, Sunset Town”, rating: 4, price: “950,000”, description: “Khách sạn hiện đại với giá cả hợp lý, vị trí thuận tiện.”, affiliateLink: “https://www.klook.com/hotels/detail/1267094-fella-hotel-phu-quoc/?aid=58044” }, { name: “Rosie & Amie Hillside Luxury Phu Quoc Apartment”, category: “sunset-town apartment”, image: “https://sunset-town.com/wp-content/uploads/2025/12/Rosie-Amie-Hillside-Luxury-Phu-Quoc-Apartment.jpg.webp”, location: “Hillside, Sunset Town”, rating: 4.5, price: “1,700,000”, description: “Căn hộ luxury với view toàn cảnh Sunset Town.”, affiliateLink: “https://www.klook.com/vi/hotels/detail/1314067-hillside-luxury-phu-quoc-apartment/?aid=58044” }, { name: “Lucie Cozy Home”, category: “sunset-town apartment”, image: “https://sunset-town.com/wp-content/uploads/2025/12/Lucie-Cozy-Home.jpg.webp”, location: “Sunset Town”, rating: 4, price: “750,000”, description: “Căn hộ ấm cúng, đầy đủ tiện nghi cho gia đình nhỏ.”, affiliateLink: “https://www.klook.com/hotels/detail/2066986-lucie-cozy-home–sunset-town-phu-quoc/?aid=58044” }, { name: “Rova Hotel Phu Quoc”, category: “sunset-town”, image: “https://sunset-town.com/wp-content/uploads/2025/12/Rova-Hotel-Phu-Quoc.jpg.webp”, location: “Ven07, Sunset Town”, rating: 4, price: “1,100,000”, description: “Khách sạn với phong cách hiện đại, dịch vụ chuyên nghiệp.”, affiliateLink: “https://www.klook.com/hotels/detail/1235345-rova-hotel-phu-quoc/?aid=58044” }, { name: “Rova Hotel – Positano Horse Phu Quoc”, category: “sunset-town”, image: “https://sunset-town.com/wp-content/uploads/2025/12/Rova-Hotel-Positano-Horse-Phu-Quoc.jpg.webp”, location: “Positano, Sunset Town”, rating: 4, price: “1,200,000”, description: “Khách sạn với view cầu Hôn, vị trí đắc địa.”, affiliateLink: “https://www.klook.com/hotels/detail/1437472-rova-hotel–positano-horse-phu-quoc/?aid=58044” }, { name: “Juliet Boutique Hotel”, category: “sunset-town boutique”, image: “https://sunset-town.com/wp-content/uploads/2025/12/Juliet-Boutique-Hotel.jpg”, location: “Ven07, Sunset Town”, rating: 4.5, price: “1,400,000”, description: “Boutique hotel lãng mạn với thiết kế tinh tế.”, affiliateLink: “https://www.klook.com/hotels/detail/1535520-juliet-boutique-hotel–sunset-town/?aid=58044” }, { name: “Sakurakyo Hotel & Spa Phu Quoc”, category: “sunset-town resort”, image: “https://sunset-town.com/wp-content/uploads/2025/12/Sakurakyo-Hotel-Spa-Phu-Quoc.jpg.webp”, location: “Sunset Town”, rating: 4.5, price: “2,800,000”, description: “Khách sạn & spa với phong cách Nhật Bản, dịch vụ thư giãn đẳng cấp.”, affiliateLink: “https://www.klook.com/hotels/detail/1764816-sakurakyo-hotel–spa-phu-quoc/?aid=58044” }, { name: “Mimosa Hotel Phu Quoc”, category: “sunset-town”, image: “https://sunset-town.com/wp-content/uploads/2025/12/Mimosa-Hotel-Phu-Quoc.jpg.webp”, location: “Sunset Town”, rating: 4, price: “900,000”, description: “Khách sạn với không gian xanh mát, giá cả hợp lý.”, affiliateLink: “https://www.klook.com/hotels/detail/1415387-mimosa-hotel-phu-quoc/?aid=58044” }, { name: “HD Hotel Sunset Town”, category: “sunset-town”, image: “https://sunset-town.com/wp-content/uploads/2025/12/HD-Hotel-Sunset-Town.jpg.webp”, location: “Sunset Town”, rating: 4, price: “850,000”, description: “Khách sạn hiện đại với tiện nghi đầy đủ.”, affiliateLink: “https://www.klook.com/vi/hotels/detail/2066341-hd-hotel-sunset-town/?aid=58044” }, { name: “CITY APARTMENT SUNSET TOWN”, category: “sunset-town apartment”, image: “https://sunset-town.com/wp-content/uploads/2025/12/CITY-APARTMENT-SUNSET-TOWN.jpg.webp”, location: “Sunset Town”, rating: 4, price: “1,100,000”, description: “Căn hộ hiện đại ngay trung tâm Sunset Town.”, affiliateLink: “https://www.klook.com/hotels/detail/2165414-city-apartment-sunset-town/?aid=58044” }, { name: “Elyday Apartment Hillside Phu Quoc”, category: “sunset-town apartment”, image: “https://sunset-town.com/wp-content/uploads/2025/12/Elyday-Apartment-Hillside-Phu-Quoc.jpg.webp”, location: “Hillside, Sunset Town”, rating: 4.5, price: “1,500,000”, description: “Căn hộ với view panoramic Sunset Town.”, affiliateLink: “https://www.klook.com/hotels/detail/1429507-elyday-apartment-hillside-phu-quoc/?aid=58044” }, { name: “Nhu Y Hotel Phu Quoc”, category: “sunset-town”, image: “https://sunset-town.com/wp-content/uploads/2025/12/Nhu-Y-Hotel-Phu-Quoc.jpg.webp”, location: “Sunset Town”, rating: 4, price: “800,000”, description: “Khách sạn nhỏ với dịch vụ thân thiện, giá tốt.”, affiliateLink: “https://www.klook.com/hotels/detail/1749103-nhu-y-hotel-phu-quoc/?aid=58044” }, { name: “Coastal Living Hotel Phu Quoc”, category: “sunset-town”, image: “https://sunset-town.com/wp-content/uploads/2025/12/Coastal-Living-Hotel-Phu-Quoc.jpg.webp”, location: “Sunset Town”, rating: 4, price: “950,000”, description: “Khách sạn với concept sống ven biển, không gian thoáng đãng.”, affiliateLink: “https://www.klook.com/hotels/detail/1749092-coastal-living-hotel-phu-quoc/?aid=58044” }, { name: “BLESSED Hotel Phu Quoc”, category: “sunset-town”, image: “https://sunset-town.com/wp-content/uploads/2025/12/BLESSED-Hotel-Phu-Quoc.jpg.webp”, location: “Sunset Town”, rating: 4, price: “900,000”, description: “Khách sạn với không gian bình yên, dịch vụ chu đáo.”, affiliateLink: “https://www.klook.com/hotels/detail/1985523-blessed-hotel-phu-quoc/?aid=58044” }, { name: “Le Bonheur Hotel”, category: “sunset-town”, image: “https://sunset-town.com/wp-content/uploads/2025/12/Le-Bonheur-Hotel.jpg.webp”, location: “A32–34 Amalfi, Sunset Town”, rating: 4, price: “1,000,000”, description: “Khách sạn với phong cách Pháp, lãng mạn và tinh tế.”, affiliateLink: “https://www.klook.com/hotels/detail/1240436-le-bonheur-hotel/?aid=58044” }, { name: “La isla Apartments & Villas – Sea View & Fireworks Phu Quoc”, category: “sunset-town apartment”, image: “https://sunset-town.com/wp-content/uploads/2025/12/La-isla-Apartments-Villas-–-Sea-View-Fireworks-Phu-Quoc.jpg.webp”, location: “Sunset Town”, rating: 4.5, price: “2,300,000”, description: “Căn hộ và villa với view biển và pháo hoa.”, affiliateLink: “https://www.klook.com/hotels/detail/1944711-la-isla-apartments–villas–sea-view–fireworks-phu-quoc/?aid=58044” }, { name: “Calidum Phu Quoc Hotel”, category: “sunset-town”, image: “https://sunset-town.com/wp-content/uploads/2025/12/Calidum-Phu-Quoc-Hotel.jpg.webp”, location: “Sunset Town”, rating: 4, price: “1,100,000”, description: “Khách sạn với thiết kế hiện đại, tiện nghi cao cấp.”, affiliateLink: “https://www.klook.com/hotels/detail/1140027-calidum-phu-quoc-hotel/?aid=58044” }, { name: “Cybele Sunset Hotel Phu Quoc”, category: “sunset-town”, image: “https://sunset-town.com/wp-content/uploads/2025/12/Cybele-Sunset-Hotel-Phu-Quoc.jpg.webp”, location: “Sunset Town”, rating: 4, price: “1,050,000”, description: “Khách sạn với view hoàng hôn tuyệt đẹp.”, affiliateLink: “https://www.klook.com/hotels/detail/1332047-cybele-sunset-hotel-phu-quoc/?aid=58044” }, { name: “Labe Hotel Phu Quoc – Hon Thom Island”, category: “sunset-town”, image: “https://sunset-town.com/wp-content/uploads/2025/12/Labe-Hotel-Phu-Quoc-Hon-Thom-Island.jpg.webp”, location: “Hon Thom Island, gần Sunset Town”, rating: 4, price: “1,200,000”, description: “Khách sạn gần đảo Hòn Thơm, view biển đẹp.”, affiliateLink: “https://www.klook.com/hotels/detail/1736830-labe-hotel-phu-quoc–hon-thom-island/?aid=58044” }, { name: “Sea Gallery Phu Quoc Luxury Apartment”, category: “sunset-town apartment”, image: “https://sunset-town.com/wp-content/uploads/2025/12/Sea-Gallery-Phu-Quoc-Luxury-Apartment.jpg.webp”, location: “Sunset Town”, rating: 4.5, price: “1,900,000”, description: “Căn hộ luxury với gallery nghệ thuật và view biển.”, affiliateLink: “https://www.klook.com/hotels/detail/1711453-sea-gallery-phu-quoc-luxury-apartment/?aid=58044” }, { name: “New Era Phu Quoc Hotel”, category: “sunset-town”, image: “https://sunset-town.com/wp-content/uploads/2025/12/New-Era-Phu-Quoc-Hotel.jpg.webp”, location: “Sunset Town”, rating: 4, price: “950,000”, description: “Khách sạn mới với thiết kế hiện đại, tiện nghi.”, affiliateLink: “https://www.klook.com/hotels/detail/1767984-new-era-phu-quoc-hotel/?aid=58044” }, { name: “Roma Hotel Phu Quoc”, category: “sunset-town”, image: “https://sunset-town.com/wp-content/uploads/2024/03/roma-hotel.webp”, location: “312–316 Sorrento, Primavera”, rating: 4, price: “1,100,000”, description: “Khách sạn với phong cách Ý cổ điển.”, affiliateLink: “https://www.klook.com/hotels/detail/1308765-roma-hotel-phu-quoc–free-airport-shuttle–sunset-town-tour/?aid=58044” }, { name: “Melina Hillside Condotel Phu Quoc”, category: “sunset-town apartment”, image: “https://sunset-town.com/wp-content/uploads/2025/12/Melina-Hillside-Condotel-Phu-Quoc.jpg.webp”, location: “Hillside, Sunset Town”, rating: 4.5, price: “1,600,000”, description: “Condotel với view toàn cảnh Sunset Town.”, affiliateLink: “https://www.klook.com/hotels/detail/1756739-melina-hillside-condotel-phu-quoc/?aid=58044” }, // 5-Star Resorts { name: “New World Phu Quoc Resort”, category: “resort”, image: “https://sunset-town.com/wp-content/uploads/2024/03/Bai-Kem-New-World-Phu-Quoc-Resort.f8c07885.jpg”, location: “Khu Bãi Kem, gần Sunset Town”, rating: 5, price: “4,800,000”, description: “Khu nghỉ dưỡng cao cấp với bãi biển riêng, nhiều tiện ích và dịch vụ spa đẳng cấp.”, affiliateLink: “https://www.klook.com/hotels/detail/967784-new-world-phu-quoc-resort/?aid=58044” }, { name: “Premier Residences Phu Quoc Emerald Bay”, category: “resort”, image: “https://sunset-town.com/wp-content/uploads/2025/12/Premier-Residences-Phu-Quoc-Emerald-Bay.jpg”, location: “Gần Bãi Kem”, rating: 5, price: “3,500,000”, description: “Căn hộ resort cao cấp với đầy đủ tiện nghi và dịch vụ 5 sao.”, affiliateLink: “https://www.klook.com/hotels/detail/574531-premier-residences-phu-quoc-emerald-bay-managed-by-accor/?aid=58044” }, { name: “JW Marriott Phu Quoc Emerald Bay Resort & Spa”, category: “resort”, image: “https://sunset-town.com/wp-content/uploads/2024/12/jww-1.jpg”, location: “Gần Sunset Town”, rating: 5, price: “6,500,000”, description: “Biểu tượng nghỉ dưỡng của Phú Quốc với kiến trúc Pháp cổ điển và dịch vụ đẳng cấp.”, affiliateLink: “https://www.klook.com/hotels/detail/453314-jw-marriott-phu-quoc-emerald-bay-resort–spa/?aid=58044” }, { name: “Premier Village Phu Quoc Resort – Managed by Accor”, category: “resort”, image: “https://sunset-town.com/wp-content/uploads/2024/02/premier-village-the-eden-bay.webp”, location: “Mũi Ông Đội, gần Sunset Town”, rating: 5, price: “5,200,000”, description: “Khu nghỉ dưỡng villa sang trọng với hồ bơi riêng và view biển tuyệt đẹp.”, affiliateLink: “https://www.klook.com/hotels/detail/448036-premier-village-phu-quoc-resort–managed-by-accor/?aid=58044” } ]; // ================== LINK AFFILIATE CẬP NHẬT ================== const FORM_AFFILIATE_LINK = “https://www.klook.com/search/result/?query=phu+quoc&sort=most_relevant&tab_key=54&start=1&aid=58044”; const GENERAL_AFFILIATE_LINK = “https://www.klook.com/vi-VN/hotels/city/247-phu-quoc-hotels/?aid=58044″; // ============================================================= // Set default dates const today = new Date(); const tomorrow = new Date(today); tomorrow.setDate(tomorrow.getDate() + 1); document.getElementById(‘checkin’).valueAsDate = today; document.getElementById(‘checkout’).valueAsDate = tomorrow; // Variables for hotel display let currentFilter = ‘all’; let visibleCount = 6; // Function to render hotels function renderHotels() { const container = document.getElementById(‘hotelsContainer’); container.innerHTML = ”; const filteredHotels = hotelsData.filter(hotel => { return currentFilter === ‘all’ || hotel.category.includes(currentFilter); }); const hotelsToShow = filteredHotels.slice(0, visibleCount); hotelsToShow.forEach(hotel => { const hotelCard = document.createElement(‘div’); hotelCard.className = ‘hotel-card fade-in’; hotelCard.setAttribute(‘data-category’, hotel.category); // Generate star rating HTML let starsHtml = ”; for (let i = 1; i <= 5; i++) { if (i <= Math.floor(hotel.rating)) { starsHtml += '‘; } else if (i === Math.ceil(hotel.rating) && !Number.isInteger(hotel.rating)) { starsHtml += ‘‘; } else { starsHtml += ‘‘; } } hotelCard.innerHTML = ` ${hotel.name}

${hotel.name}

${hotel.location}
${starsHtml}

${hotel.description}

Từ ${hotel.price}₫ /đêm
`; container.appendChild(hotelCard); }); // Update load more button visibility const loadMoreBtn = document.getElementById(‘loadMore’); if (visibleCount >= filteredHotels.length) { loadMoreBtn.style.display = ‘none’; } else { loadMoreBtn.style.display = ‘inline-block’; } // Reattach event listeners to new buttons attachBookingListeners(); } // Hotel filtering const filterButtons = document.querySelectorAll(‘.filter-btn’); filterButtons.forEach(button => { button.addEventListener(‘click’, function() { filterButtons.forEach(btn => btn.classList.remove(‘active’)); this.classList.add(‘active’); currentFilter = this.getAttribute(‘data-filter’); visibleCount = 6; renderHotels(); }); }); // Load more functionality document.getElementById(‘loadMore’).addEventListener(‘click’, function() { visibleCount += 6; renderHotels(); }); // Function to attach booking listeners – ĐÃ BỎ THÔNG BÁO function attachBookingListeners() { document.querySelectorAll(‘.book-hotel’).forEach(button => { button.addEventListener(‘click’, function() { const affiliateLink = this.getAttribute(‘data-link’); // Mở link affiliate luôn không cần confirm if (affiliateLink) { window.open(affiliateLink, ‘_blank’); } }); }); } // Form search button – CHUYỂN ĐẾN LINK AFFILIATE MỚI document.getElementById(‘searchHotels’).addEventListener(‘click’, function() { // Mở link affiliate luôn không cần confirm window.open(‘https://klook.tpm.li/rWD0hUDh?erid=2Vtzqxjtd4h’, ‘_blank’); }); // Explore all hotels button – CẬP NHẬT LINK document.getElementById(‘exploreAllHotels’).addEventListener(‘click’, function() { // Mở link affiliate luôn không cần confirm window.open(‘https://klook.tpm.li/rWD0hUDh?erid=2Vtzqxjtd4h’, ‘_blank’); }); // Initial render renderHotels();
Currency
VND Vietnamese đồng