Spaces:
Running
Running
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<title>Horizon Realty | Premium Property Solutions</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> | |
/* Custom CSS for animations and effects */ | |
.hero-bg { | |
background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://images.unsplash.com/photo-1560518883-ce09059eeffa?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1473&q=80'); | |
background-size: cover; | |
background-position: center; | |
background-attachment: fixed; | |
} | |
.property-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); | |
} | |
.fade-in { | |
animation: fadeIn 1s ease-in; | |
} | |
@keyframes fadeIn { | |
from { opacity: 0; } | |
to { opacity: 1; } | |
} | |
.testimonial-card { | |
transition: all 0.3s ease; | |
} | |
.testimonial-card:hover { | |
background-color: #f8fafc; | |
} | |
.contact-form input, .contact-form textarea { | |
transition: all 0.3s ease; | |
} | |
.contact-form input:focus, .contact-form textarea:focus { | |
border-color: #3b82f6; | |
box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2); | |
} | |
</style> | |
</head> | |
<body class="font-sans text-gray-800"> | |
<!-- Navigation --> | |
<nav class="bg-white shadow-lg fixed w-full z-10"> | |
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> | |
<div class="flex justify-between h-16"> | |
<div class="flex items-center"> | |
<div class="flex-shrink-0 flex items-center"> | |
<i class="fas fa-home text-blue-600 text-2xl mr-2"></i> | |
<span class="text-xl font-bold text-blue-600">Horizon Realty</span> | |
</div> | |
</div> | |
<div class="hidden md:flex items-center space-x-8"> | |
<a href="#home" class="text-blue-600 hover:text-blue-800 px-3 py-2 font-medium">Home</a> | |
<a href="#properties" class="text-gray-700 hover:text-blue-600 px-3 py-2 font-medium">Properties</a> | |
<a href="#services" class="text-gray-700 hover:text-blue-600 px-3 py-2 font-medium">Services</a> | |
<a href="#agents" class="text-gray-700 hover:text-blue-600 px-3 py-2 font-medium">Agents</a> | |
<a href="#testimonials" class="text-gray-700 hover:text-blue-600 px-3 py-2 font-medium">Testimonials</a> | |
<a href="#contact" class="text-gray-700 hover:text-blue-600 px-3 py-2 font-medium">Contact</a> | |
</div> | |
<div class="md:hidden flex items-center"> | |
<button id="mobile-menu-button" class="text-gray-700 hover:text-blue-600 focus:outline-none"> | |
<i class="fas fa-bars text-xl"></i> | |
</button> | |
</div> | |
</div> | |
</div> | |
<!-- Mobile menu --> | |
<div id="mobile-menu" class="md:hidden hidden bg-white shadow-lg"> | |
<div class="px-2 pt-2 pb-3 space-y-1 sm:px-3"> | |
<a href="#home" class="block px-3 py-2 text-blue-600 font-medium">Home</a> | |
<a href="#properties" class="block px-3 py-2 text-gray-700 hover:text-blue-600 font-medium">Properties</a> | |
<a href="#services" class="block px-3 py-2 text-gray-700 hover:text-blue-600 font-medium">Services</a> | |
<a href="#agents" class="block px-3 py-2 text-gray-700 hover:text-blue-600 font-medium">Agents</a> | |
<a href="#testimonials" class="block px-3 py-2 text-gray-700 hover:text-blue-600 font-medium">Testimonials</a> | |
<a href="#contact" class="block px-3 py-2 text-gray-700 hover:text-blue-600 font-medium">Contact</a> | |
</div> | |
</div> | |
</nav> | |
<!-- Hero Section --> | |
<section id="home" class="hero-bg min-h-screen flex items-center justify-center text-white pt-16"> | |
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 text-center fade-in"> | |
<h1 class="text-4xl md:text-6xl font-bold mb-6">Find Your Dream Home Today</h1> | |
<p class="text-xl md:text-2xl mb-8 max-w-3xl mx-auto">Horizon Realty connects you with the finest properties in your desired location. Experience the difference of premium real estate services.</p> | |
<div class="flex flex-col sm:flex-row justify-center gap-4"> | |
<a href="#properties" class="bg-blue-600 hover:bg-blue-700 text-white font-bold py-3 px-6 rounded-lg transition duration-300">Browse Properties</a> | |
<a href="#contact" class="bg-transparent hover:bg-white hover:text-blue-600 text-white font-bold py-3 px-6 border-2 border-white rounded-lg transition duration-300">Contact Agent</a> | |
</div> | |
</div> | |
</section> | |
<!-- Stats Section --> | |
<section class="bg-gray-100 py-16"> | |
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> | |
<div class="grid grid-cols-1 md:grid-cols-4 gap-8 text-center"> | |
<div class="bg-white p-6 rounded-lg shadow-md"> | |
<div class="text-blue-600 text-4xl font-bold mb-2">1,250+</div> | |
<div class="text-gray-600">Properties Sold</div> | |
</div> | |
<div class="bg-white p-6 rounded-lg shadow-md"> | |
<div class="text-blue-600 text-4xl font-bold mb-2">25+</div> | |
<div class="text-gray-600">Years Experience</div> | |
</div> | |
<div class="bg-white p-6 rounded-lg shadow-md"> | |
<div class="text-blue-600 text-4xl font-bold mb-2">50+</div> | |
<div class="text-gray-600">Professional Agents</div> | |
</div> | |
<div class="bg-white p-6 rounded-lg shadow-md"> | |
<div class="text-blue-600 text-4xl font-bold mb-2">98%</div> | |
<div class="text-gray-600">Client Satisfaction</div> | |
</div> | |
</div> | |
</div> | |
</section> | |
<!-- Featured Properties --> | |
<section id="properties" class="py-16 bg-white"> | |
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> | |
<div class="text-center mb-12"> | |
<h2 class="text-3xl font-bold text-gray-800 mb-4">Featured Properties</h2> | |
<p class="text-gray-600 max-w-2xl mx-auto">Discover our hand-picked selection of premium properties that match your lifestyle and budget.</p> | |
</div> | |
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8"> | |
<!-- Property 1 --> | |
<div class="property-card bg-white rounded-lg overflow-hidden shadow-md transition duration-300"> | |
<div class="relative"> | |
<img src="https://images.unsplash.com/photo-1560448204-e02f11c3d0e2?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" alt="Modern House" class="w-full h-64 object-cover"> | |
<div class="absolute top-4 right-4 bg-blue-600 text-white px-3 py-1 rounded-full text-sm font-semibold">For Sale</div> | |
</div> | |
<div class="p-6"> | |
<div class="flex justify-between items-start mb-2"> | |
<h3 class="text-xl font-bold text-gray-800">Modern Luxury Villa</h3> | |
<span class="text-blue-600 font-bold">$1,250,000</span> | |
</div> | |
<p class="text-gray-600 mb-4">123 Palm Street, Beverly Hills, CA</p> | |
<div class="flex justify-between text-gray-600 border-t border-gray-200 pt-4"> | |
<div class="flex items-center"> | |
<i class="fas fa-bed mr-2 text-blue-600"></i> | |
<span>4 Beds</span> | |
</div> | |
<div class="flex items-center"> | |
<i class="fas fa-bath mr-2 text-blue-600"></i> | |
<span>3 Baths</span> | |
</div> | |
<div class="flex items-center"> | |
<i class="fas fa-ruler-combined mr-2 text-blue-600"></i> | |
<span>3,200 sqft</span> | |
</div> | |
</div> | |
<button class="mt-4 w-full bg-blue-600 hover:bg-blue-700 text-white py-2 rounded-lg transition duration-300">View Details</button> | |
</div> | |
</div> | |
<!-- Property 2 --> | |
<div class="property-card bg-white rounded-lg overflow-hidden shadow-md transition duration-300"> | |
<div class="relative"> | |
<img src="https://images.unsplash.com/photo-1600585154340-be6161a56a0c?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" alt="Contemporary Apartment" class="w-full h-64 object-cover"> | |
<div class="absolute top-4 right-4 bg-green-600 text-white px-3 py-1 rounded-full text-sm font-semibold">For Rent</div> | |
</div> | |
<div class="p-6"> | |
<div class="flex justify-between items-start mb-2"> | |
<h3 class="text-xl font-bold text-gray-800">Downtown Penthouse</h3> | |
<span class="text-blue-600 font-bold">$4,500/mo</span> | |
</div> | |
<p class="text-gray-600 mb-4">456 Skyline Ave, New York, NY</p> | |
<div class="flex justify-between text-gray-600 border-t border-gray-200 pt-4"> | |
<div class="flex items-center"> | |
<i class="fas fa-bed mr-2 text-blue-600"></i> | |
<span>3 Beds</span> | |
</div> | |
<div class="flex items-center"> | |
<i class="fas fa-bath mr-2 text-blue-600"></i> | |
<span>2 Baths</span> | |
</div> | |
<div class="flex items-center"> | |
<i class="fas fa-ruler-combined mr-2 text-blue-600"></i> | |
<span>1,800 sqft</span> | |
</div> | |
</div> | |
<button class="mt-4 w-full bg-blue-600 hover:bg-blue-700 text-white py-2 rounded-lg transition duration-300">View Details</button> | |
</div> | |
</div> | |
<!-- Property 3 --> | |
<div class="property-card bg-white rounded-lg overflow-hidden shadow-md transition duration-300"> | |
<div class="relative"> | |
<img src="https://images.unsplash.com/photo-1605276374104-dee2a0ed3cd6?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" alt="Suburban Home" class="w-full h-64 object-cover"> | |
<div class="absolute top-4 right-4 bg-blue-600 text-white px-3 py-1 rounded-full text-sm font-semibold">For Sale</div> | |
</div> | |
<div class="p-6"> | |
<div class="flex justify-between items-start mb-2"> | |
<h3 class="text-xl font-bold text-gray-800">Family Suburban Home</h3> | |
<span class="text-blue-600 font-bold">$750,000</span> | |
</div> | |
<p class="text-gray-600 mb-4">789 Maple Lane, Austin, TX</p> | |
<div class="flex justify-between text-gray-600 border-t border-gray-200 pt-4"> | |
<div class="flex items-center"> | |
<i class="fas fa-bed mr-2 text-blue-600"></i> | |
<span>5 Beds</span> | |
</div> | |
<div class="flex items-center"> | |
<i class="fas fa-bath mr-2 text-blue-600"></i> | |
<span>3.5 Baths</span> | |
</div> | |
<div class="flex items-center"> | |
<i class="fas fa-ruler-combined mr-2 text-blue-600"></i> | |
<span>3,800 sqft</span> | |
</div> | |
</div> | |
<button class="mt-4 w-full bg-blue-600 hover:bg-blue-700 text-white py-2 rounded-lg transition duration-300">View Details</button> | |
</div> | |
</div> | |
</div> | |
<div class="text-center mt-12"> | |
<a href="#" class="inline-block bg-white hover:bg-gray-100 text-blue-600 font-bold py-3 px-6 border-2 border-blue-600 rounded-lg transition duration-300">View All Properties</a> | |
</div> | |
</div> | |
</section> | |
<!-- Services Section --> | |
<section id="services" class="py-16 bg-gray-100"> | |
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> | |
<div class="text-center mb-12"> | |
<h2 class="text-3xl font-bold text-gray-800 mb-4">Our Services</h2> | |
<p class="text-gray-600 max-w-2xl mx-auto">Comprehensive real estate solutions tailored to your unique needs.</p> | |
</div> | |
<div class="grid grid-cols-1 md:grid-cols-3 gap-8"> | |
<div class="bg-white p-8 rounded-lg shadow-md hover:shadow-lg transition duration-300"> | |
<div class="text-blue-600 text-4xl mb-4"> | |
<i class="fas fa-home"></i> | |
</div> | |
<h3 class="text-xl font-bold text-gray-800 mb-3">Property Sales</h3> | |
<p class="text-gray-600">Expert guidance through the entire home buying process, from search to closing.</p> | |
</div> | |
<div class="bg-white p-8 rounded-lg shadow-md hover:shadow-lg transition duration-300"> | |
<div class="text-blue-600 text-4xl mb-4"> | |
<i class="fas fa-key"></i> | |
</div> | |
<h3 class="text-xl font-bold text-gray-800 mb-3">Property Rentals</h3> | |
<p class="text-gray-600">Find your perfect rental property with our extensive listings and expert advice.</p> | |
</div> | |
<div class="bg-white p-8 rounded-lg shadow-md hover:shadow-lg transition duration-300"> | |
<div class="text-blue-600 text-4xl mb-4"> | |
<i class="fas fa-search-dollar"></i> | |
</div> | |
<h3 class="text-xl font-bold text-gray-800 mb-3">Property Valuation</h3> | |
<p class="text-gray-600">Accurate market valuations to help you make informed decisions about your property.</p> | |
</div> | |
<div class="bg-white p-8 rounded-lg shadow-md hover:shadow-lg transition duration-300"> | |
<div class="text-blue-600 text-4xl mb-4"> | |
<i class="fas fa-handshake"></i> | |
</div> | |
<h3 class="text-xl font-bold text-gray-800 mb-3">Investment Consulting</h3> | |
<p class="text-gray-600">Strategic advice for building and managing your real estate investment portfolio.</p> | |
</div> | |
<div class="bg-white p-8 rounded-lg shadow-md hover:shadow-lg transition duration-300"> | |
<div class="text-blue-600 text-4xl mb-4"> | |
<i class="fas fa-file-signature"></i> | |
</div> | |
<h3 class="text-xl font-bold text-gray-800 mb-3">Legal Assistance</h3> | |
<p class="text-gray-600">Professional legal support for all your real estate transactions and contracts.</p> | |
</div> | |
<div class="bg-white p-8 rounded-lg shadow-md hover:shadow-lg transition duration-300"> | |
<div class="text-blue-600 text-4xl mb-4"> | |
<i class="fas fa-building"></i> | |
</div> | |
<h3 class="text-xl font-bold text-gray-800 mb-3">Commercial Real Estate</h3> | |
<p class="text-gray-600">Specialized services for commercial property buyers, sellers, and investors.</p> | |
</div> | |
</div> | |
</div> | |
</section> | |
<!-- Agents Section --> | |
<section id="agents" class="py-16 bg-white"> | |
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> | |
<div class="text-center mb-12"> | |
<h2 class="text-3xl font-bold text-gray-800 mb-4">Meet Our Agents</h2> | |
<p class="text-gray-600 max-w-2xl mx-auto">Our team of experienced professionals is ready to assist you with all your real estate needs.</p> | |
</div> | |
<div class="grid grid-cols-1 md:grid-cols-3 gap-8"> | |
<!-- Agent 1 --> | |
<div class="bg-white rounded-lg overflow-hidden shadow-md hover:shadow-lg transition duration-300"> | |
<img src="https://images.unsplash.com/photo-1560250097-0b93528c311a?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=687&q=80" alt="Agent 1" class="w-full h-64 object-cover"> | |
<div class="p-6"> | |
<h3 class="text-xl font-bold text-gray-800 mb-1">Michael Johnson</h3> | |
<p class="text-blue-600 mb-3">Senior Real Estate Agent</p> | |
<p class="text-gray-600 mb-4">With over 15 years of experience, Michael specializes in luxury properties and investment real estate.</p> | |
<div class="flex space-x-4"> | |
<a href="#" class="text-blue-600 hover:text-blue-800"><i class="fab fa-facebook-f"></i></a> | |
<a href="#" class="text-blue-600 hover:text-blue-800"><i class="fab fa-twitter"></i></a> | |
<a href="#" class="text-blue-600 hover:text-blue-800"><i class="fab fa-linkedin-in"></i></a> | |
<a href="#" class="text-blue-600 hover:text-blue-800"><i class="fas fa-envelope"></i></a> | |
</div> | |
</div> | |
</div> | |
<!-- Agent 2 --> | |
<div class="bg-white rounded-lg overflow-hidden shadow-md hover:shadow-lg transition duration-300"> | |
<img src="https://images.unsplash.com/photo-1573496359142-b8d87734a5a2?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=688&q=80" alt="Agent 2" class="w-full h-64 object-cover"> | |
<div class="p-6"> | |
<h3 class="text-xl font-bold text-gray-800 mb-1">Sarah Williams</h3> | |
<p class="text-blue-600 mb-3">Residential Specialist</p> | |
<p class="text-gray-600 mb-4">Sarah's deep knowledge of local neighborhoods helps families find their perfect homes.</p> | |
<div class="flex space-x-4"> | |
<a href="#" class="text-blue-600 hover:text-blue-800"><i class="fab fa-facebook-f"></i></a> | |
<a href="#" class="text-blue-600 hover:text-blue-800"><i class="fab fa-twitter"></i></a> | |
<a href="#" class="text-blue-600 hover:text-blue-800"><i class="fab fa-linkedin-in"></i></a> | |
<a href="#" class="text-blue-600 hover:text-blue-800"><i class="fas fa-envelope"></i></a> | |
</div> | |
</div> | |
</div> | |
<!-- Agent 3 --> | |
<div class="bg-white rounded-lg overflow-hidden shadow-md hover:shadow-lg transition duration-300"> | |
<img src="https://images.unsplash.com/photo-1580489944761-15a19d654956?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=761&q=80" alt="Agent 3" class="w-full h-64 object-cover"> | |
<div class="p-6"> | |
<h3 class="text-xl font-bold text-gray-800 mb-1">David Chen</h3> | |
<p class="text-blue-600 mb-3">Commercial Real Estate Expert</p> | |
<p class="text-gray-600 mb-4">David helps businesses find optimal commercial spaces and negotiate favorable lease terms.</p> | |
<div class="flex space-x-4"> | |
<a href="#" class="text-blue-600 hover:text-blue-800"><i class="fab fa-facebook-f"></i></a> | |
<a href="#" class="text-blue-600 hover:text-blue-800"><i class="fab fa-twitter"></i></a> | |
<a href="#" class="text-blue-600 hover:text-blue-800"><i class="fab fa-linkedin-in"></i></a> | |
<a href="#" class="text-blue-600 hover:text-blue-800"><i class="fas fa-envelope"></i></a> | |
</div> | |
</div> | |
</div> | |
</div> | |
<div class="text-center mt-12"> | |
<a href="#" class="inline-block bg-blue-600 hover:bg-blue-700 text-white font-bold py-3 px-6 rounded-lg transition duration-300">Join Our Team</a> | |
</div> | |
</div> | |
</section> | |
<!-- Testimonials --> | |
<section id="testimonials" class="py-16 bg-gray-100"> | |
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> | |
<div class="text-center mb-12"> | |
<h2 class="text-3xl font-bold text-gray-800 mb-4">Client Testimonials</h2> | |
<p class="text-gray-600 max-w-2xl mx-auto">Hear what our clients say about their experience with Horizon Realty.</p> | |
</div> | |
<div class="grid grid-cols-1 md:grid-cols-3 gap-8"> | |
<!-- Testimonial 1 --> | |
<div class="testimonial-card bg-white p-8 rounded-lg shadow-md"> | |
<div class="flex items-center mb-4"> | |
<div class="text-yellow-400 text-xl mr-2"> | |
<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> | |
<p class="text-gray-600 mb-6">"Horizon Realty made the home buying process seamless. Their attention to detail and market knowledge helped us find our dream home at the perfect price."</p> | |
<div class="flex items-center"> | |
<img src="https://images.unsplash.com/photo-1494790108377-be9c29b29330?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=687&q=80" alt="Client 1" class="w-12 h-12 rounded-full object-cover mr-4"> | |
<div> | |
<h4 class="font-bold text-gray-800">Emily Rodriguez</h4> | |
<p class="text-gray-600 text-sm">Homeowner</p> | |
</div> | |
</div> | |
</div> | |
<!-- Testimonial 2 --> | |
<div class="testimonial-card bg-white p-8 rounded-lg shadow-md"> | |
<div class="flex items-center mb-4"> | |
<div class="text-yellow-400 text-xl mr-2"> | |
<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> | |
<p class="text-gray-600 mb-6">"As a first-time home buyer, I was nervous about the process. My agent at Horizon was patient, knowledgeable, and made sure I understood every step."</p> | |
<div class="flex items-center"> | |
<img src="https://images.unsplash.com/photo-1507003211169-0a1dd7228f2d?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=687&q=80" alt="Client 2" class="w-12 h-12 rounded-full object-cover mr-4"> | |
<div> | |
<h4 class="font-bold text-gray-800">James Wilson</h4> | |
<p class="text-gray-600 text-sm">First-time Buyer</p> | |
</div> | |
</div> | |
</div> | |
<!-- Testimonial 3 --> | |
<div class="testimonial-card bg-white p-8 rounded-lg shadow-md"> | |
<div class="flex items-center mb-4"> | |
<div class="text-yellow-400 text-xl mr-2"> | |
<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> | |
<p class="text-gray-600 mb-6">"We sold our family home through Horizon and got 15% above asking price. Their marketing strategy and negotiation skills were impressive."</p> | |
<div class="flex items-center"> | |
<img src="https://images.unsplash.com/photo-1531123897727-8f129e1688ce?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=687&q=80" alt="Client 3" class="w-12 h-12 rounded-full object-cover mr-4"> | |
<div> | |
<h4 class="font-bold text-gray-800">Robert & Linda Thompson</h4> | |
<p class="text-gray-600 text-sm">Sellers</p> | |
</div> | |
</div> | |
</div> | |
</div> | |
</div> | |
</section> | |
<!-- Contact Section --> | |
<section id="contact" class="py-16 bg-white"> | |
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> | |
<div class="text-center mb-12"> | |
<h2 class="text-3xl font-bold text-gray-800 mb-4">Contact Us</h2> | |
<p class="text-gray-600 max-w-2xl mx-auto">Ready to start your real estate journey? Get in touch with our team today.</p> | |
</div> | |
<div class="grid grid-cols-1 lg:grid-cols-2 gap-12"> | |
<div class="contact-form"> | |
<form class="space-y-6"> | |
<div> | |
<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 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-blue-500"> | |
</div> | |
<div> | |
<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 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-blue-500"> | |
</div> | |
<div> | |
<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 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-blue-500"> | |
</div> | |
<div> | |
<label for="message" class="block text-gray-700 font-medium mb-2">Your Message</label> | |
<textarea id="message" rows="5" class="w-full px-4 py-3 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-blue-500"></textarea> | |
</div> | |
<div> | |
<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">Send Message</button> | |
</div> | |
</form> | |
</div> | |
<div> | |
<div class="bg-gray-100 p-8 rounded-lg"> | |
<h3 class="text-xl font-bold text-gray-800 mb-6">Our Office</h3> | |
<div class="space-y-6"> | |
<div class="flex items-start"> | |
<div class="text-blue-600 text-xl mr-4 mt-1"> | |
<i class="fas fa-map-marker-alt"></i> | |
</div> | |
<div> | |
<h4 class="font-bold text-gray-800">Address</h4> | |
<p class="text-gray-600">123 Real Estate Avenue, Suite 500<br>Los Angeles, CA 90067</p> | |
</div> | |
</div> | |
<div class="flex items-start"> | |
<div class="text-blue-600 text-xl mr-4 mt-1"> | |
<i class="fas fa-phone-alt"></i> | |
</div> | |
<div> | |
<h4 class="font-bold text-gray-800">Phone</h4> | |
<p class="text-gray-600">(310) 555-1234<br>Mon-Fri: 9am-6pm</p> | |
</div> | |
</div> | |
<div class="flex items-start"> | |
<div class="text-blue-600 text-xl mr-4 mt-1"> | |
<i class="fas fa-envelope"></i> | |
</div> | |
<div> | |
<h4 class="font-bold text-gray-800">Email</h4> | |
<p class="text-gray-600">[email protected]<br>[email protected]</p> | |
</div> | |
</div> | |
</div> | |
</div> | |
<div class="mt-8"> | |
<iframe src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3304.45379025584!2d-118.414000924686!3d34.0836732193529!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x80c2bc04d6d147ab%3A0xd6c7c379fd081bc1!2sBeverly%20Hills%2C%20CA%2090210%2C%20USA!5e0!3m2!1sen!2s!4v1689876543210!5m2!1sen!2s" width="100%" height="300" style="border:0;" allowfullscreen="" loading="lazy" class="rounded-lg shadow-md"></iframe> | |
</div> | |
</div> | |
</div> | |
</div> | |
</section> | |
<!-- Newsletter --> | |
<section class="py-16 bg-blue-600 text-white"> | |
<div class="max-w-4xl mx-auto px-4 sm:px-6 lg:px-8 text-center"> | |
<h2 class="text-3xl font-bold mb-4">Subscribe to Our Newsletter</h2> | |
<p class="mb-8 max-w-2xl mx-auto">Stay updated with the latest property listings, market trends, and real estate tips delivered straight to your inbox.</p> | |
<form class="flex flex-col sm:flex-row gap-4 max-w-md mx-auto"> | |
<input type="email" placeholder="Your email address" class="flex-grow px-4 py-3 rounded-lg focus:outline-none text-gray-800"> | |
<button type="submit" class="bg-white hover:bg-gray-100 text-blue-600 font-bold py-3 px-6 rounded-lg transition duration-300">Subscribe</button> | |
</form> | |
</div> | |
</section> | |
<!-- Footer --> | |
<footer class="bg-gray-900 text-white py-12"> | |
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> | |
<div class="grid grid-cols-1 md:grid-cols-4 gap-8"> | |
<div> | |
<div class="flex items-center mb-4"> | |
<i class="fas fa-home text-blue-600 text-2xl mr-2"></i> | |
<span class="text-xl font-bold">Horizon Realty</span> | |
</div> | |
<p class="text-gray-400">Premium real estate services with a personal touch. Helping clients find their perfect properties since 1998.</p> | |
<div class="flex space-x-4 mt-6"> | |
<a href="#" class="text-gray-400 hover:text-white"><i class="fab fa-facebook-f"></i></a> | |
<a href="#" class="text-gray-400 hover:text-white"><i class="fab fa-twitter"></i></a> | |
<a href="#" class="text-gray-400 hover:text-white"><i class="fab fa-instagram"></i></a> | |
<a href="#" class="text-gray-400 hover:text-white"><i class="fab fa-linkedin-in"></i></a> | |
</div> | |
</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-white">Home</a></li> | |
<li><a href="#properties" class="text-gray-400 hover:text-white">Properties</a></li> | |
<li><a href="#services" class="text-gray-400 hover:text-white">Services</a></li> | |
<li><a href="#agents" class="text-gray-400 hover:text-white">Agents</a></li> | |
<li><a href="#testimonials" class="text-gray-400 hover:text-white">Testimonials</a></li> | |
<li><a href="#contact" class="text-gray-400 hover:text-white">Contact</a></li> | |
</ul> | |
</div> | |
<div> | |
<h3 class="text-lg font-bold mb-4">Services</h3> | |
<ul class="space-y-2"> | |
<li><a href="#" class="text-gray-400 hover:text-white">Property Sales</a></li> | |
<li><a href="#" class="text-gray-400 hover:text-white">Property Rentals</a></li> | |
<li><a href="#" class="text-gray-400 hover:text-white">Property Valuation</a></li> | |
<li><a href="#" class="text-gray-400 hover:text-white">Investment Consulting</a></li> | |
<li><a href="#" class="text-gray-400 hover:text-white">Legal Assistance</a></li> | |
<li><a href="#" class="text-gray-400 hover:text-white">Commercial Real Estate</a></li> | |
</ul> | |
</div> | |
<div> | |
<h3 class="text-lg font-bold mb-4">Contact Info</h3> | |
<ul class="space-y-3 text-gray-400"> | |
<li class="flex items-start"> | |
<i class="fas fa-map-marker-alt text-blue-600 mt-1 mr-3"></i> | |
<span>123 Real Estate Ave, Suite 500<br>Los Angeles, CA 90067</span> | |
</li> | |
<li class="flex items-center"> | |
<i class="fas fa-phone-alt text-blue-600 mr-3"></i> | |
<span>(310) 555-1234</span> | |
</li> | |
<li class="flex items-center"> | |
<i class="fas fa-envelope text-blue-600 mr-3"></i> | |
<span>[email protected]</span> | |
</li> | |
<li class="flex items-center"> | |
<i class="fas fa-clock text-blue-600 mr-3"></i> | |
<span>Mon-Fri: 9am-6pm</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 text-sm mb-4 md:mb-0">© 2023 Horizon Realty. All rights reserved.</p> | |
<div class="flex space-x-6"> | |
<a href="#" class="text-gray-400 hover:text-white text-sm">Privacy Policy</a> | |
<a href="#" class="text-gray-400 hover:text-white text-sm">Terms of Service</a> | |
<a href="#" class="text-gray-400 hover:text-white text-sm">Sitemap</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 hidden"> | |
<i class="fas fa-arrow-up"></i> | |
</button> | |
<script> | |
// Mobile menu toggle | |
const mobileMenuButton = document.getElementById('mobile-menu-button'); | |
const mobileMenu = document.getElementById('mobile-menu'); | |
mobileMenuButton.addEventListener('click', () => { | |
mobileMenu.classList.toggle('hidden'); | |
}); | |
// Smooth scrolling for navigation links | |
document.querySelectorAll('a[href^="#"]').forEach(anchor => { | |
anchor.addEventListener('click', function (e) { | |
e.preventDefault(); | |
const targetId = this.getAttribute('href'); | |
const targetElement = document.querySelector(targetId); | |
if (targetElement) { | |
window.scrollTo({ | |
top: targetElement.offsetTop - 80, | |
behavior: 'smooth' | |
}); | |
// Close mobile menu if open | |
if (!mobileMenu.classList.contains('hidden')) { | |
mobileMenu.classList.add('hidden'); | |
} | |
} | |
}); | |
}); | |
// Back to top button | |
const backToTopButton = document.getElementById('back-to-top'); | |
window.addEventListener('scroll', () => { | |
if (window.pageYOffset > 300) { | |
backToTopButton.classList.remove('hidden'); | |
} else { | |
backToTopButton.classList.add('hidden'); | |
} | |
}); | |
backToTopButton.addEventListener('click', () => { | |
window.scrollTo({ | |
top: 0, | |
behavior: 'smooth' | |
}); | |
}); | |
// Animate elements when they come into view | |
const animateOnScroll = () => { | |
const elements = document.querySelectorAll('.property-card, .testimonial-card, .contact-form'); | |
elements.forEach(element => { | |
const elementPosition = element.getBoundingClientRect().top; | |
const screenPosition = window.innerHeight / 1.3; | |
if (elementPosition < screenPosition) { | |
element.classList.add('fade-in'); | |
} | |
}); | |
}; | |
window.addEventListener('scroll', animateOnScroll); | |
window.addEventListener('load', animateOnScroll); | |
</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=dmoedbeck/realestate" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body> | |
</html> |