allenselectricco / index.html
spwotton's picture
Add 2 files
6e142fa verified
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Allen's Electric Co | Father & Son Electricians in Post Falls, ID</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>
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
body {
font-family: 'Poppins', sans-serif;
scroll-behavior: smooth;
}
.container {
max-width: 75rem; /* 1200px */
width: 100%;
margin-left: auto;
margin-right: auto;
padding-left: 1rem;
padding-right: 1rem;
}
.hero-gradient {
background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
}
.service-card:hover {
transform: translateY(-5px);
box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
.testimonial-card {
background: rgba(255, 255, 255, 0.9);
backdrop-filter: blur(10px);
}
.phone-pulse {
animation: pulse 2s infinite;
}
@keyframes pulse {
0% {
transform: scale(1);
}
50% {
transform: scale(1.05);
}
100% {
transform: scale(1);
}
}
.form-focus:focus {
box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.5);
}
</style>
</head>
<body class="bg-gray-50">
<!-- Header/Navigation -->
<header class="bg-white shadow-sm sticky top-0 z-50">
<div class="container flex justify-between items-center py-3">
<div class="flex items-center">
<div class="bg-blue-600 text-white p-2 rounded-lg mr-3">
<i class="fas fa-bolt text-xl"></i>
</div>
<h1 class="text-xl font-bold text-gray-800">Allen's Electric Co</h1>
</div>
<nav class="hidden md:flex space-x-8">
<a href="#services" class="text-gray-600 hover:text-blue-600 font-medium">Services</a>
<a href="#about" class="text-gray-600 hover:text-blue-600 font-medium">About Us</a>
<a href="#testimonials" class="text-gray-600 hover:text-blue-600 font-medium">Reviews</a>
<a href="#contact" class="text-blue-600 font-medium">Contact</a>
</nav>
<div class="md:hidden">
<button id="menu-btn" class="text-gray-600 focus:outline-none">
<i class="fas fa-bars text-2xl"></i>
</button>
</div>
</div>
<!-- Mobile menu -->
<div id="mobile-menu" class="hidden md:hidden bg-white py-4 px-4 shadow-lg">
<a href="#services" class="block py-2 text-gray-600 hover:text-blue-600">Services</a>
<a href="#about" class="block py-2 text-gray-600 hover:text-blue-600">About Us</a>
<a href="#testimonials" class="block py-2 text-gray-600 hover:text-blue-600">Reviews</a>
<a href="#contact" class="block py-2 text-blue-600">Contact</a>
</div>
</header>
<!-- Hero Section -->
<section class="hero-gradient text-white py-16 md:py-24">
<div class="container flex flex-col md:flex-row items-center">
<div class="md:w-1/2 mb-10 md:mb-0">
<h2 class="text-3xl md:text-5xl font-bold mb-4">Trusted Electricians in Post Falls</h2>
<p class="text-xl mb-8 opacity-90">Father & son team providing reliable, affordable electrical services for over 15 years.</p>
<div class="flex flex-col sm:flex-row gap-4">
<a href="#contact" class="bg-white text-blue-600 hover:bg-gray-100 font-bold py-3 px-6 rounded-lg text-center transition duration-300">
<i class="fas fa-calendar-alt mr-2"></i> Schedule Service
</a>
<a href="tel:2085551234" class="bg-blue-700 hover:bg-blue-800 text-white font-bold py-3 px-6 rounded-lg text-center transition duration-300 phone-pulse">
<i class="fas fa-phone mr-2"></i> (208) 555-1234
</a>
</div>
<div class="mt-8 flex items-center">
<div class="flex -space-x-2">
<img class="w-10 h-10 rounded-full border-2 border-white" src="https://randomuser.me/api/portraits/men/32.jpg" alt="Customer">
<img class="w-10 h-10 rounded-full border-2 border-white" src="https://randomuser.me/api/portraits/women/44.jpg" alt="Customer">
<img class="w-10 h-10 rounded-full border-2 border-white" src="https://randomuser.me/api/portraits/men/75.jpg" alt="Customer">
</div>
<div class="ml-4">
<p class="text-sm font-medium">Rated 4.9/5</p>
<div class="flex">
<i class="fas fa-star text-yellow-400"></i>
<i class="fas fa-star text-yellow-400"></i>
<i class="fas fa-star text-yellow-400"></i>
<i class="fas fa-star text-yellow-400"></i>
<i class="fas fa-star text-yellow-400"></i>
<span class="ml-1 text-sm">(128 reviews)</span>
</div>
</div>
</div>
</div>
<div class="md:w-1/2 flex justify-center">
<div class="relative">
<img src="https://images.unsplash.com/photo-1605152276897-4f618f831968?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" alt="Electrician working" class="rounded-lg shadow-2xl w-full max-w-md">
<div class="absolute -bottom-5 -right-5 bg-white text-blue-600 p-4 rounded-lg shadow-lg hidden md:block">
<div class="flex items-center">
<div class="bg-blue-100 p-3 rounded-full mr-3">
<i class="fas fa-check-circle text-xl"></i>
</div>
<div>
<p class="font-bold">Licensed & Insured</p>
<p class="text-sm text-gray-600">ID License #EL123456</p>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Trust Badges -->
<section class="bg-gray-100 py-8">
<div class="container">
<div class="flex flex-wrap justify-center items-center gap-8 md:gap-16">
<div class="flex items-center">
<i class="fas fa-clock text-blue-600 text-2xl mr-2"></i>
<span class="font-medium">24/7 Emergency Service</span>
</div>
<div class="flex items-center">
<i class="fas fa-dollar-sign text-blue-600 text-2xl mr-2"></i>
<span class="font-medium">Upfront Pricing</span>
</div>
<div class="flex items-center">
<i class="fas fa-award text-blue-600 text-2xl mr-2"></i>
<span class="font-medium">Local & Family-Owned</span>
</div>
</div>
</div>
</section>
<!-- Services Section -->
<section id="services" class="py-16 bg-white">
<div class="container">
<div class="text-center mb-12">
<h2 class="text-3xl font-bold text-gray-800 mb-4">Our Electrical Services</h2>
<p class="text-gray-600 max-w-2xl mx-auto">From small repairs to complete rewiring, we handle all your electrical needs with precision and care.</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-md overflow-hidden transition duration-300">
<div class="h-48 bg-blue-600 flex items-center justify-center">
<i class="fas fa-home text-white text-5xl"></i>
</div>
<div class="p-6">
<h3 class="text-xl font-bold text-gray-800 mb-3">Residential Electrical</h3>
<p class="text-gray-600 mb-4">Complete home electrical services including wiring, lighting, panel upgrades, and more.</p>
<a href="#contact" class="text-blue-600 font-medium inline-flex items-center">
Learn more <i class="fas fa-arrow-right ml-2"></i>
</a>
</div>
</div>
<!-- Service 2 -->
<div class="service-card bg-white rounded-xl shadow-md overflow-hidden transition duration-300">
<div class="h-48 bg-blue-700 flex items-center justify-center">
<i class="fas fa-building text-white text-5xl"></i>
</div>
<div class="p-6">
<h3 class="text-xl font-bold text-gray-800 mb-3">Commercial Electrical</h3>
<p class="text-gray-600 mb-4">Expert electrical solutions for businesses, offices, and retail spaces.</p>
<a href="#contact" class="text-blue-600 font-medium inline-flex items-center">
Learn more <i class="fas fa-arrow-right ml-2"></i>
</a>
</div>
</div>
<!-- Service 3 -->
<div class="service-card bg-white rounded-xl shadow-md overflow-hidden transition duration-300">
<div class="h-48 bg-blue-800 flex items-center justify-center">
<i class="fas fa-tools text-white text-5xl"></i>
</div>
<div class="p-6">
<h3 class="text-xl font-bold text-gray-800 mb-3">Electrical Repairs</h3>
<p class="text-gray-600 mb-4">Fast, reliable troubleshooting and repair for all electrical issues.</p>
<a href="#contact" class="text-blue-600 font-medium inline-flex items-center">
Learn more <i class="fas fa-arrow-right ml-2"></i>
</a>
</div>
</div>
</div>
<div class="mt-12 text-center">
<a href="#contact" class="inline-block bg-blue-600 hover:bg-blue-700 text-white font-bold py-3 px-8 rounded-lg transition duration-300">
<i class="fas fa-bolt mr-2"></i> Get a Free Estimate
</a>
</div>
</div>
</section>
<!-- About Section -->
<section id="about" class="py-16 bg-gray-50">
<div class="container">
<div class="flex flex-col md:flex-row items-center">
<div class="md:w-1/2 mb-10 md:mb-0 md:pr-10">
<h2 class="text-3xl font-bold text-gray-800 mb-6">A Family You Can Trust</h2>
<p class="text-gray-600 mb-4">Founded in 2008, Allen's Electric Co has been serving the Post Falls community with honesty and integrity. What started as a one-man operation has grown into a father-son team dedicated to quality electrical work.</p>
<p class="text-gray-600 mb-6">We believe in treating every customer like family, which means we'll never recommend work you don't need and we always stand behind our service.</p>
<div class="flex flex-col sm:flex-row gap-4">
<div class="flex items-center mb-4 sm:mb-0">
<div class="bg-blue-100 p-3 rounded-full mr-4">
<i class="fas fa-user-tie text-blue-600 text-xl"></i>
</div>
<div>
<p class="font-bold text-gray-800">Mark Allen</p>
<p class="text-sm text-gray-600">Master Electrician, Owner</p>
</div>
</div>
<div class="flex items-center">
<div class="bg-blue-100 p-3 rounded-full mr-4">
<i class="fas fa-user text-blue-600 text-xl"></i>
</div>
<div>
<p class="font-bold text-gray-800">Jason Allen</p>
<p class="text-sm text-gray-600">Journeyman Electrician</p>
</div>
</div>
</div>
</div>
<div class="md:w-1/2">
<div class="relative">
<img src="https://images.unsplash.com/photo-1582211594383-26609b6184e5?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" alt="Father and son electricians" class="rounded-lg shadow-lg w-full">
<div class="absolute -bottom-5 -left-5 bg-white p-6 rounded-lg shadow-lg hidden md:block max-w-xs">
<div class="flex items-start">
<div class="bg-blue-100 p-3 rounded-full mr-4">
<i class="fas fa-shield-alt text-blue-600 text-xl"></i>
</div>
<div>
<h4 class="font-bold text-gray-800 mb-2">Our Guarantee</h4>
<p class="text-sm text-gray-600">All work comes with a 2-year warranty for your peace of mind.</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Testimonials -->
<section id="testimonials" class="py-16 bg-blue-600 text-white">
<div class="container">
<div class="text-center mb-12">
<h2 class="text-3xl font-bold mb-4">What Our Customers Say</h2>
<p class="max-w-2xl mx-auto opacity-90">Don't just take our word for it - hear from homeowners and businesses we've worked with.</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-3 gap-8">
<!-- Testimonial 1 -->
<div class="testimonial-card rounded-lg p-6 shadow-lg">
<div class="flex mb-4">
<i class="fas fa-star text-yellow-400"></i>
<i class="fas fa-star text-yellow-400"></i>
<i class="fas fa-star text-yellow-400"></i>
<i class="fas fa-star text-yellow-400"></i>
<i class="fas fa-star text-yellow-400"></i>
</div>
<p class="text-gray-700 mb-4">"Mark and Jason rewired our entire house and did an amazing job. They were professional, clean, and explained everything clearly. Will definitely use them again!"</p>
<div class="flex items-center">
<img class="w-10 h-10 rounded-full mr-3" src="https://randomuser.me/api/portraits/women/32.jpg" alt="Sarah J.">
<div>
<p class="font-bold text-gray-800">Sarah J.</p>
<p class="text-sm text-gray-600">Post Falls, ID</p>
</div>
</div>
</div>
<!-- Testimonial 2 -->
<div class="testimonial-card rounded-lg p-6 shadow-lg">
<div class="flex mb-4">
<i class="fas fa-star text-yellow-400"></i>
<i class="fas fa-star text-yellow-400"></i>
<i class="fas fa-star text-yellow-400"></i>
<i class="fas fa-star text-yellow-400"></i>
<i class="fas fa-star text-yellow-400"></i>
</div>
<p class="text-gray-700 mb-4">"When our circuit breaker kept tripping, Allen's Electric came out same day and fixed the issue quickly. Fair pricing and great service. Highly recommend!"</p>
<div class="flex items-center">
<img class="w-10 h-10 rounded-full mr-3" src="https://randomuser.me/api/portraits/men/54.jpg" alt="Michael T.">
<div>
<p class="font-bold text-gray-800">Michael T.</p>
<p class="text-sm text-gray-600">Post Falls, ID</p>
</div>
</div>
</div>
<!-- Testimonial 3 -->
<div class="testimonial-card rounded-lg p-6 shadow-lg">
<div class="flex mb-4">
<i class="fas fa-star text-yellow-400"></i>
<i class="fas fa-star text-yellow-400"></i>
<i class="fas fa-star text-yellow-400"></i>
<i class="fas fa-star text-yellow-400"></i>
<i class="fas fa-star text-yellow-400"></i>
</div>
<p class="text-gray-700 mb-4">"We've used Allen's Electric for several projects at our restaurant. They're always punctual, professional, and their work is top-notch. A rare find these days."</p>
<div class="flex items-center">
<img class="w-10 h-10 rounded-full mr-3" src="https://randomuser.me/api/portraits/women/68.jpg" alt="Lisa R.">
<div>
<p class="font-bold text-gray-800">Lisa R.</p>
<p class="text-sm text-gray-600">Post Falls, ID</p>
</div>
</div>
</div>
</div>
<div class="mt-12 text-center">
<a href="https://www.google.com/search?q=Allen%27s+Electric+Co" target="_blank" class="inline-block bg-white hover:bg-gray-100 text-blue-600 font-bold py-3 px-8 rounded-lg transition duration-300">
<i class="fab fa-google mr-2"></i> Read More Reviews
</a>
</div>
</div>
</section>
<!-- CTA Section -->
<section class="py-16 bg-gray-800 text-white">
<div class="container text-center">
<h2 class="text-3xl font-bold mb-6">Ready to Power Up Your Home or Business?</h2>
<p class="text-xl mb-8 max-w-2xl mx-auto">Contact Allen's Electric Co today for reliable electrical service in the Post Falls area.</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-lg transition duration-300">
<i class="fas fa-envelope mr-2"></i> Send a Message
</a>
<a href="tel:2085551234" class="bg-gray-700 hover:bg-gray-600 text-white font-bold py-3 px-8 rounded-lg transition duration-300">
<i class="fas fa-phone mr-2"></i> Call Now
</a>
</div>
</div>
</section>
<!-- Contact Form -->
<section id="contact" class="py-16 bg-white">
<div class="container">
<div class="max-w-4xl mx-auto">
<div class="text-center mb-12">
<h2 class="text-3xl font-bold text-gray-800 mb-4">Get in Touch</h2>
<p class="text-gray-600">Fill out the form below and we'll get back to you within 24 hours.</p>
</div>
<form id="contact-form" class="grid grid-cols-1 md:grid-cols-2 gap-6 bg-gray-50 p-8 rounded-xl shadow-sm">
<div class="md:col-span-2">
<h3 class="text-xl font-bold text-gray-800 mb-6">Service Request Form</h3>
</div>
<div>
<label for="name" class="block text-gray-700 font-medium mb-2">Your Name*</label>
<input type="text" id="name" name="name" required class="w-full px-4 py-3 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-blue-500 form-focus">
</div>
<div>
<label for="phone" class="block text-gray-700 font-medium mb-2">Phone Number*</label>
<input type="tel" id="phone" name="phone" required class="w-full px-4 py-3 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-blue-500 form-focus">
</div>
<div>
<label for="email" class="block text-gray-700 font-medium mb-2">Email Address</label>
<input type="email" id="email" name="email" class="w-full px-4 py-3 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-blue-500 form-focus">
</div>
<div>
<label for="service" class="block text-gray-700 font-medium mb-2">Service Needed*</label>
<select id="service" name="service" required class="w-full px-4 py-3 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-blue-500 form-focus">
<option value="">Select a service</option>
<option value="Residential Electrical">Residential Electrical</option>
<option value="Commercial Electrical">Commercial Electrical</option>
<option value="Electrical Repairs">Electrical Repairs</option>
<option value="Panel Upgrade">Panel Upgrade</option>
<option value="Lighting Installation">Lighting Installation</option>
<option value="Other">Other</option>
</select>
</div>
<div class="md:col-span-2">
<label for="message" class="block text-gray-700 font-medium mb-2">Details About Your Project*</label>
<textarea id="message" name="message" rows="4" required class="w-full px-4 py-3 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-blue-500 form-focus"></textarea>
</div>
<div class="md:col-span-2">
<button type="submit" class="w-full bg-blue-600 hover:bg-blue-700 text-white font-bold py-3 px-6 rounded-lg transition duration-300">
<i class="fas fa-paper-plane mr-2"></i> Submit Request
</button>
</div>
<div class="md:col-span-2 text-center text-sm text-gray-500">
<p class="text-sm">By submitting this form, you agree to our <a href="#" class="text-blue-600 hover:underline">privacy policy</a>.</p>
</div>
</form>
<div class="mt-12 grid grid-cols-1 md:grid-cols-3 gap-8">
<div class="bg-gray-50 p-6 rounded-lg shadow-sm text-center">
<div class="bg-blue-100 w-12 h-12 rounded-full flex items-center justify-center mx-auto mb-4">
<i class="fas fa-map-marker-alt text-blue-600 text-xl"></i>
</div>
<h4 class="font-bold text-gray-800 mb-2">Service Area</h4>
<p class="text-gray-600 text-sm">Post Falls, Coeur d'Alene, Hayden, Rathdrum, and surrounding areas</p>
</div>
<div class="bg-gray-50 p-6 rounded-lg shadow-sm text-center">
<div class="bg-blue-100 w-12 h-12 rounded-full flex items-center justify-center mx-auto mb-4">
<i class="fas fa-clock text-blue-600 text-xl"></i>
</div>
<h4 class="font-bold text-gray-800 mb-2">Hours</h4>
<p class="text-gray-600 text-sm">Mon-Fri: 7am - 6pm<br>Sat: 8am - 4pm<br>Emergency: 24/7</p>
</div>
<div class="bg-gray-50 p-6 rounded-lg shadow-sm text-center">
<div class="bg-blue-100 w-12 h-12 rounded-full flex items-center justify-center mx-auto mb-4">
<i class="fas fa-phone text-blue-600 text-xl"></i>
</div>
<h4 class="font-bold text-gray-800 mb-2">Contact</h4>
<p class="text-gray-600 text-sm">
<a href="tel:2085551234" class="hover:text-blue-600">(208) 555-1234</a><br>
<a href="mailto:info@allenselectric.com" class="hover:text-blue-600">info@allenselectric.com</a>
</p>
</div>
</div>
</div>
</div>
</section>
<!-- Footer -->
<footer class="bg-gray-900 text-white py-12">
<div class="container">
<div class="grid grid-cols-1 md:grid-cols-4 gap-8">
<div>
<div class="flex items-center mb-4">
<div class="bg-blue-600 text-white p-2 rounded-lg mr-3">
<i class="fas fa-bolt text-xl"></i>
</div>
<h3 class="text-xl font-bold">Allen's Electric Co</h3>
</div>
<p class="text-gray-400 mb-4 text-sm">Family-owned electrical services in Post Falls, ID since 2008.</p>
<div class="flex space-x-4">
<a href="#" class="text-gray-400 hover:text-white transition duration-300">
<i class="fab fa-facebook-f text-xl"></i>
</a>
<a href="#" class="text-gray-400 hover:text-white transition duration-300">
<i class="fab fa-instagram text-xl"></i>
</a>
<a href="#" class="text-gray-400 hover:text-white transition duration-300">
<i class="fab fa-google text-xl"></i>
</a>
</div>
</div>
<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 transition duration-300 text-sm">Residential Electrical</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition duration-300 text-sm">Commercial Electrical</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition duration-300 text-sm">Electrical Repairs</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition duration-300 text-sm">Panel Upgrades</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition duration-300 text-sm">Lighting Installation</a></li>
</ul>
</div>
<div>
<h4 class="text-lg font-bold mb-4">Quick Links</h4>
<ul class="space-y-2">
<li><a href="#services" class="text-gray-400 hover:text-white transition duration-300 text-sm">Services</a></li>
<li><a href="#about" class="text-gray-400 hover:text-white transition duration-300 text-sm">About Us</a></li>
<li><a href="#testimonials" class="text-gray-400 hover:text-white transition duration-300 text-sm">Reviews</a></li>
<li><a href="#contact" class="text-gray-400 hover:text-white transition duration-300 text-sm">Contact</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition duration-300 text-sm">Blog</a></li>
</ul>
</div>
<div>
<h4 class="text-lg font-bold mb-4">Contact Info</h4>
<ul class="space-y-2 text-gray-400 text-sm">
<li class="flex items-start">
<i class="fas fa-map-marker-alt mt-1 mr-3 text-blue-600"></i>
<span>1234 Electric Ave<br>Post Falls, ID 83854</span>
</li>
<li class="flex items-center">
<i class="fas fa-phone mr-3 text-blue-600"></i>
<a href="tel:2085551234" class="hover:text-white">(208) 555-1234</a>
</li>
<li class="flex items-center">
<i class="fas fa-envelope mr-3 text-blue-600"></i>
<a href="mailto:info@allenselectric.com" class="hover:text-white">info@allenselectric.com</a>
</li>
<li class="flex items-center">
<i class="fas fa-id-card mr-3 text-blue-600"></i>
<span>License #EL123456</span>
</li>
</ul>
</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 text-sm">© 2023 Allen's Electric Co. All rights reserved.</p>
<div class="flex space-x-6">
<a href="#" class="text-gray-400 hover:text-white transition duration-300 text-sm">Privacy Policy</a>
<a href="#" class="text-gray-400 hover:text-white transition duration-300 text-sm">Terms of Service</a>
</div>
</div>
</div>
</footer>
<!-- Floating CTA Button (Mobile) -->
<div class="fixed bottom-6 right-6 md:hidden">
<a href="tel:2085551234" class="bg-blue-600 hover:bg-blue-700 text-white w-14 h-14 rounded-full flex items-center justify-center shadow-lg phone-pulse">
<i class="fas fa-phone text-xl"></i>
</a>
</div>
<script>
// Mobile menu toggle
document.getElementById('menu-btn').addEventListener('click', function() {
const menu = document.getElementById('mobile-menu');
menu.classList.toggle('hidden');
});
// Form submission
document.getElementById('contact-form').addEventListener('submit', function(e) {
e.preventDefault();
// Here you would typically send the form data to your server
// For this example, we'll just show an alert
alert('Thank you for your request! We will contact you shortly.');
this.reset();
});
// Smooth scrolling for anchor links
document.querySelectorAll('a[href^="#"]').forEach(anchor => {
anchor.addEventListener('click', function(e) {
e.preventDefault();
const targetId = this.getAttribute('href');
if (targetId === '#') return;
const targetElement = document.querySelector(targetId);
if (targetElement) {
window.scrollTo({
top: targetElement.offsetTop - 80,
behavior: 'smooth'
});
// Close mobile menu if open
const mobileMenu = document.getElementById('mobile-menu');
if (!mobileMenu.classList.contains('hidden')) {
mobileMenu.classList.add('hidden');
}
}
});
});
</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=spwotton/allenselectricco" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html>