AI Du Lịch

Tung Pham (tungpham42) html Public Feb 28, 2026 05:38 PM
Share
<!DOCTYPE html>
<html lang="vi">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>AI Du Lịch - Coming Soon</title>
    <!-- Sử dụng Font Google hiện đại -->
    <link href="https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;600;700&display=swap" rel="stylesheet">
    
    <!-- TOÀN BỘ CSS ĐƯỢC NHÚNG VÀO ĐÂY -->
    <style>
        /* --- CÀI ĐẶT CƠ BẢN --- */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Space Grotesk', sans-serif;
        }

        body {
            background-color: #0d0e15; /* Màu nền tối vũ trụ */
            color: #ffffff;
            min-height: 100vh;
            overflow-x: hidden;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
            position: relative;
            z-index: 10;
        }

        /* --- BACKGROUND ANIMATION (Tạo cảm giác AI/Tech) --- */
        .bg-shape {
            position: absolute;
            border-radius: 50%;
            filter: blur(100px);
            z-index: 1;
            animation: float 10s infinite alternate;
        }

        .shape-1 {
            width: 400px;
            height: 400px;
            background: rgba(188, 78, 255, 0.3); /* Tím neon */
            top: -100px;
            left: -100px;
        }

        .shape-2 {
            width: 500px;
            height: 500px;
            background: rgba(0, 242, 254, 0.2); /* Xanh lơ neon */
            bottom: -200px;
            right: -100px;
            animation-delay: -5s;
        }

        @keyframes float {
            0% { transform: translate(0, 0) scale(1); }
            100% { transform: translate(50px, 50px) scale(1.2); }
        }

        /* --- HEADER --- */
        header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 0;
            margin-bottom: 50px;
        }

        .logo {
            font-size: 1.5rem;
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .icon-logo {
            font-size: 2rem;
            animation: wave 2s infinite;
        }

        @keyframes wave {
            0%, 100% { transform: rotate(0deg); }
            50% { transform: rotate(15deg); }
        }

        .badge {
            background: rgba(255, 255, 255, 0.1);
            padding: 8px 16px;
            border-radius: 50px;
            font-size: 0.9rem;
            border: 1px solid rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(5px);
        }

        /* --- HERO SECTION --- */
        .hero {
            text-align: center;
            margin-bottom: 80px;
        }

        .hero h1 {
            font-size: 4.5rem;
            line-height: 1.2;
            margin-bottom: 20px;
        }

        .gradient-text {
            background: linear-gradient(90deg, #bc4eff, #00f2fe);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .hero p {
            font-size: 1.2rem;
            color: #a0a5b5;
            max-width: 750px; /* Nới rộng một chút để text nội dung mới hiển thị đẹp hơn */
            margin: 0 auto 40px auto;
            line-height: 1.6;
        }

        /* --- NÚT BẤM (BUTTONS) --- */
        .btn-glow {
            padding: 14px 28px;
            border-radius: 30px;
            border: none;
            background: linear-gradient(90deg, #bc4eff, #00f2fe);
            color: #fff;
            font-size: 0.95rem;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            white-space: nowrap; /* Ngăn chữ trong nút bị rớt dòng */
        }

        .btn-glow:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 242, 254, 0.4);
        }

        .btn-large {
            font-size: 1.2rem;
            padding: 18px 40px;
            border-radius: 50px;
            animation: pulse 2s infinite;
        }

        /* Hiệu ứng đập nhịp tim cho nút Gọi/Liên hệ */
        @keyframes pulse {
            0% { box-shadow: 0 0 0 0 rgba(188, 78, 255, 0.6); }
            70% { box-shadow: 0 0 0 20px rgba(188, 78, 255, 0); }
            100% { box-shadow: 0 0 0 0 rgba(188, 78, 255, 0); }
        }

        /* --- FEATURES SECTION (4 Mục Nội Dung) --- */
        .features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: 80px;
        }

        .card {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.05);
            padding: 40px 30px;
            border-radius: 20px;
            backdrop-filter: blur(10px);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            cursor: default;
            position: relative;
            overflow: hidden;
        }

        .card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
            transition: left 0.5s ease;
        }

        .card:hover::before {
            left: 100%;
        }

        .card:hover {
            transform: translateY(-15px);
            background: rgba(255, 255, 255, 0.08);
            border-color: rgba(0, 242, 254, 0.5);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(0, 242, 254, 0.2);
        }

        .card-icon {
            font-size: 3rem;
            margin-bottom: 20px;
            display: inline-block;
            transition: transform 0.3s;
        }

        .card:hover .card-icon {
            transform: scale(1.2) rotate(10deg);
        }

        .card h3 {
            font-size: 1.3rem;
            margin-bottom: 15px;
            line-height: 1.4;
            color: #fff;
        }

        .card p {
            color: #a0a5b5;
            font-size: 0.95rem;
            line-height: 1.6;
        }

        /* --- THỐNG KÊ & KẾT QUẢ THỰC TẾ --- */
        .results-wrapper {
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(188, 78, 255, 0.3);
            border-radius: 24px;
            padding: 60px 30px;
            text-align: center;
            margin-bottom: 80px;
            position: relative;
            overflow: hidden;
            box-shadow: inset 0 0 50px rgba(0, 0, 0, 0.5);
        }

        /* Ánh sáng nền mờ cho khối kết quả */
        .results-wrapper::before {
            content: '';
            position: absolute;
            top: -50%;
            left: 20%;
            width: 60%;
            height: 200%;
            background: radial-gradient(ellipse, rgba(0, 242, 254, 0.1) 0%, transparent 70%);
            z-index: 0;
            pointer-events: none;
        }

        .results-wrapper > * {
            position: relative;
            z-index: 1;
        }

        .results-wrapper h2 {
            font-size: 2.5rem;
            margin-bottom: 40px;
            background: linear-gradient(90deg, #00f2fe, #bc4eff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 20px;
            margin-bottom: 50px;
        }

        .stat-card {
            background: rgba(0, 0, 0, 0.3);
            border: 1px dashed rgba(255, 255, 255, 0.1);
            padding: 30px 20px;
            border-radius: 16px;
            transition: all 0.3s;
        }

        .stat-card:hover {
            border-color: #00f2fe;
            transform: translateY(-5px);
            background: rgba(0, 242, 254, 0.05);
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: #fff;
            margin-bottom: 10px;
            text-shadow: 0 0 10px rgba(0, 242, 254, 0.5);
        }

        .stat-card p {
            color: #a0a5b5;
            font-size: 1rem;
            line-height: 1.5;
        }

        .warning-text {
            font-size: 1.3rem;
            color: #ff9a9e; /* Màu đỏ cam cảnh báo nhẹ nhàng */
            font-weight: 600;
            margin-bottom: 30px;
            letter-spacing: 0.5px;
        }

        /* --- FOOTER --- */
        footer {
            text-align: center;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 40px;
            padding-bottom: 20px;
        }

        .tags {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 15px;
            margin-bottom: 30px;
        }

        .tags span {
            background: rgba(255, 255, 255, 0.05);
            padding: 8px 20px;
            border-radius: 50px;
            font-size: 0.9rem;
            color: #00f2fe;
            border: 1px dashed rgba(0, 242, 254, 0.3);
        }

        footer p {
            color: #6c7285;
        }

        footer a {
            color: #bc4eff;
            text-decoration: none;
            font-weight: bold;
            transition: color 0.3s;
        }

        footer a:hover {
            color: #00f2fe;
        }

        /* --- RESPONSIVE CHO ĐIỆN THOẠI --- */
        @media (max-width: 768px) {
            .hero h1 { font-size: 3rem; }
            header { flex-direction: column; gap: 15px; }
            .btn-glow { width: 100%; text-align: center;}
            .results-wrapper h2 { font-size: 2rem; }
            .warning-text { font-size: 1.1rem; }
        }
    </style>
</head>
<body>

    <!-- Các khối sáng background trôi nổi tạo cảm giác tương lai -->
    <div class="bg-shape shape-1"></div>
    <div class="bg-shape shape-2"></div>

    <div class="container">
        <!-- Header -->
        <header>
            <div class="logo">
                <span class="icon-logo">🤖</span> AI DU LỊCH
            </div>
            <div class="badge">🚀 Đang nạp dữ liệu... Sắp ra mắt!</div>
        </header>

        <!-- Hero Section -->
        <section class="hero">
            <h1>Trợ Lý Du Lịch <br><span class="gradient-text">Đến Từ Tương Lai</span></h1>
            <p>Quên đi việc trực page mỏi tay, bỏ lỡ khách lúc nửa đêm. Hãy để AI trở thành "nhân viên bán tour siêu tốc" của bạn: Tư vấn thần sầu – Tạo đơn tự động – Tăng doanh số mà không cần tăng ca!</p>
            
           <!-- NÚT GỌI ĐIỆN -->
           <a href="tel:+84919362333" class="btn-glow btn-large">📞 Gọi ngay: 0919-362-333</a>
        </section>

        <!-- Khối tính năng -->
        <section class="features">
            <div class="card">
                <div class="card-icon">🐙</div>
                <h3>Bắt Sóng Đa Kênh – Không Bỏ Lỡ Lead Nào</h3>
                <p>Gom Livechat Website, Fanpage, Zalo OA về một mối. Khách chat ở đâu, AI đón lõng ở đó!</p>
            </div>

            <div class="card">
                <div class="card-icon">⚡</div>
                <h3>AI "Nảy Số" Tự Động - Chốt Đơn Như Người Thật</h3>
                <p>Tư vấn tour, đặt vé máy bay, phòng khách sạn siêu tốc 24/7. Trả lời mượt như người thật.</p>
            </div>

            <div class="card">
                <div class="card-icon">☁️</div>
                <h3>Bộ Não Tập Trung – Quản Lý Siêu Dễ</h3>
                <p>Quản lý mọi hội thoại trên một Dashboard duy nhất. Có thể tích hợp CRM xịn xò không lo rớt khách.</p>
            </div>

            <div class="card">
                <div class="card-icon">🤝</div>
                <h3>Song Kiếm Hợp Bích: Người + AI Hoàn Hảo</h3>
                <p>AI mồi khách, nhân viên chốt hạ. Linh hoạt tạo đơn hàng với sự hỗ trợ hoàn hảo giữa Người & Máy.</p>
            </div>
        </section>

        <!-- PHẦN THỐNG KÊ & KÊU GỌI HÀNH ĐỘNG -->
        <section class="results-wrapper">
            <h2>Kết Quả Thực Tế?</h2>
            
            <div class="stats-grid">
                <div class="stat-card">
                    <div class="stat-number">📉 70-80%</div>
                    <p>Giảm thời gian<br>tư vấn thủ công</p>
                </div>
                
                <div class="stat-card">
                    <div class="stat-number">📈 2-3x</div>
                    <p>Tăng số lượng<br>đơn hàng tự động</p>
                </div>
                
                <div class="stat-card">
                    <div class="stat-number">😍 100%</div>
                    <p>Khách hài lòng vì<br>phản hồi siêu nhanh</p>
                </div>
            </div>

            <p class="warning-text">Đừng để đối thủ "chốt" khách của bạn trước!</p>
            
            <a href="tel:+84919362333" class="btn-glow btn-large">👉 Liên hệ MIỄN PHÍ ngay hôm nay!</a>
        </section>

        <!-- Footer với các tag -->
        <footer>
            <div class="tags">
                <span>🎯 Quản lý tập trung</span>
                <span>🕒 Tự động tư vấn 24/7</span>
                <span>📈 Tăng hiệu suất bán</span>
                <span>🧑‍💻 Hỗ trợ linh hoạt</span>
            </div>
            <p>Trải nghiệm sức mạnh công nghệ tại <a href="http://www.aidulich.vn" target="_blank">www.aidulich.vn</a></p>
        </footer>
    </div>

</body>
</html>