<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Discovery Inspections</title>
<script src="https://cdn.tailwindcss.com"></script>
</head>
<body class="bg-white text-gray-800">
<!-- Header -->
<header class="bg-gray-900 text-white">
<div class="max-w-7xl mx-auto flex justify-between items-center p-4">
<h1 class="text-xl font-bold">Discovery Inspections</h1>
<div class="space-x-4">
<a href="booking.html" class="bg-orange-500 px-4 py-2 rounded text-white font-semibold">Schedule Now</a>
<span class="hidden sm:inline">(407) 801-3054</span>
</div>
</div>
</header>
<!-- Hero Section -->
<section class="bg-cover bg-center py-20 text-center text-white" style="background-image: url('https://via.placeholder.com/1600x600');">
<div class="bg-black bg-opacity-50 p-10 rounded">
<h2 class="text-4xl font-bold mb-4">Residential Home Inspections You Can Trust</h2>
<p class="mb-6">Veteran-Owned • Serving Volusia County & Central Florida</p>
<a href="booking.html" class="bg-orange-500 px-6 py-3 rounded font-semibold">View Sample Report</a>
</div>
</section>
<!-- Certifications -->
<section class="py-12 bg-gray-100 text-center">
<h3 class="text-2xl font-bold mb-8">Our Certifications</h3>
<div class="flex flex-wrap justify-center gap-6">
<img src="https://via.placeholder.com/100" alt="ATI Certified" class="rounded-full shadow" />
<img src="https://via.placeholder.com/100" alt="90-Day Warranty" class="rounded-full shadow" />
<img src="https://via.placeholder.com/100" alt="InterNACHI" class="rounded-full shadow" />
<img src="https://via.placeholder.com/100" alt="100% Satisfaction" class="rounded-full shadow" />
</div>
</section>
<!-- About Preview -->
<section class="py-16 max-w-5xl mx-auto px-4">
<h3 class="text-2xl font-bold mb-4">Why Choose Us?</h3>
<p class="mb-4">
Discovery Inspections is proudly owned and operated by military veteran Gabriel Ratliff. We provide detailed, honest, and timely home inspections using HomeGauge software.
</p>
<p>
We proudly offer a 10% discount to military members, first responders, police, firefighters, and school teachers.
</p>
</section>
<!-- Services Overview -->
<section class="py-12 bg-gray-100 text-center">
<h3 class="text-2xl font-bold mb-8">Our Services</h3>
<div class="grid grid-cols-1 sm:grid-cols-2 md:grid-cols-4 gap-6 max-w-6xl mx-auto">
<div class="bg-white p-6 shadow rounded">Residential Inspections</div>
<div class="bg-white p-6 shadow rounded">Pre-Listing Inspections</div>
<div class="bg-white p-6 shadow rounded">New Construction</div>
<div class="bg-white p-6 shadow rounded">Roof & HVAC Checks</div>
</div>
</section>
<!-- Reviews -->
<section class="py-16 max-w-5xl mx-auto px-4 text-center">
<h3 class="text-2xl font-bold mb-8">What Our Clients Say</h3>
<p class="italic mb-4">"Extremely professional and thorough. Highly recommended!"</p>
<p class="italic">"Gabriel was amazing to work with — super knowledgeable and respectful."</p>
<div class="mt-8">
<a href="#" class="text-orange-500 underline">View More Google Reviews</a>
</div>
</section>
<!-- Final CTA -->
<section class="bg-orange-500 text-white text-center py-12">
<h4 class="text-2xl font-bold mb-4">Ready to Book Your Inspection?</h4>
<p class="mb-6">Click below to schedule online or give us a call at (407) 801-3054</p>
<a href="booking.html" class="bg-white text-orange-500 px-6 py-3 rounded font-semibold">Schedule Now</a>
</section>
<footer class="text-center py-6 text-sm bg-gray-200">© 2025 Discovery Inspections. All rights reserved.</footer>
</body>
</html>