Spaces:
Running
Running
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>Good Day Motorbike Rentals - Kampot, Cambodia</title> | |
| <link rel="preconnect" href="https://fonts.googleapis.com"> | |
| <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin> | |
| <link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&family=Playfair+Display:wght@400;500;600;700&display=swap" rel="stylesheet"> | |
| <script src="https://cdn.tailwindcss.com"></script> | |
| <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css"> | |
| <script src="https://cdnjs.cloudflare.com/ajax/libs/i18next/21.6.16/i18next.min.js"></script> | |
| <script src="https://cdn.jsdelivr.net/npm/i18next-http-backend@1.3.2/i18nextHttpBackend.min.js"></script> | |
| <script src="https://cdn.jsdelivr.net/npm/jquery-i18next@1.2.1/jquery-i18next.min.js"></script> | |
| <script src="https://code.jquery.com/jquery-3.6.0.min.js"></script> | |
| <style> | |
| body { | |
| font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif; | |
| line-height: 1.6; | |
| } | |
| h1, h2, h3, h4, h5, h6 { | |
| font-family: 'Playfair Display', serif; | |
| font-weight: 600; | |
| line-height: 1.3; | |
| margin-bottom: 0.75em; | |
| } | |
| p { | |
| margin-bottom: 1.25em; | |
| } | |
| .hero-gradient { | |
| background: linear-gradient(135deg, rgba(44,62,80,0.95) 0%, rgba(52,73,94,0.95) 100%); | |
| } | |
| .bike-card:hover { | |
| transform: translateY(-5px); | |
| box-shadow: 0 10px 25px rgba(0,0,0,0.1); | |
| } | |
| .testimonial-card { | |
| transition: all 0.3s ease; | |
| } | |
| .testimonial-card:hover { | |
| transform: scale(1.02); | |
| } | |
| .booking-form { | |
| box-shadow: 0 10px 30px rgba(0,0,0,0.1); | |
| } | |
| .nav-link:hover { | |
| color: #FF6B00; | |
| } | |
| .language-selector:hover .language-dropdown { | |
| display: block; | |
| } | |
| </style> | |
| </head> | |
| <body class="font-sans antialiased text-gray-800"> | |
| <script> | |
| $(document).ready(function() { | |
| // Mobile menu toggle | |
| $('#mobile-menu-button').on('click', function() { | |
| $('#mobile-menu').toggleClass('hidden'); | |
| $(this).find('i').toggleClass('fa-bars fa-times'); | |
| }); | |
| // FAQ accordion | |
| $('.faq-question').on('click', function() { | |
| // Toggle the icon | |
| $(this).find('i').toggleClass('fa-chevron-down fa-chevron-up'); | |
| // Slide toggle the answer | |
| $(this).next('.faq-answer').slideToggle(); | |
| // Close other open FAQs | |
| $('.faq-question').not(this).next('.faq-answer').slideUp(); | |
| $('.faq-question').not(this).find('i').removeClass('fa-chevron-up').addClass('fa-chevron-down'); | |
| }); | |
| // Close mobile menu when clicking on a link | |
| $('#mobile-menu a').on('click', function() { | |
| $('#mobile-menu').addClass('hidden'); | |
| $('#mobile-menu-button').find('i').removeClass('fa-times').addClass('fa-bars'); | |
| }); | |
| // Language selector dropdown | |
| $('.language-selector button').click(function(e) { | |
| e.stopPropagation(); | |
| $('.language-dropdown').toggleClass('hidden'); | |
| }); | |
| // Close language dropdown when clicking elsewhere | |
| $(document).click(function() { | |
| $('.language-dropdown').addClass('hidden'); | |
| }); | |
| // Language selection | |
| $('.language-dropdown a').click(function(e) { | |
| e.preventDefault(); | |
| var lang = $(this).data('lang'); | |
| // Update language display | |
| $('.language-selector button span:eq(0)').text(lang.toUpperCase()); | |
| $('.language-dropdown').addClass('hidden'); | |
| // In a real implementation, this would change the page content | |
| }); | |
| // Book Now buttons | |
| $('.book-btn').click(function() { | |
| var bikeName = $(this).data('bike'); | |
| $('#bike-type').val(bikeName); | |
| $('html, body').animate({ | |
| scrollTop: $("#booking").offset().top | |
| }, 800); | |
| }); | |
| // Set min date for pickup | |
| var today = new Date(); | |
| var dd = String(today.getDate()).padStart(2, '0'); | |
| var mm = String(today.getMonth() + 1).padStart(2, '0'); | |
| var yyyy = today.getFullYear(); | |
| var minDate = yyyy + '-' + mm + '-' + dd; | |
| $('#pickup-date').attr('min', minDate); | |
| // Form submission | |
| $('#rental-form').submit(function(e) { | |
| e.preventDefault(); | |
| alert('Booking submitted! In a real implementation, this would send your information to our team.'); | |
| this.reset(); | |
| }); | |
| }); | |
| </script> | |
| <!-- Header/Navigation --> | |
| <header class="bg-white shadow-sm sticky top-0 z-50"> | |
| <div class="container mx-auto px-6 py-4 flex justify-between items-center"> | |
| <div class="flex items-center"> | |
| <a href="#" class="flex items-center group"> | |
| <i class="fas fa-motorcycle text-3xl text-amber-600 mr-3 transition duration-300 group-hover:rotate-15"></i> | |
| <div> | |
| <span class="block text-xl font-bold text-gray-900 font-serif tracking-tight" data-i18n="header.title">Good Day</span> | |
| <span class="block text-xs text-gray-500 uppercase tracking-wider" data-i18n="header.subtitle">Motorbike Rentals</span> | |
| </div> | |
| </a> | |
| </div> | |
| <div class="hidden md:flex items-center space-x-10"> | |
| <nav> | |
| <ul class="flex space-x-8"> | |
| <li><a href="#home" class="nav-link font-medium text-gray-700 hover:text-amber-600 transition duration-300 relative group"> | |
| Home | |
| <span class="absolute bottom-0 left-0 w-0 h-0.5 bg-amber-600 transition-all duration-300 group-hover:w-full"></span> | |
| </a></li> | |
| <li><a href="#bikes" class="nav-link font-medium text-gray-700 hover:text-amber-600 transition duration-300 relative group"> | |
| Our Bikes | |
| <span class="absolute bottom-0 left-0 w-0 h-0.5 bg-amber-600 transition-all duration-300 group-hover:w-full"></span> | |
| </a></li> | |
| <li><a href="#pricing" class="nav-link font-medium text-gray-700 hover:text-amber-600 transition duration-300 relative group"> | |
| Pricing | |
| <span class="absolute bottom-0 left-0 w-0 h-0.5 bg-amber-600 transition-all duration-300 group-hover:w-full"></span> | |
| </a></li> | |
| <li><a href="#testimonials" class="nav-link font-medium text-gray-700 hover:text-amber-600 transition duration-300 relative group whitespace-nowrap"> | |
| Reviews | |
| <span class="absolute bottom-0 left-0 w-0 h-0.5 bg-amber-600 transition-all duration-300 group-hover:w-full"></span> | |
| </a></li> | |
| <li><a href="#contact" class="nav-link font-medium text-gray-700 hover:text-amber-600 transition duration-300 relative group whitespace-nowrap"> | |
| Contact | |
| <span class="absolute bottom-0 left-0 w-0 h-0.5 bg-amber-600 transition-all duration-300 group-hover:w-full"></span> | |
| </a></li> | |
| </ul> | |
| </nav> | |
| <div class="language-selector relative"> | |
| <button class="flex items-center space-x-1 focus:outline-none"> | |
| <i class="fas fa-globe text-gray-600"></i> | |
| <span class="font-medium">EN</span> | |
| <i class="fas fa-chevron-down text-xs"></i> | |
| </button> | |
| <div class="language-dropdown absolute right-0 mt-2 w-32 bg-white rounded-md shadow-lg hidden"> | |
| <a href="#" class="block px-4 py-2 hover:bg-orange-50" data-lang="en">English</a> | |
| <a href="#" class="block px-4 py-2 hover:bg-orange-50" data-lang="fr">Français</a> | |
| <a href="#" class="block px-4 py-2 hover:bg-orange-50" data-lang="km">ភាសាខ្មែរ</a> | |
| </div> | |
| </div> | |
| <a href="#booking" class="bg-amber-600 hover:bg-amber-700 text-white px-5 py-2.5 rounded-md font-medium transition duration-300 shadow hover:shadow-md"> | |
| Book Now | |
| </a> | |
| </div> | |
| <button id="mobile-menu-button" class="md:hidden text-gray-600 focus:outline-none transition"> | |
| <i class="fas fa-bars text-2xl"></i> | |
| </button> | |
| </div> | |
| <!-- Mobile menu --> | |
| <div id="mobile-menu" class="hidden md:hidden bg-white border-t"> | |
| <div class="container mx-auto px-4 py-3"> | |
| <ul class="space-y-3"> | |
| <li><a href="#home" class="block py-2 font-medium hover:text-orange-600 transition">Home</a></li> | |
| <li><a href="#bikes" class="block py-2 font-medium hover:text-orange-600 transition">Our Bikes</a></li> | |
| <li><a href="#pricing" class="block py-2 font-medium hover:text-orange-600 transition">Pricing</a></li> | |
| <li><a href="#testimonials" class="block py-2 font-medium hover:text-orange-600 transition">Reviews</a></li> | |
| <li><a href="#contact" class="block py-2 font-medium hover:text-orange-600 transition">Contact</a></li> | |
| <li class="pt-2"> | |
| <a href="#booking" class="block bg-orange-500 hover:bg-orange-600 text-white text-center py-2 rounded-md font-medium transition"> | |
| Book Now | |
| </a> | |
| </li> | |
| </ul> | |
| <div class="mt-4 pt-4 border-t"> | |
| <div class="flex space-x-4"> | |
| <a href="#" class="px-3 py-1 bg-gray-100 rounded hover:bg-orange-500 hover:text-white transition" data-lang="en">EN</a> | |
| <a href="#" class="px-3 py-1 bg-gray-100 rounded hover:bg-orange-500 hover:text-white transition" data-lang="fr">FR</a> | |
| <a href="#" class="px-3 py-1 bg-gray-100 rounded hover:bg-orange-500 hover:text-white transition" data-lang="km">KH</a> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </header> | |
| <!-- Hero Section --> | |
| <section id="home" class="hero-gradient text-white"> | |
| <div class="container mx-auto px-4 py-12 md:py-24"> | |
| <div class="flex flex-col md:flex-row items-center"> | |
| <div class="md:w-1/2 mb-8 md:mb-0"> | |
| <h1 class="text-3xl md:text-5xl font-bold mb-4 md:mb-6 leading-tight">Explore Kampot in Style</h1> | |
| <p class="text-lg md:text-2xl text-white/90 mb-6 md:mb-8">Premium motorbikes with award-winning service</p> | |
| <div class="flex flex-col sm:flex-row space-y-3 sm:space-y-0 sm:space-x-4"> | |
| <a href="#booking" class="bg-white text-orange-600 hover:bg-gray-100 px-5 py-2.5 rounded-md font-bold text-center transition text-sm md:text-base"> | |
| Book Now | |
| </a> | |
| <a href="#bikes" class="border-2 border-white hover:bg-white hover:text-orange-600 px-5 py-2.5 rounded-md font-bold text-center transition text-sm md:text-base"> | |
| View Bikes | |
| </a> | |
| </div> | |
| </div> | |
| <div class="md:w-1/2 flex justify-center md:pl-10 mt-8 md:mt-0"> | |
| <img src="https://images.unsplash.com/photo-1558981806-ec527fa84c39?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" | |
| alt="Motorbike in Kampot" | |
| class="rounded-lg shadow-2xl w-full max-w-md h-auto object-cover"> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Why Choose Us --> | |
| <section class="bg-gray-50 py-10 md:py-16"> | |
| <div class="container mx-auto px-4"> | |
| <div class="text-center mb-8 md:mb-12"> | |
| <h2 class="text-2xl md:text-4xl font-bold mb-4">Why Choose Us?</h2> | |
| <p class="text-gray-600 max-w-3xl mx-auto md:text-lg">Your adventure partners in Kampot</p> | |
| </div> | |
| <div class="grid grid-cols-1 md:grid-cols-3 gap-6 md:gap-8"> | |
| <div class="bg-white p-5 md:p-6 rounded-lg shadow-sm text-center"> | |
| <div class="text-orange-500 mb-3 md:mb-4"> | |
| <i class="fas fa-award text-3xl md:text-4xl"></i> | |
| </div> | |
| <h3 class="text-lg md:text-xl font-bold mb-2">Award-Winning</h3> | |
| <p class="text-gray-600 text-sm md:text-base">Exceptional service & well-maintained bikes</p> | |
| </div> | |
| <div class="bg-white p-5 md:p-6 rounded-lg shadow-sm text-center"> | |
| <div class="text-orange-500 mb-3 md:mb-4"> | |
| <i class="fas fa-headset text-3xl md:text-4xl"></i> | |
| </div> | |
| <h3 class="text-lg md:text-xl font-bold mb-2">Multilingual</h3> | |
| <p class="text-gray-600 text-sm md:text-base">English, French & Khmer speaking staff</p> | |
| </div> | |
| <div class="bg-white p-5 md:p-6 rounded-lg shadow-sm text-center"> | |
| <div class="text-orange-500 mb-3 md:mb-4"> | |
| <i class="fas fa-map-marked-alt text-3xl md:text-4xl"></i> | |
| </div> | |
| <h3 class="text-lg md:text-xl font-bold mb-2">Local Experts</h3> | |
| <p class="text-gray-600 text-sm md:text-base">Best route recommendations</p> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Our Bikes --> | |
| <section id="bikes" class="py-12 md:py-16 bg-white"> | |
| <div class="container mx-auto px-4"> | |
| <div class="text-center mb-8 md:mb-12"> | |
| <h2 class="text-2xl md:text-3xl font-bold mb-3">Our Bike Fleet</h2> | |
| <p class="text-gray-600 max-w-3xl mx-auto md:text-lg">Perfect for exploring Kampot</p> | |
| </div> | |
| <div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-6 md:gap-8"> | |
| <!-- Honda AirBlade --> | |
| <div class="bike-card bg-white rounded-lg overflow-hidden shadow-md transition duration-300 hover:shadow-lg border border-gray-100"> | |
| <div class="h-48 overflow-hidden"> | |
| <img src="https://images.unsplash.com/photo-1580310614658-cdafd500a0b2?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" | |
| alt="Honda AirBlade" | |
| class="w-full h-full object-cover"> | |
| </div> | |
| <div class="p-5"> | |
| <h3 class="text-xl font-bold mb-2">Honda AirBlade</h3> | |
| <p class="text-gray-600 mb-4">125cc automatic scooter perfect for city riding and short trips.</p> | |
| <div class="flex justify-between items-center"> | |
| <span class="text-orange-500 font-bold">$5/day</span> | |
| <button class="bg-orange-500 hover:bg-orange-600 text-white px-4 py-2 rounded-md font-medium transition book-btn" data-bike="Honda AirBlade"> | |
| Book Now | |
| </button> | |
| </div> | |
| </div> | |
| </div> | |
| <!-- Honda Click --> | |
| <div class="bike-card bg-white rounded-lg overflow-hidden shadow-md transition duration-300"> | |
| <div class="h-48 overflow-hidden"> | |
| <img src="https://images.unsplash.com/photo-1558981852-426c6c22a060?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1471&q=80" | |
| alt="Honda Click" | |
| class="w-full h-full object-cover"> | |
| </div> | |
| <div class="p-6"> | |
| <h3 class="text-xl font-bold mb-2">Honda Click</h3> | |
| <p class="text-gray-600 mb-4">125cc fuel-efficient scooter with great storage space.</p> | |
| <div class="flex justify-between items-center"> | |
| <span class="text-orange-500 font-bold">$5/day</span> | |
| <button class="bg-orange-500 hover:bg-orange-600 text-white px-4 py-2 rounded-md font-medium transition book-btn" data-bike="Honda Click"> | |
| Book Now | |
| </button> | |
| </div> | |
| </div> | |
| </div> | |
| <!-- Honda Scoopy --> | |
| <div class="bike-card bg-white rounded-lg overflow-hidden shadow-md transition duration-300"> | |
| <div class="h-48 overflow-hidden"> | |
| <img src="https://images.unsplash.com/photo-1601758003120-4595bafea5a2?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" | |
| alt="Honda Scoopy" | |
| class="w-full h-full object-cover"> | |
| </div> | |
| <div class="p-6"> | |
| <h3 class="text-xl font-bold mb-2">Honda Scoopy</h3> | |
| <p class="text-gray-600 mb-4">Stylish 125cc retro scooter with comfortable seating.</p> | |
| <div class="flex justify-between items-center"> | |
| <span class="text-orange-500 font-bold">$5/day</span> | |
| <button class="bg-orange-500 hover:bg-orange-600 text-white px-4 py-2 rounded-md font-medium transition book-btn" data-bike="Honda Scoopy"> | |
| Book Now | |
| </button> | |
| </div> | |
| </div> | |
| </div> | |
| <!-- Honda PCX --> | |
| <div class="bike-card bg-white rounded-lg overflow-hidden shadow-md transition duration-300"> | |
| <div class="h-48 overflow-hidden"> | |
| <img src="https://images.unsplash.com/photo-1558981806-ec527fa84c39?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" | |
| alt="Honda PCX" | |
| class="w-full h-full object-cover"> | |
| </div> | |
| <div class="p-6"> | |
| <h3 class="text-xl font-bold mb-2">Honda PCX</h3> | |
| <p class="text-gray-600 mb-4">150cc premium scooter with excellent comfort for longer rides.</p> | |
| <div class="flex justify-between items-center"> | |
| <span class="text-orange-500 font-bold">$7/day</span> | |
| <button class="bg-orange-500 hover:bg-orange-600 text-white px-4 py-2 rounded-md font-medium transition book-btn" data-bike="Honda PCX"> | |
| Book Now | |
| </button> | |
| </div> | |
| </div> | |
| </div> | |
| <!-- Honda XR250 --> | |
| <div class="bike-card bg-white rounded-lg overflow-hidden shadow-md transition duration-300"> | |
| <div class="h-48 overflow-hidden"> | |
| <img src="https://images.unsplash.com/photo-1558980394-4c7c9299fe96?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" | |
| alt="Honda XR250" | |
| class="w-full h-full object-cover"> | |
| </div> | |
| <div class="p-6"> | |
| <h3 class="text-xl font-bold mb-2">Honda XR250</h3> | |
| <p class="text-gray-600 mb-4">250cc dirt bike for adventurous rides on and off road.</p> | |
| <div class="flex justify-between items-center"> | |
| <span class="text-orange-500 font-bold">$19/day</span> | |
| <button class="bg-orange-500 hover:bg-orange-600 text-white px-4 py-2 rounded-md font-medium transition book-btn" data-bike="Honda XR250"> | |
| Book Now | |
| </button> | |
| </div> | |
| </div> | |
| </div> | |
| <!-- Rental Package --> | |
| <div class="bike-card bg-orange-50 rounded-lg overflow-hidden shadow-md transition duration-300 border border-orange-100"> | |
| <div class="h-48 overflow-hidden bg-orange-100 flex items-center justify-center"> | |
| <i class="fas fa-motorcycle text-6xl text-orange-500"></i> | |
| </div> | |
| <div class="p-6"> | |
| <h3 class="text-xl font-bold mb-2">Multi-Day Discount</h3> | |
| <p class="text-gray-600 mb-4">Rent for 3+ days and get 10% off. 7+ days for 20% off!</p> | |
| <div class="flex justify-between items-center"> | |
| <span class="text-orange-500 font-bold">Ask Us</span> | |
| <button class="bg-orange-500 hover:bg-orange-600 text-white px-4 py-2 rounded-md font-medium transition" onclick="showDiscountModal()"> | |
| Learn More | |
| </button> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Pricing Section --> | |
| <section id="pricing" class="py-12 md:py-16 bg-gray-50"> | |
| <div class="container mx-auto px-4"> | |
| <div class="text-center mb-8 md:mb-12"> | |
| <h2 class="text-2xl md:text-3xl font-bold mb-3">Simple Pricing</h2> | |
| <p class="text-gray-600 max-w-3xl mx-auto md:text-lg">No hidden fees</p> | |
| </div> | |
| <div class="max-w-4xl mx-auto bg-white rounded-xl shadow-md overflow-hidden"> | |
| <div class="md:flex"> | |
| <div class="md:w-1/2 bg-gray-800 text-white p-6"> | |
| <h3 class="text-2xl font-bold mb-4">Standard Scooters</h3> | |
| <ul class="space-y-3"> | |
| <li class="flex items-start"> | |
| <i class="fas fa-check-circle mt-1 mr-2"></i> | |
| <span>Honda AirBlade, Click, Scoopy</span> | |
| </li> | |
| <li class="flex items-start"> | |
| <i class="fas fa-check-circle mt-1 mr-2"></i> | |
| <span>125cc automatic transmission</span> | |
| </li> | |
| <li class="flex items-start"> | |
| <i class="fas fa-check-circle mt-1 mr-2"></i> | |
| <span>Perfect for city and short trips</span> | |
| </li> | |
| <li class="flex items-start"> | |
| <i class="fas fa-check-circle mt-1 mr-2"></i> | |
| <span>Includes helmet and basic insurance</span> | |
| </li> | |
| </ul> | |
| <div class="mt-6"> | |
| <span class="text-4xl font-bold">$5</span> | |
| <span class="text-xl">/ day</span> | |
| </div> | |
| </div> | |
| <div class="md:w-1/2 bg-gray-800 text-white p-8"> | |
| <h3 class="text-2xl font-bold mb-4">Adventure Bikes</h3> | |
| <ul class="space-y-3"> | |
| <li class="flex items-start"> | |
| <i class="fas fa-check-circle mt-1 mr-2 text-orange-400"></i> | |
| <span>Honda XR250</span> | |
| </li> | |
| <li class="flex items-start"> | |
| <i class="fas fa-check-circle mt-1 mr-2 text-orange-400"></i> | |
| <span>250cc for on/off road adventures</span> | |
| </li> | |
| <li class="flex items-start"> | |
| <i class="fas fa-check-circle mt-1 mr-2 text-orange-400"></i> | |
| <span>Explore Kampot's countryside</span> | |
| </li> | |
| <li class="flex items-start"> | |
| <i class="fas fa-check-circle mt-1 mr-2 text-orange-400"></i> | |
| <span>Includes helmet and basic insurance</span> | |
| </li> | |
| </ul> | |
| <div class="mt-6"> | |
| <span class="text-4xl font-bold">$19</span> | |
| <span class="text-xl">/ day</span> | |
| </div> | |
| </div> | |
| </div> | |
| <div class="bg-white p-8 border-t"> | |
| <h4 class="text-lg font-bold mb-3">Additional Services</h4> | |
| <div class="grid grid-cols-1 md:grid-cols-3 gap-4"> | |
| <div class="flex items-center"> | |
| <i class="fas fa-map-marked-alt text-orange-500 mr-3"></i> | |
| <div> | |
| <h5 class="font-medium">Route Planning</h5> | |
| <p class="text-sm text-gray-600">Free</p> | |
| </div> | |
| </div> | |
| <div class="flex items-center"> | |
| <i class="fas fa-phone-alt text-orange-500 mr-3"></i> | |
| <div> | |
| <h5 class="font-medium">24/7 Support</h5> | |
| <p class="text-sm text-gray-600">Free</p> | |
| </div> | |
| </div> | |
| <div class="flex items-center"> | |
| <i class="fas fa-umbrella-beach text-orange-500 mr-3"></i> | |
| <div> | |
| <h5 class="font-medium">Beach Delivery</h5> | |
| <p class="text-sm text-gray-600">$5 extra</p> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Testimonials --> | |
| <section id="testimonials" class="py-12 md:py-16 bg-white"> | |
| <div class="container mx-auto px-4"> | |
| <div class="text-center mb-8 md:mb-12"> | |
| <h2 class="text-2xl md:text-3xl font-bold mb-3">Customer Reviews</h2> | |
| <p class="text-gray-600 max-w-3xl mx-auto md:text-lg">From travelers like you</p> | |
| </div> | |
| <div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8"> | |
| <div class="testimonial-card bg-gray-50 p-5 rounded-lg"> | |
| <div class="flex items-center mb-4"> | |
| <div class="w-12 h-12 rounded-full bg-orange-200 flex items-center justify-center mr-4"> | |
| <span class="text-orange-600 font-bold">JD</span> | |
| </div> | |
| <div> | |
| <h4 class="font-bold">Jean Dupont</h4> | |
| <div class="flex text-orange-400"> | |
| <i class="fas fa-star"></i> | |
| <i class="fas fa-star"></i> | |
| <i class="fas fa-star"></i> | |
| <i class="fas fa-star"></i> | |
| <i class="fas fa-star"></i> | |
| </div> | |
| </div> | |
| </div> | |
| <p class="text-gray-600 italic leading-relaxed">"The Honda PCX was perfect for exploring Kampot. The staff gave excellent recommendations for routes to the pepper plantations. Merci beaucoup!"</p> | |
| </div> | |
| <div class="testimonial-card bg-gray-50 p-6 rounded-lg"> | |
| <div class="flex items-center mb-4"> | |
| <div class="w-12 h-12 rounded-full bg-orange-200 flex items-center justify-center mr-4"> | |
| <span class="text-orange-600 font-bold">SM</span> | |
| </div> | |
| <div> | |
| <h4 class="font-bold">Sophie Müller</h4> | |
| <div class="flex text-orange-400"> | |
| <i class="fas fa-star"></i> | |
| <i class="fas fa-star"></i> | |
| <i class="fas fa-star"></i> | |
| <i class="fas fa-star"></i> | |
| <i class="fas fa-star"></i> | |
| </div> | |
| </div> | |
| </div> | |
| <p class="text-gray-600 italic">"Rented the XR250 for 3 days to explore Bokor Mountain. The bike was in perfect condition and the staff helped me plan an amazing route. Highly recommended!"</p> | |
| </div> | |
| <div class="testimonial-card bg-gray-50 p-6 rounded-lg"> | |
| <div class="flex items-center mb-4"> | |
| <div class="w-12 h-12 rounded-full bg-orange-200 flex items-center justify-center mr-4"> | |
| <span class="text-orange-600 font-bold">TK</span> | |
| </div> | |
| <div> | |
| <h4 class="font-bold">Tomoko Kawasaki</h4> | |
| <div class="flex text-orange-400"> | |
| <i class="fas fa-star"></i> | |
| <i class="fas fa-star"></i> | |
| <i class="fas fa-star"></i> | |
| <i class="fas fa-star"></i> | |
| <i class="fas fa-star-half-alt"></i> | |
| </div> | |
| </div> | |
| </div> | |
| <p class="text-gray-600 italic">"The Honda Scoopy was so cute and comfortable! Perfect for riding around Kampot town and to the riverside. Staff was very helpful with directions."</p> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Booking Form --> | |
| <section id="booking" class="py-12 md:py-16 bg-gray-900 text-white"> | |
| <div class="container mx-auto px-4"> | |
| <div class="max-w-4xl mx-auto"> | |
| <div class="text-center mb-8 md:mb-12"> | |
| <h2 class="text-2xl md:text-3xl font-bold mb-3">Ready to Ride?</h2> | |
| <p class="text-gray-300 max-w-3xl mx-auto md:text-lg">Book your bike now</p> | |
| </div> | |
| <div class="booking-form bg-gray-800 rounded-lg p-8"> | |
| <form id="rental-form" class="grid grid-cols-1 md:grid-cols-2 gap-4 md:gap-5"> | |
| <div class="md:col-span-2"> | |
| <h3 class="text-xl font-bold mb-4">Your Rental Details</h3> | |
| </div> | |
| <div> | |
| <label for="bike-type" class="block mb-2 font-medium">Bike Type</label> | |
| <select id="bike-type" class="w-full px-4 py-3 rounded bg-gray-700 border border-gray-600 focus:border-orange-500 focus:outline-none" required> | |
| <option value="">Select a bike</option> | |
| <option value="Honda AirBlade">Honda AirBlade ($5/day)</option> | |
| <option value="Honda Click">Honda Click ($5/day)</option> | |
| <option value="Honda Scoopy">Honda Scoopy ($5/day)</option> | |
| <option value="Honda PCX">Honda PCX ($7/day)</option> | |
| <option value="Honda XR250">Honda XR250 ($19/day)</option> | |
| </select> | |
| </div> | |
| <div> | |
| <label for="rental-days" class="block mb-2 font-medium">Rental Duration</label> | |
| <select id="rental-days" class="w-full px-4 py-3 rounded bg-gray-700 border border-gray-600 focus:border-orange-500 focus:outline-none" required> | |
| <option value="">Select days</option> | |
| <option value="1">1 day</option> | |
| <option value="2">2 days</option> | |
| <option value="3">3 days (10% off)</option> | |
| <option value="4">4 days (10% off)</option> | |
| <option value="5">5 days (10% off)</option> | |
| <option value="6">6 days (10% off)</option> | |
| <option value="7">7 days (20% off)</option> | |
| <option value="8">8+ days (20% off)</option> | |
| </select> | |
| </div> | |
| <div> | |
| <label for="pickup-date" class="block mb-2 font-medium">Pickup Date</label> | |
| <input type="date" id="pickup-date" class="w-full px-4 py-3 rounded bg-gray-700 border border-gray-600 focus:border-orange-500 focus:outline-none" min="" required> | |
| </div> | |
| <div> | |
| <label for="pickup-time" class="block mb-2 font-medium">Pickup Time</label> | |
| <select id="pickup-time" class="w-full px-4 py-3 rounded bg-gray-700 border border-gray-600 focus:border-orange-500 focus:outline-none" required> | |
| <option value="09:00">9:00 AM</option> | |
| <option value="10:00">10:00 AM</option> | |
| <option value="11:00">11:00 AM</option> | |
| <option value="12:00">12:00 PM</option> | |
| <option value="13:00">1:00 PM</option> | |
| <option value="14:00">2:00 PM</option> | |
| <option value="15:00">3:00 PM</option> | |
| <option value="16:00">4:00 PM</option> | |
| <option value="17:00">5:00 PM</option> | |
| </select> | |
| </div> | |
| <div class="md:col-span-2"> | |
| <h3 class="text-xl font-bold mb-4 mt-6">Your Information</h3> | |
| </div> | |
| <div> | |
| <label for="full-name" class="block mb-2 font-medium text-gray-300">Full Name</label> | |
| <input type="text" id="full-name" class="w-full px-4 py-3 rounded bg-gray-700 border border-gray-600 focus:border-orange-500 focus:outline-none" required> | |
| </div> | |
| <div> | |
| <label for="email" class="block mb-2 font-medium">Email</label> | |
| <input type="email" id="email" class="w-full px-4 py-3 rounded bg-gray-700 border border-gray-600 focus:border-orange-500 focus:outline-none" required> | |
| </div> | |
| <div> | |
| <label for="phone" class="block mb-2 font-medium">Phone Number</label> | |
| <input type="tel" id="phone" class="w-full px-4 py-3 rounded bg-gray-700 border border-gray-600 focus:border-orange-500 focus:outline-none" required> | |
| </div> | |
| <div> | |
| <label for="passport" class="block mb-2 font-medium">Passport Number</label> | |
| <input type="text" id="passport" class="w-full px-4 py-3 rounded bg-gray-700 border border-gray-600 focus:border-orange-500 focus:outline-none" required> | |
| </div> | |
| <div class="md:col-span-2"> | |
| <label for="notes" class="block mb-2 font-medium">Special Requests</label> | |
| <textarea id="notes" rows="3" class="w-full px-4 py-3 rounded bg-gray-700 border border-gray-600 focus:border-orange-500 focus:outline-none"></textarea> | |
| </div> | |
| <div class="md:col-span-2 mt-4"> | |
| <button type="submit" class="w-full bg-orange-500 hover:bg-orange-600 text-white font-bold py-3 px-4 rounded transition"> | |
| Confirm Booking | |
| </button> | |
| </div> | |
| </form> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Location/Contact --> | |
| <section id="contact" class="py-16 bg-white"> | |
| <div class="container mx-auto px-4"> | |
| <div class="flex flex-col md:flex-row"> | |
| <div class="md:w-1/2 mb-10 md:mb-0 md:pr-8"> | |
| <h2 class="text-3xl font-bold mb-6">Find Us in Kampot</h2> | |
| <div class="mb-8"> | |
| <h3 class="text-xl font-bold mb-3">Opening Hours</h3> | |
| <ul class="space-y-2"> | |
| <li class="flex justify-between border-b pb-2"> | |
| <span>Monday - Saturday</span> | |
| <span>9:00 AM - 6:00 PM</span> | |
| </li> | |
| <li class="flex justify-between border-b pb-2"> | |
| <span>Sunday</span> | |
| <span>10:00 AM - 4:00 PM</span> | |
| </li> | |
| </ul> | |
| </div> | |
| <div class="mb-8"> | |
| <h3 class="text-xl font-bold mb-3">Contact Info</h3> | |
| <ul class="space-y-3"> | |
| <li class="flex items-start"> | |
| <i class="fas fa-map-marker-alt text-orange-500 mt-1 mr-3"></i> | |
| <span>123 Riverside Road, Kampot, Cambodia</span> | |
| </li> | |
| <li class="flex items-start"> | |
| <i class="fas fa-phone-alt text-orange-500 mt-1 mr-3"></i> | |
| <span>+855 12 345 678</span> | |
| </li> | |
| <li class="flex items-start"> | |
| <i class="fas fa-envelope text-orange-500 mt-1 mr-3"></i> | |
| <span>hello@gooddayrentals.com</span> | |
| </li> | |
| </ul> | |
| </div> | |
| <div> | |
| <h3 class="text-xl font-bold mb-3">Follow Us</h3> | |
| <div class="flex space-x-4"> | |
| <a href="#" class="w-10 h-10 rounded-full bg-gray-100 flex items-center justify-center text-gray-700 hover:bg-orange-500 hover:text-white transition"> | |
| <i class="fab fa-facebook-f"></i> | |
| </a> | |
| <a href="#" class="w-10 h-10 rounded-full bg-gray-100 flex items-center justify-center text-gray-700 hover:bg-orange-500 hover:text-white transition"> | |
| <i class="fab fa-instagram"></i> | |
| </a> | |
| <a href="#" class="w-10 h-10 rounded-full bg-gray-100 flex items-center justify-center text-gray-700 hover:bg-orange-500 hover:text-white transition"> | |
| <i class="fab fa-tripadvisor"></i> | |
| </a> | |
| </div> | |
| </div> | |
| </div> | |
| <div class="md:w-1/2"> | |
| <div class="h-full rounded-lg overflow-hidden shadow-lg"> | |
| <iframe src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3928.715635809614!2d104.1814663152876!3d10.80251839231275!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x3108a5d3a6a2036d%3A0x9c7e1c1a1a1a1a1a!2sKampot%2C%20Cambodia!5e0!3m2!1sen!2sus!4v1620000000000!5m2!1sen!2sus" | |
| width="100%" | |
| height="100%" | |
| style="min-height: 400px; border:0;" | |
| allowfullscreen="" | |
| loading="lazy" | |
| class="rounded-lg"> | |
| </iframe> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- FAQ Section --> | |
| <section class="py-12 md:py-16 bg-gray-50"> | |
| <div class="container mx-auto px-4 max-w-4xl"> | |
| <div class="text-center mb-8 md:mb-12"> | |
| <h2 class="text-2xl md:text-3xl font-bold mb-3">FAQ</h2> | |
| <p class="text-gray-600 md:text-lg">Common questions answered</p> | |
| </div> | |
| <div class="space-y-4"> | |
| <div class="border border-gray-200 rounded-lg overflow-hidden"> | |
| <button class="faq-question w-full text-left p-4 bg-white hover:bg-gray-50 focus:outline-none flex justify-between items-center"> | |
| <span class="font-medium">What do I need to rent a bike?</span> | |
| <i class="fas fa-chevron-down text-orange-500 transition-transform"></i> | |
| </button> | |
| <div class="faq-answer hidden p-4 bg-gray-50 border-t"> | |
| <p>You'll need to present your passport (we'll take a copy) and a valid driver's license from your home country or an International Driving Permit. A security deposit is also required which is fully refundable upon safe return of the bike.</p> | |
| </div> | |
| </div> | |
| <div class="border border-gray-200 rounded-lg overflow-hidden"> | |
| <button class="faq-question w-full text-left p-4 bg-white hover:bg-gray-50 focus:outline-none flex justify-between items-center"> | |
| <span class="font-medium">Is insurance included?</span> | |
| <i class="fas fa-chevron-down text-orange-500 transition-transform"></i> | |
| </button> | |
| <div class="faq-answer hidden p-4 bg-gray-50 border-t"> | |
| <p>Yes, basic insurance is included with all rentals which covers third-party liability. For comprehensive coverage that includes damage to the rental bike, we offer optional upgrades at very reasonable rates.</p> | |
| </div> | |
| </div> | |
| <div class="border border-gray-200 rounded-lg overflow-hidden"> | |
| <button class="faq-question w-full text-left p-4 bg-white hover:bg-gray-50 focus:outline-none flex justify-between items-center"> | |
| <span class="font-medium">What happens if the bike breaks down?</span> | |
| <i class="fas fa-chevron-down text-orange-500 transition-transform"></i> | |
| </button> | |
| <div class="faq-answer hidden p-4 bg-gray-50 border-t"> | |
| <p>We provide 24/7 roadside assistance. Just give us a call and we'll either guide you through a quick fix or come to your location to help. If the bike can't be fixed quickly, we'll provide a replacement.</p> | |
| </div> | |
| </div> | |
| <div class="border border-gray-200 rounded-lg overflow-hidden"> | |
| <button class="faq-question w-full text-left p-4 bg-white hover:bg-gray-50 focus:outline-none flex justify-between items-center"> | |
| <span class="font-medium">Can I take the bike to another province?</span> | |
| <i class="fas fa-chevron-down text-orange-500 transition-transform"></i> | |
| </button> | |
| <div class="faq-answer hidden p-4 bg-gray-50 border-t"> | |
| <p>Yes, our bikes can be taken to other provinces. However, we recommend informing us of your travel plans so we can provide appropriate route advice and ensure the bike is properly prepared for longer journeys.</p> | |
| </div> | |
| </div> | |
| <div class="border border-gray-200 rounded-lg overflow-hidden"> | |
| <button class="faq-question w-full text-left p-4 bg-white hover:bg-gray-50 focus:outline-none flex justify-between items-center"> | |
| <span class="font-medium">What's your fuel policy?</span> | |
| <i class="fas fa-chevron-down text-orange-500 transition-transform"></i> | |
| </button> | |
| <div class="faq-answer hidden p-4 bg-gray-50 border-t"> | |
| <p>Bikes are provided with a full tank and should be returned with a full tank. There are many fuel stations in Kampot and nearby areas. We can provide a map showing the most convenient locations.</p> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Footer --> | |
| <footer class="bg-gray-900 text-white pt-10 pb-6"> | |
| <div class="container mx-auto px-4"> | |
| <div class="grid grid-cols-1 md:grid-cols-4 gap-8 mb-8"> | |
| <div> | |
| <h3 class="text-lg font-bold mb-4">Good Day Rentals</h3> | |
| <p class="text-gray-400">Your trusted motorbike rental partner in Kampot, Cambodia. Award-winning service since 2015.</p> | |
| </div> | |
| <div> | |
| <h3 class="text-lg font-bold mb-4">Quick Links</h3> | |
| <ul class="space-y-2"> | |
| <li><a href="#home" class="text-gray-400 hover:text-orange-400 transition">Home</a></li> | |
| <li><a href="#bikes" class="text-gray-400 hover:text-orange-400 transition">Our Bikes</a></li> | |
| <li><a href="#pricing" class="text-gray-400 hover:text-orange-400 transition | |
| <p style="border-radius: 8px; text-align: center; font-size: 12px; color: #fff; margin-top: 16px;position: fixed; left: 8px; bottom: 8px; z-index: 10; background: rgba(0, 0, 0, 0.8); padding: 4px 8px;">Made with <img src="https://enzostvs-deepsite.hf.space/logo.svg" alt="DeepSite Logo" style="width: 16px; height: 16px; vertical-align: middle;display:inline-block;margin-right:3px;filter:brightness(0) invert(1);"><a href="https://enzostvs-deepsite.hf.space" style="color: #fff;text-decoration: underline;" target="_blank" >DeepSite</a> - 🧬 <a href="https://enzostvs-deepsite.hf.space?remix=steake/gooddayrentals" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body> | |
| </html> |