shineauto / index.html
oahgod's picture
Create a landing page for a car detailing business, make it flashy and modern. - Initial Deployment
40b8e1d verified
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>ShineAuto | Premium Car Detailing</title>
<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">
<style>
.hero-gradient {
background: linear-gradient(135deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 100%);
}
.service-card:hover {
transform: translateY(-10px);
box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
.before-after {
position: relative;
overflow: hidden;
}
.before-after img {
transition: all 0.5s ease;
}
.before-after:hover img {
transform: scale(1.05);
}
.testimonial-card {
transition: all 0.3s ease;
}
.testimonial-card:hover {
transform: scale(1.02);
}
.nav-link {
position: relative;
}
.nav-link:after {
content: '';
position: absolute;
width: 0;
height: 2px;
bottom: -2px;
left: 0;
background-color: #3b82f6;
transition: width 0.3s ease;
}
.nav-link:hover:after {
width: 100%;
}
</style>
</head>
<body class="font-sans bg-gray-50">
<!-- Navigation -->
<nav class="fixed w-full bg-white shadow-md z-50">
<div class="container mx-auto px-6 py-4">
<div class="flex justify-between items-center">
<div class="flex items-center">
<div class="text-2xl font-bold text-blue-600">SHINE<span class="text-gray-800">AUTO</span></div>
</div>
<div class="hidden md:flex space-x-8">
<a href="#home" class="nav-link text-gray-800 hover:text-blue-600">Home</a>
<a href="#services" class="nav-link text-gray-800 hover:text-blue-600">Services</a>
<a href="#gallery" class="nav-link text-gray-800 hover:text-blue-600">Gallery</a>
<a href="#testimonials" class="nav-link text-gray-800 hover:text-blue-600">Testimonials</a>
<a href="#contact" class="nav-link text-gray-800 hover:text-blue-600">Contact</a>
</div>
<div class="md:hidden">
<button id="menu-btn" class="text-gray-800 focus:outline-none">
<i class="fas fa-bars text-2xl"></i>
</button>
</div>
</div>
<!-- Mobile Menu -->
<div id="mobile-menu" class="hidden md:hidden mt-4">
<a href="#home" class="block py-2 text-gray-800 hover:text-blue-600">Home</a>
<a href="#services" class="block py-2 text-gray-800 hover:text-blue-600">Services</a>
<a href="#gallery" class="block py-2 text-gray-800 hover:text-blue-600">Gallery</a>
<a href="#testimonials" class="block py-2 text-gray-800 hover:text-blue-600">Testimonials</a>
<a href="#contact" class="block py-2 text-gray-800 hover:text-blue-600">Contact</a>
</div>
</div>
</nav>
<!-- Hero Section -->
<section id="home" class="relative h-screen flex items-center justify-center bg-gray-900 overflow-hidden">
<div class="absolute inset-0">
<img src="https://images.unsplash.com/photo-1503376780353-7e6692767b70?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80"
alt="Luxury Car" class="w-full h-full object-cover">
<div class="absolute inset-0 hero-gradient"></div>
</div>
<div class="relative z-10 text-center px-6 max-w-4xl mx-auto">
<h1 class="text-4xl md:text-6xl font-bold text-white mb-6">Professional <span class="text-blue-400">Car Detailing</span> Services</h1>
<p class="text-xl text-gray-300 mb-8">We bring back the showroom shine to your vehicle with our premium detailing packages.</p>
<div class="flex flex-col sm:flex-row justify-center gap-4">
<a href="#contact" class="bg-blue-600 hover:bg-blue-700 text-white font-bold py-3 px-8 rounded-full transition duration-300 transform hover:scale-105">
Book Now
</a>
<a href="#services" class="bg-transparent hover:bg-white hover:text-gray-900 text-white font-bold py-3 px-8 border-2 border-white rounded-full transition duration-300 transform hover:scale-105">
Our Services
</a>
</div>
</div>
<div class="absolute bottom-10 left-0 right-0 flex justify-center">
<a href="#services" class="text-white animate-bounce">
<i class="fas fa-chevron-down text-3xl"></i>
</a>
</div>
</section>
<!-- Services Section -->
<section id="services" class="py-20 bg-white">
<div class="container mx-auto px-6">
<div class="text-center mb-16">
<h2 class="text-3xl md:text-4xl font-bold text-gray-800 mb-4">Our <span class="text-blue-600">Premium</span> Services</h2>
<p class="text-gray-600 max-w-2xl mx-auto">We offer a range of detailing services to meet every need and budget, from basic washes to complete ceramic coatings.</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
<!-- Service 1 -->
<div class="service-card bg-white rounded-xl shadow-lg overflow-hidden transition duration-300">
<div class="relative h-48 overflow-hidden">
<img src="https://images.unsplash.com/photo-1607860108855-64acf2078ed9?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80"
alt="Exterior Detailing" class="w-full h-full object-cover">
<div class="absolute inset-0 bg-blue-600 bg-opacity-30"></div>
</div>
<div class="p-6">
<div class="flex items-center mb-4">
<div class="bg-blue-100 p-3 rounded-full mr-4">
<i class="fas fa-car text-blue-600 text-xl"></i>
</div>
<h3 class="text-xl font-bold text-gray-800">Exterior Detailing</h3>
</div>
<p class="text-gray-600 mb-4">Complete exterior cleaning, polishing, and protection to restore your vehicle's shine.</p>
<ul class="space-y-2 mb-6">
<li class="flex items-center">
<i class="fas fa-check text-blue-600 mr-2"></i>
<span>Hand wash & dry</span>
</li>
<li class="flex items-center">
<i class="fas fa-check text-blue-600 mr-2"></i>
<span>Clay bar treatment</span>
</li>
<li class="flex items-center">
<i class="fas fa-check text-blue-600 mr-2"></i>
<span>Paint correction</span>
</li>
<li class="flex items-center">
<i class="fas fa-check text-blue-600 mr-2"></i>
<span>Sealant application</span>
</li>
</ul>
<div class="flex justify-between items-center">
<span class="text-2xl font-bold text-gray-800">$149+</span>
<a href="#contact" class="text-blue-600 hover:text-blue-800 font-medium">Book Now</a>
</div>
</div>
</div>
<!-- Service 2 -->
<div class="service-card bg-white rounded-xl shadow-lg overflow-hidden transition duration-300">
<div class="relative h-48 overflow-hidden">
<img src="https://images.unsplash.com/photo-1541899481282-d53bffe3c35d?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80"
alt="Interior Detailing" class="w-full h-full object-cover">
<div class="absolute inset-0 bg-blue-600 bg-opacity-30"></div>
</div>
<div class="p-6">
<div class="flex items-center mb-4">
<div class="bg-blue-100 p-3 rounded-full mr-4">
<i class="fas fa-couch text-blue-600 text-xl"></i>
</div>
<h3 class="text-xl font-bold text-gray-800">Interior Detailing</h3>
</div>
<p class="text-gray-600 mb-4">Deep cleaning and conditioning of all interior surfaces for a fresh, like-new appearance.</p>
<ul class="space-y-2 mb-6">
<li class="flex items-center">
<i class="fas fa-check text-blue-600 mr-2"></i>
<span>Vacuum & shampoo</span>
</li>
<li class="flex items-center">
<i class="fas fa-check text-blue-600 mr-2"></i>
<span>Leather conditioning</span>
</li>
<li class="flex items-center">
<i class="fas fa-check text-blue-600 mr-2"></i>
<span>Dashboard cleaning</span>
</li>
<li class="flex items-center">
<i class="fas fa-check text-blue-600 mr-2"></i>
<span>Odor elimination</span>
</li>
</ul>
<div class="flex justify-between items-center">
<span class="text-2xl font-bold text-gray-800">$129+</span>
<a href="#contact" class="text-blue-600 hover:text-blue-800 font-medium">Book Now</a>
</div>
</div>
</div>
<!-- Service 3 -->
<div class="service-card bg-white rounded-xl shadow-lg overflow-hidden transition duration-300">
<div class="relative h-48 overflow-hidden">
<img src="https://images.unsplash.com/photo-1605000797499-95a51c5269ae?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2071&q=80"
alt="Ceramic Coating" class="w-full h-full object-cover">
<div class="absolute inset-0 bg-blue-600 bg-opacity-30"></div>
</div>
<div class="p-6">
<div class="flex items-center mb-4">
<div class="bg-blue-100 p-3 rounded-full mr-4">
<i class="fas fa-shield-alt text-blue-600 text-xl"></i>
</div>
<h3 class="text-xl font-bold text-gray-800">Ceramic Coating</h3>
</div>
<p class="text-gray-600 mb-4">Advanced nanotechnology protection that creates an ultra-durable, hydrophobic surface.</p>
<ul class="space-y-2 mb-6">
<li class="flex items-center">
<i class="fas fa-check text-blue-600 mr-2"></i>
<span>Paint decontamination</span>
</li>
<li class="flex items-center">
<i class="fas fa-check text-blue-600 mr-2"></i>
<span>Multi-stage correction</span>
</li>
<li class="flex items-center">
<i class="fas fa-check text-blue-600 mr-2"></i>
<span>Professional application</span>
</li>
<li class="flex items-center">
<i class="fas fa-check text-blue-600 mr-2"></i>
<span>5+ years protection</span>
</li>
</ul>
<div class="flex justify-between items-center">
<span class="text-2xl font-bold text-gray-800">$599+</span>
<a href="#contact" class="text-blue-600 hover:text-blue-800 font-medium">Book Now</a>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Gallery Section -->
<section id="gallery" class="py-20 bg-gray-100">
<div class="container mx-auto px-6">
<div class="text-center mb-16">
<h2 class="text-3xl md:text-4xl font-bold text-gray-800 mb-4">Our <span class="text-blue-600">Work</span> Gallery</h2>
<p class="text-gray-600 max-w-2xl mx-auto">See the stunning transformations we've achieved for our clients.</p>
</div>
<div class="grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-3 gap-6">
<!-- Before/After 1 -->
<div class="before-after group relative rounded-xl overflow-hidden shadow-lg">
<div class="relative h-64 overflow-hidden">
<img src="https://images.unsplash.com/photo-1568605117036-5fe5e7bab0b7?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80"
alt="Before Detailing" class="w-full h-full object-cover">
<div class="absolute inset-0 bg-black bg-opacity-50 flex items-center justify-center opacity-100 group-hover:opacity-0 transition duration-500">
<span class="text-white text-xl font-bold">BEFORE</span>
</div>
</div>
<div class="absolute inset-0 bg-black bg-opacity-0 group-hover:bg-opacity-50 transition duration-500 flex items-center justify-center opacity-0 group-hover:opacity-100">
<span class="text-white text-xl font-bold">AFTER</span>
</div>
</div>
<!-- Before/After 2 -->
<div class="before-after group relative rounded-xl overflow-hidden shadow-lg">
<div class="relative h-64 overflow-hidden">
<img src="https://images.unsplash.com/photo-1492144534655-ae79c964c9d7?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2083&q=80"
alt="Before Detailing" class="w-full h-full object-cover">
<div class="absolute inset-0 bg-black bg-opacity-50 flex items-center justify-center opacity-100 group-hover:opacity-0 transition duration-500">
<span class="text-white text-xl font-bold">BEFORE</span>
</div>
</div>
<div class="absolute inset-0 bg-black bg-opacity-0 group-hover:bg-opacity-50 transition duration-500 flex items-center justify-center opacity-0 group-hover:opacity-100">
<span class="text-white text-xl font-bold">AFTER</span>
</div>
</div>
<!-- Before/After 3 -->
<div class="before-after group relative rounded-xl overflow-hidden shadow-lg">
<div class="relative h-64 overflow-hidden">
<img src="https://images.unsplash.com/photo-1503376780353-7e6692767b70?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80"
alt="Before Detailing" class="w-full h-full object-cover">
<div class="absolute inset-0 bg-black bg-opacity-50 flex items-center justify-center opacity-100 group-hover:opacity-0 transition duration-500">
<span class="text-white text-xl font-bold">BEFORE</span>
</div>
</div>
<div class="absolute inset-0 bg-black bg-opacity-0 group-hover:bg-opacity-50 transition duration-500 flex items-center justify-center opacity-0 group-hover:opacity-100">
<span class="text-white text-xl font-bold">AFTER</span>
</div>
</div>
<!-- Before/After 4 -->
<div class="before-after group relative rounded-xl overflow-hidden shadow-lg">
<div class="relative h-64 overflow-hidden">
<img src="https://images.unsplash.com/photo-1542362567-b07e54358753?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80"
alt="Before Detailing" class="w-full h-full object-cover">
<div class="absolute inset-0 bg-black bg-opacity-50 flex items-center justify-center opacity-100 group-hover:opacity-0 transition duration-500">
<span class="text-white text-xl font-bold">BEFORE</span>
</div>
</div>
<div class="absolute inset-0 bg-black bg-opacity-0 group-hover:bg-opacity-50 transition duration-500 flex items-center justify-center opacity-0 group-hover:opacity-100">
<span class="text-white text-xl font-bold">AFTER</span>
</div>
</div>
<!-- Before/After 5 -->
<div class="before-after group relative rounded-xl overflow-hidden shadow-lg">
<div class="relative h-64 overflow-hidden">
<img src="https://images.unsplash.com/photo-1541899481282-d53bffe3c35d?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80"
alt="Before Detailing" class="w-full h-full object-cover">
<div class="absolute inset-0 bg-black bg-opacity-50 flex items-center justify-center opacity-100 group-hover:opacity-0 transition duration-500">
<span class="text-white text-xl font-bold">BEFORE</span>
</div>
</div>
<div class="absolute inset-0 bg-black bg-opacity-0 group-hover:bg-opacity-50 transition duration-500 flex items-center justify-center opacity-0 group-hover:opacity-100">
<span class="text-white text-xl font-bold">AFTER</span>
</div>
</div>
<!-- Before/After 6 -->
<div class="before-after group relative rounded-xl overflow-hidden shadow-lg">
<div class="relative h-64 overflow-hidden">
<img src="https://images.unsplash.com/photo-1607860108855-64acf2078ed9?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80"
alt="Before Detailing" class="w-full h-full object-cover">
<div class="absolute inset-0 bg-black bg-opacity-50 flex items-center justify-center opacity-100 group-hover:opacity-0 transition duration-500">
<span class="text-white text-xl font-bold">BEFORE</span>
</div>
</div>
<div class="absolute inset-0 bg-black bg-opacity-0 group-hover:bg-opacity-50 transition duration-500 flex items-center justify-center opacity-0 group-hover:opacity-100">
<span class="text-white text-xl font-bold">AFTER</span>
</div>
</div>
</div>
</div>
</section>
<!-- Testimonials Section -->
<section id="testimonials" class="py-20 bg-white">
<div class="container mx-auto px-6">
<div class="text-center mb-16">
<h2 class="text-3xl md:text-4xl font-bold text-gray-800 mb-4">Customer <span class="text-blue-600">Testimonials</span></h2>
<p class="text-gray-600 max-w-2xl mx-auto">Don't just take our word for it - hear what our clients have to say.</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
<!-- Testimonial 1 -->
<div class="testimonial-card bg-gray-50 rounded-xl p-8 shadow-md">
<div class="flex items-center mb-6">
<div class="w-16 h-16 rounded-full overflow-hidden mr-4">
<img src="https://randomuser.me/api/portraits/men/32.jpg" alt="John D." class="w-full h-full object-cover">
</div>
<div>
<h4 class="font-bold text-gray-800">John D.</h4>
<div class="flex text-yellow-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">"I've tried several detailing services before, but ShineAuto is in a league of their own. My 10-year-old BMW looks brand new after their ceramic coating package. Worth every penny!"</p>
</div>
<!-- Testimonial 2 -->
<div class="testimonial-card bg-gray-50 rounded-xl p-8 shadow-md">
<div class="flex items-center mb-6">
<div class="w-16 h-16 rounded-full overflow-hidden mr-4">
<img src="https://randomuser.me/api/portraits/women/44.jpg" alt="Sarah M." class="w-full h-full object-cover">
</div>
<div>
<h4 class="font-bold text-gray-800">Sarah M.</h4>
<div class="flex text-yellow-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">"As a mom with three kids, my minivan was a disaster. The team at ShineAuto worked miracles on both the interior and exterior. It's so clean now I almost don't want to let the kids back in!"</p>
</div>
<!-- Testimonial 3 -->
<div class="testimonial-card bg-gray-50 rounded-xl p-8 shadow-md">
<div class="flex items-center mb-6">
<div class="w-16 h-16 rounded-full overflow-hidden mr-4">
<img src="https://randomuser.me/api/portraits/men/75.jpg" alt="Michael T." class="w-full h-full object-cover">
</div>
<div>
<h4 class="font-bold text-gray-800">Michael T.</h4>
<div class="flex text-yellow-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">"The paint correction service removed years of swirl marks from my black Porsche. The attention to detail is incredible - they even cleaned the engine bay! I'll be a customer for life."</p>
</div>
</div>
</div>
</section>
<!-- CTA Section -->
<section class="py-20 bg-blue-600 text-white">
<div class="container mx-auto px-6 text-center">
<h2 class="text-3xl md:text-4xl font-bold mb-6">Ready to Restore Your Vehicle's Shine?</h2>
<p class="text-xl mb-8 max-w-2xl mx-auto">Book your detailing service today and experience the ShineAuto difference.</p>
<a href="#contact" class="bg-white hover:bg-gray-100 text-blue-600 font-bold py-3 px-8 rounded-full transition duration-300 transform hover:scale-105 inline-block">
Get a Free Quote
</a>
</div>
</section>
<!-- Contact Section -->
<section id="contact" class="py-20 bg-white">
<div class="container mx-auto px-6">
<div class="flex flex-col lg:flex-row">
<div class="w-full lg:w-1/2 mb-12 lg:mb-0 lg:pr-12">
<h2 class="text-3xl md:text-4xl font-bold text-gray-800 mb-6">Contact <span class="text-blue-600">Us</span></h2>
<p class="text-gray-600 mb-8">Have questions or ready to book an appointment? Fill out the form or give us a call.</p>
<div class="space-y-6">
<div class="flex items-start">
<div class="bg-blue-100 p-3 rounded-full mr-4">
<i class="fas fa-map-marker-alt text-blue-600"></i>
</div>
<div>
<h4 class="font-bold text-gray-800 mb-1">Our Location</h4>
<p class="text-gray-600">123 Auto Detail Lane, Suite 100<br>Detroit, MI 48201</p>
</div>
</div>
<div class="flex items-start">
<div class="bg-blue-100 p-3 rounded-full mr-4">
<i class="fas fa-phone-alt text-blue-600"></i>
</div>
<div>
<h4 class="font-bold text-gray-800 mb-1">Call Us</h4>
<p class="text-gray-600">(555) 123-4567<br>Mon-Sat: 8am - 6pm</p>
</div>
</div>
<div class="flex items-start">
<div class="bg-blue-100 p-3 rounded-full mr-4">
<i class="fas fa-envelope text-blue-600"></i>
</div>
<div>
<h4 class="font-bold text-gray-800 mb-1">Email Us</h4>
<p class="text-gray-600">info@shineauto.com<br>We respond within 24 hours</p>
</div>
</div>
</div>
</div>
<div class="w-full lg:w-1/2">
<form class="bg-gray-50 p-8 rounded-xl shadow-md">
<div class="mb-6">
<label for="name" class="block text-gray-700 font-medium mb-2">Full Name</label>
<input type="text" id="name" class="w-full px-4 py-3 rounded-lg border border-gray-300 focus:outline-none focus:ring-2 focus:ring-blue-500">
</div>
<div class="mb-6">
<label for="email" class="block text-gray-700 font-medium mb-2">Email Address</label>
<input type="email" id="email" class="w-full px-4 py-3 rounded-lg border border-gray-300 focus:outline-none focus:ring-2 focus:ring-blue-500">
</div>
<div class="mb-6">
<label for="phone" class="block text-gray-700 font-medium mb-2">Phone Number</label>
<input type="tel" id="phone" class="w-full px-4 py-3 rounded-lg border border-gray-300 focus:outline-none focus:ring-2 focus:ring-blue-500">
</div>
<div class="mb-6">
<label for="service" class="block text-gray-700 font-medium mb-2">Service Interested In</label>
<select id="service" class="w-full px-4 py-3 rounded-lg border border-gray-300 focus:outline-none focus:ring-2 focus:ring-blue-500">
<option value="">Select a service</option>
<option value="exterior">Exterior Detailing</option>
<option value="interior">Interior Detailing</option>
<option value="full">Full Detail</option>
<option value="ceramic">Ceramic Coating</option>
<option value="other">Other</option>
</select>
</div>
<div class="mb-6">
<label for="message" class="block text-gray-700 font-medium mb-2">Message</label>
<textarea id="message" rows="4" class="w-full px-4 py-3 rounded-lg border border-gray-300 focus:outline-none focus:ring-2 focus:ring-blue-500"></textarea>
</div>
<button type="submit" class="w-full bg-blue-600 hover:bg-blue-700 text-white font-bold py-3 px-4 rounded-lg transition duration-300">
Send Message
</button>
</form>
</div>
</div>
</div>
</section>
<!-- Footer -->
<footer class="bg-gray-900 text-white py-12">
<div class="container mx-auto px-6">
<div class="flex flex-col md:flex-row justify-between">
<div class="mb-8 md:mb-0">
<div class="text-2xl font-bold text-blue-400 mb-4">SHINE<span class="text-white">AUTO</span></div>
<p class="text-gray-400 max-w-xs">Premium car detailing services that bring back the showroom shine to your vehicle.</p>
</div>
<div class="grid grid-cols-2 md:grid-cols-3 gap-8">
<div>
<h4 class="text-lg font-bold mb-4">Services</h4>
<ul class="space-y-2">
<li><a href="#" class="text-gray-400 hover:text-white">Exterior Detailing</a></li>
<li><a href="#" class="text-gray-400 hover:text-white">Interior Detailing</a></li>
<li><a href="#" class="text-gray-400 hover:text-white">Ceramic Coating</a></li>
<li><a href="#" class="text-gray-400 hover:text-white">Paint Correction</a></li>
</ul>
</div>
<div>
<h4 class="text-lg font-bold mb-4">Company</h4>
<ul class="space-y-2">
<li><a href="#" class="text-gray-400 hover:text-white">About Us</a></li>
<li><a href="#" class="text-gray-400 hover:text-white">Gallery</a></li>
<li><a href="#" class="text-gray-400 hover:text-white">Testimonials</a></li>
<li><a href="#" class="text-gray-400 hover:text-white">Contact</a></li>
</ul>
</div>
<div>
<h4 class="text-lg font-bold mb-4">Connect</h4>
<div class="flex space-x-4 mb-4">
<a href="#" class="text-gray-400 hover:text-white">
<i class="fab fa-facebook-f text-xl"></i>
</a>
<a href="#" class="text-gray-400 hover:text-white">
<i class="fab fa-instagram text-xl"></i>
</a>
<a href="#" class="text-gray-400 hover:text-white">
<i class="fab fa-twitter text-xl"></i>
</a>
<a href="#" class="text-gray-400 hover:text-white">
<i class="fab fa-yelp text-xl"></i>
</a>
</div>
<p class="text-gray-400">Subscribe to our newsletter</p>
<div class="flex mt-2">
<input type="email" placeholder="Your email" class="px-3 py-2 bg-gray-800 text-white rounded-l focus:outline-none">
<button class="bg-blue-600 hover:bg-blue-700 px-4 rounded-r">
<i class="fas fa-paper-plane"></i>
</button>
</div>
</div>
</div>
</div>
<div class="border-t border-gray-800 mt-12 pt-8 flex flex-col md:flex-row justify-between items-center">
<p class="text-gray-400 mb-4 md:mb-0">© 2023 ShineAuto. All rights reserved.</p>
<div class="flex space-x-6">
<a href="#" class="text-gray-400 hover:text-white">Privacy Policy</a>
<a href="#" class="text-gray-400 hover:text-white">Terms of Service</a>
</div>
</div>
</div>
</footer>
<!-- Back to Top Button -->
<button id="back-to-top" class="fixed bottom-8 right-8 bg-blue-600 text-white p-3 rounded-full shadow-lg opacity-0 invisible transition-all duration-300">
<i class="fas fa-arrow-up"></i>
</button>
<script>
// Mobile menu toggle
const menuBtn = document.getElementById('menu-btn');
const mobileMenu = document.getElementById('mobile-menu');
menuBtn.addEventListener('click', () => {
mobileMenu.classList.toggle('hidden');
});
// Smooth scrolling for navigation links
document.querySelectorAll('a[href^="#"]').forEach(anchor => {
anchor.addEventListener('click', function (e) {
e.preventDefault();
document.querySelector(this.getAttribute('href')).scrollIntoView({
behavior: 'smooth'
});
// Close mobile menu if open
mobileMenu.classList.add('hidden');
});
});
// Back to top button
const backToTopBtn = document.getElementById('back-to-top');
window.addEventListener('scroll', () => {
if (window.pageYOffset > 300) {
backToTopBtn.classList.remove('opacity-0', 'invisible');
backToTopBtn.classList.add('opacity-100', 'visible');
} else {
backToTopBtn.classList.remove('opacity-100', 'visible');
backToTopBtn.classList.add('opacity-0', 'invisible');
}
});
backToTopBtn.addEventListener('click', () => {
window.scrollTo({
top: 0,
behavior: 'smooth'
});
});
// Form submission
const form = document.querySelector('form');
if (form) {
form.addEventListener('submit', (e) => {
e.preventDefault();
alert('Thank you for your message! We will contact you shortly.');
form.reset();
});
}
</script>
<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=oahgod/shineauto" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html>