.elementor-107 .elementor-element.elementor-element-cc1fee1{--display:flex;--gap:0px 0px;--row-gap:0px;--column-gap:0px;}/* Start custom CSS for html, class: .elementor-element-328e81b */<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Booking Confirmed | Tech-Ride</title>
    <meta name="description" content="Your luxury transport booking has been confirmed. Thank you for choosing Tech-Ride.">
    <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">

    <style>
        @import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600;700&family=Playfair+Display:wght@400;700&display=swap');

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Montserrat', sans-serif;
            background: #1C1B21;
            color: #fff;
            overflow-x: hidden;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }

        /* Navigation Bar */
        .luxury-navbar {
            background: rgba(28, 27, 33, 0.95);
            border-radius: 0 0 25px 25px;
            padding: 15px 40px;
            position: fixed;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 95%;
            max-width: 1200px;
            z-index: 1000;
            display: flex;
            justify-content: space-between;
            align-items: center;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(212, 175, 55, 0.2);
            box-shadow: 0 5px 30px rgba(0, 0, 0, 0.5);
            transition: all 0.3s ease;
        }

        .nav-logo img {
            height: 50px;
            width: auto;
            transition: all 0.3s ease;
        }

        .nav-logo img:hover {
            transform: scale(1.05);
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 30px;
        }

        .nav-item {
            position: relative;
        }

        .nav-link {
            color: #fff;
            text-decoration: none;
            font-weight: 500;
            font-size: 0.95rem;
            padding: 8px 0;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .nav-link:hover {
            color: #d4af37;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: #d4af37;
            transition: width 0.3s ease;
        }

        .nav-link:hover::after {
            width: 100%;
        }

        .nav-cta {
            background: linear-gradient(45deg, #d4af37, #f4d03f);
            color: #000;
            padding: 10px 25px;
            border-radius: 30px;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .nav-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
            color: #000;
        }

        .nav-cta:hover::after {
            width: 0;
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: #fff;
            font-size: 1.5rem;
            cursor: pointer;
        }

        /* Floating WhatsApp Button */
        .whatsapp-float {
            position: fixed;
            bottom: 25px;
            right: 25px;
            width: 60px;
            height: 60px;
            background: linear-gradient(45deg, #25D366, #128C7E);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.8rem;
            text-decoration: none;
            box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
            z-index: 1000;
            transition: all 0.4s ease;
            border: 2px solid rgba(255, 255, 255, 0.2);
            animation: pulse 2s infinite;
        }

        .whatsapp-float:hover {
            transform: scale(1.1) translateY(-5px);
            box-shadow: 0 12px 30px rgba(37, 211, 102, 0.6);
            animation: none;
        }

        .whatsapp-tooltip {
            position: absolute;
            right: 70px;
            background: rgba(28, 27, 33, 0.95);
            color: #d4af37;
            padding: 10px 15px;
            border-radius: 25px;
            font-size: 0.8rem;
            font-weight: 600;
            white-space: nowrap;
            opacity: 0;
            transform: translateX(20px);
            transition: all 0.3s ease;
            border: 1px solid rgba(212, 175, 55, 0.3);
            backdrop-filter: blur(10px);
        }

        .whatsapp-float:hover .whatsapp-tooltip {
            opacity: 1;
            transform: translateX(0);
        }

        @keyframes pulse {
            0% {
                box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
            }
            50% {
                box-shadow: 0 8px 30px rgba(37, 211, 102, 0.7);
            }
            100% {
                box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
            }
        }

        /* Thank You Section */
        .thankyou-section {
            flex: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 120px 20px 40px;
            position: relative;
        }

        .thankyou-container {
            background: rgba(0, 0, 0, 0.8);
            border: 2px solid #d4af37;
            border-radius: 15px;
            padding: 60px 40px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
            backdrop-filter: blur(10px);
            max-width: 700px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .thankyou-container::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
            animation: rotate 20s linear infinite;
        }

        @keyframes rotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        .thankyou-content {
            position: relative;
            z-index: 2;
        }

        .success-icon {
            width: 100px;
            height: 100px;
            margin: 0 auto 30px;
            background: linear-gradient(45deg, #d4af37, #f4d03f);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3rem;
            color: #000;
            animation: scaleIn 0.6s ease;
            box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
        }

        @keyframes scaleIn {
            0% {
                transform: scale(0);
                opacity: 0;
            }
            50% {
                transform: scale(1.1);
            }
            100% {
                transform: scale(1);
                opacity: 1;
            }
        }

        .thankyou-title {
            font-family: 'Playfair Display', serif;
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 20px;
            background: linear-gradient(45deg, #ffffff, #d4af37);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: fadeInUp 0.8s ease 0.2s both;
        }

        .thankyou-message {
            font-size: clamp(1rem, 2vw, 1.2rem);
            color: #cccccc;
            line-height: 1.8;
            margin-bottom: 30px;
            animation: fadeInUp 0.8s ease 0.4s both;
        }

        .thankyou-details {
            background: rgba(212, 175, 55, 0.1);
            border: 1px solid rgba(212, 175, 55, 0.3);
            border-radius: 10px;
            padding: 25px;
            margin: 30px 0;
            text-align: left;
            animation: fadeInUp 0.8s ease 0.6s both;
        }

        .detail-item {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 15px;
            font-size: 0.95rem;
        }

        .detail-item:last-child {
            margin-bottom: 0;
        }

        .detail-icon {
            width: 40px;
            height: 40px;
            background: rgba(212, 175, 55, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #d4af37;
            font-size: 1.1rem;
            flex-shrink: 0;
        }

        .detail-text {
            flex: 1;
        }

        .detail-label {
            color: #d4af37;
            font-weight: 600;
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 3px;
        }

        .detail-value {
            color: #ffffff;
            font-size: 1rem;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .action-buttons {
            display: flex;
            gap: 15px;
            justify-content: center;
            flex-wrap: wrap;
            margin-top: 40px;
            animation: fadeInUp 0.8s ease 0.8s both;
        }

        .btn {
            background: linear-gradient(45deg, #d4af37, #f4d03f);
            border: none;
            border-radius: 8px;
            padding: 15px 30px;
            font-family: 'Montserrat', sans-serif;
            font-size: 1rem;
            font-weight: 600;
            color: #000000;
            cursor: pointer;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
        }

        .btn-secondary {
            background: transparent;
            color: #d4af37;
            border: 2px solid #d4af37;
        }

        .btn-secondary:hover {
            background: rgba(212, 175, 55, 0.1);
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .thankyou-section {
                padding: 100px 15px 20px;
            }

            .luxury-navbar {
                padding: 12px 20px;
                width: 97%;
            }

            .thankyou-container {
                padding: 40px 25px;
            }

            .nav-menu {
                position: fixed;
                top: 80px;
                right: -100%;
                flex-direction: column;
                background: rgba(28, 27, 33, 0.98);
                width: 80%;
                max-width: 300px;
                text-align: center;
                padding: 30px 0;
                border-radius: 0 0 0 25px;
                transition: 0.3s;
                box-shadow: -5px 5px 20px rgba(0, 0, 0, 0.5);
                border: 1px solid rgba(212, 175, 55, 0.2);
                backdrop-filter: blur(10px);
            }

            .nav-menu.active {
                right: 0;
            }

            .mobile-menu-btn {
                display: block;
            }

            .action-buttons {
                flex-direction: column;
            }

            .btn {
                width: 100%;
                justify-content: center;
            }

            .whatsapp-float {
                width: 55px;
                height: 55px;
                bottom: 20px;
                right: 20px;
                font-size: 1.6rem;
            }

            .whatsapp-tooltip {
                display: none;
            }
        }

        @media (max-width: 480px) {
            .nav-logo img {
                height: 40px;
            }

            .thankyou-container {
                padding: 30px 20px;
            }

            .success-icon {
                width: 80px;
                height: 80px;
                font-size: 2.5rem;
            }

            .thankyou-details {
                padding: 20px;
            }

            .detail-item {
                flex-direction: column;
                text-align: center;
                gap: 10px;
            }

            .whatsapp-float {
                width: 50px;
                height: 50px;
                bottom: 15px;
                right: 15px;
                font-size: 1.5rem;
            }
        }
    </style>
</head>
<body>
    <!-- Navigation Bar -->
    <nav class="luxury-navbar" id="navbar">
        <div class="nav-logo">
            <img src="https://techride.ma/wp-content/uploads/2025/11/processed_image.png" alt="Tech-Ride Luxury Transport">
        </div>
        
        <ul class="nav-menu" id="navMenu">
            <li class="nav-item">
                <a href="/" class="nav-link">Home</a>
            </li>
            <li class="nav-item">
                <a href="/#services" class="nav-link">Premium Services</a>
            </li>
            <li class="nav-item">
                <a href="/#why" class="nav-link">Why Choose Us</a>
            </li>
            <li class="nav-item">
                <a href="/#faq" class="nav-link">FAQ</a>
            </li>
            <li class="nav-item">
                <a href="/#luxuryBookingForm" class="nav-link nav-cta">Book now</a>
            </li>
        </ul>
        
        <button class="mobile-menu-btn" id="mobileMenuBtn">
            ☰
        </button>
    </nav>

    <!-- Floating WhatsApp Button -->
    <a href="https://wa.me/212661393318" class="whatsapp-float" target="_blank">
        <i class="fab fa-whatsapp"></i>
        <div class="whatsapp-tooltip">Contact us on WhatsApp</div>
    </a>

    <!-- Thank You Section -->
    <div class="thankyou-section">
        <div class="thankyou-container">
            <div class="thankyou-content">
                <div class="success-icon">
                    <i class="fas fa-check"></i>
                </div>

                <h1 class="thankyou-title">Booking Confirmed!</h1>

                <p class="thankyou-message">
                    Thank you for choosing Tech-Ride. Your luxury transport booking has been successfully received. Our team will contact you shortly to confirm all the details and ensure your journey exceeds expectations.
                </p>

                <div class="thankyou-details">
                    <div class="detail-item">
                        <div class="detail-icon">
                            <i class="fas fa-envelope"></i>
                        </div>
                        <div class="detail-text">
                            <div class="detail-label">Confirmation Email</div>
                            <div class="detail-value">Check your inbox for booking details</div>
                        </div>
                    </div>

                    <div class="detail-item">
                        <div class="detail-icon">
                            <i class="fas fa-phone"></i>
                        </div>
                        <div class="detail-text">
                            <div class="detail-label">Contact</div>
                            <div class="detail-value">We'll call you within 24 hours</div>
                        </div>
                    </div>

                    <div class="detail-item">
                        <div class="detail-icon">
                            <i class="fas fa-headset"></i>
                        </div>
                        <div class="detail-text">
                            <div class="detail-label">Support</div>
                            <div class="detail-value">Available 24/7 for your needs</div>
                        </div>
                    </div>
                </div>

                <div class="action-buttons">
                    <a href="/" class="btn">
                        <i class="fas fa-home"></i> Back to Home
                    </a>
                    <a href="https://wa.me/212661393318" class="btn btn-secondary" target="_blank">
                        <i class="fab fa-whatsapp"></i> Contact Us
                    </a>
                </div>
            </div>
        </div>
    </div>

    <script>
        // Mobile menu toggle
        const mobileMenuBtn = document.getElementById('mobileMenuBtn');
        const navMenu = document.getElementById('navMenu');

        mobileMenuBtn.addEventListener('click', () => {
            navMenu.classList.toggle('active');
            mobileMenuBtn.textContent = navMenu.classList.contains('active') ? '✕' : '☰';
        });

        // Close mobile menu when clicking on a link
        document.querySelectorAll('.nav-link').forEach(link => {
            link.addEventListener('click', () => {
                navMenu.classList.remove('active');
                mobileMenuBtn.textContent = '☰';
            });
        });
    </script>
</body>
</html>/* End custom CSS */
/* Start custom CSS for container, class: .elementor-element-cc1fee1 */.elementor-107 .elementor-element.elementor-element-cc1fee1 {
    width: 100vw !important;    
    left: 0 !important;
    right: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    overflow: hidden;
}/* End custom CSS */