File size: 15,305 Bytes
257c430 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>703 Nailed It - Professional Remodeling Services in Culpeper, VA</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 */
.hero {
background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
background-size: cover;
background-position: center;
min-height: 80vh;
}
.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);
}
.testimonial-card {
transition: all 0.3s ease;
}
.testimonial-card:hover {
transform: scale(1.03);
}
.contact-form input, .contact-form textarea {
transition: all 0.3s ease;
}
.contact-form input:focus, .contact-form textarea:focus {
border-color: #f59e0b;
box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.5);
}
.nav-link {
position: relative;
}
.nav-link:after {
content: '';
position: absolute;
width: 0;
height: 2px;
bottom: -2px;
left: 0;
background-color: #f59e0b;
transition: width 0.3s ease;
}
.nav-link:hover:after {
width: 100%;
}
.mobile-menu {
max-height: 0;
overflow: hidden;
transition: max-height 0.3s ease-out;
}
.mobile-menu.open {
max-height: 500px;
}
</style>
</head>
<body class="font-sans text-gray-800">
<!-- Header/Navigation -->
<header class="bg-white shadow-md sticky top-0 z-50">
<div class="container mx-auto px-4 py-3 flex justify-between items-center">
<div class="flex items-center">
<div class="bg-amber-500 p-2 rounded-lg mr-3">
<i class="fas fa-hammer text-white text-2xl"></i>
</div>
<h1 class="text-2xl font-bold text-gray-800">703 Nailed It</h1>
</div>
<!-- Desktop Navigation -->
<nav class="hidden md:flex space-x-8">
<a href="#home" class="nav-link text-gray-700 hover:text-amber-500 font-medium">Home</a>
<a href="#services" class="nav-link text-gray-700 hover:text-amber-500 font-medium">Services</a>
<a href="#projects" class="nav-link text-gray-700 hover:text-amber-500 font-medium">Projects</a>
<a href="#testimonials" class="nav-link text-gray-700 hover:text-amber-500 font-medium">Testimonials</a>
<a href="#contact" class="nav-link text-gray-700 hover:text-amber-500 font-medium">Contact</a>
</nav>
<!-- Mobile Menu Button -->
<button id="mobile-menu-button" class="md:hidden text-gray-700 focus:outline-none">
<i class="fas fa-bars text-2xl"></i>
</button>
</div>
<!-- Mobile Navigation -->
<div id="mobile-menu" class="mobile-menu md:hidden bg-white">
<div class="px-4 py-2 space-y-3">
<a href="#home" class="block py-2 text-gray-700 hover:text-amber-500 font-medium">Home</a>
<a href="#services" class="block py-2 text-gray-700 hover:text-amber-500 font-medium">Services</a>
<a href="#projects" class="block py-2 text-gray-700 hover:text-amber-500 font-medium">Projects</a>
<a href="#testimonials" class="block py-2 text-gray-700 hover:text-amber-500 font-medium">Testimonials</a>
<a href="#contact" class="block py-2 text-gray-700 hover:text-amber-500 font-medium">Contact</a>
<div class="py-2">
<a href="tel:5716833169" class="block bg-amber-500 text-white py-2 px-4 rounded-lg text-center font-medium hover:bg-amber-600 transition">
<i class="fas fa-phone mr-2"></i> Call Now
</a>
</div>
</div>
</div>
</header>
<!-- Hero Section -->
<section id="home" class="hero flex items-center justify-center text-white">
<div class="container mx-auto px-4 text-center">
<h1 class="text-4xl md:text-6xl font-bold mb-6">Transform Your Space With Excellence</h1>
<p class="text-xl md:text-2xl mb-8 max-w-3xl mx-auto">Professional remodeling services in Culpeper, VA that you can trust. Quality craftsmanship for your home or business.</p>
<div class="flex flex-col sm:flex-row justify-center gap-4">
<a href="#contact" class="bg-amber-500 hover:bg-amber-600 text-white py-3 px-6 rounded-lg text-lg font-medium transition duration-300">
<i class="fas fa-envelope mr-2"></i> Get a Free Quote
</a>
<a href="tel:5716833169" class="bg-white hover:bg-gray-100 text-amber-600 py-3 px-6 rounded-lg text-lg font-medium transition duration-300">
<i class="fas fa-phone mr-2"></i> (571) 683-3169
</a>
</div>
</div>
</section>
<!-- Services Section -->
<section id="services" class="py-16 bg-gray-50">
<div class="container mx-auto px-4">
<div class="text-center mb-12">
<h2 class="text-3xl md:text-4xl font-bold mb-4">Our Professional Services</h2>
<div class="w-24 h-1 bg-amber-500 mx-auto"></div>
<p class="text-gray-600 mt-4 max-w-2xl mx-auto">We offer a comprehensive range of remodeling services to transform your space into something extraordinary.</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
<!-- Service Card 1 -->
<div class="service-card bg-white rounded-lg shadow-md overflow-hidden transition duration-300">
<div class="h-48 bg-gray-200 flex items-center justify-center">
<i class="fas fa-home text-6xl text-amber-500"></i>
</div>
<div class="p-6">
<h3 class="text-xl font-bold mb-3">Home Remodeling</h3>
<p class="text-gray-600 mb-4">Complete home transformations including kitchens, bathrooms, basements, and whole-house renovations.</p>
<a href="#contact" class="text-amber-500 font-medium hover:text-amber-600 flex items-center">
Learn More <i class="fas fa-arrow-right ml-2"></i>
</a>
</div>
</div>
<!-- Service Card 2 -->
<div class="service-card bg-white rounded-lg shadow-md overflow-hidden transition duration-300">
<div class="h-48 bg-gray-200 flex items-center justify-center">
<i class="fas fa-tools text-6xl text-amber-500"></i>
</div>
<div class="p-6">
<h3 class="text-xl font-bold mb-3">Custom Carpentry</h3>
<p class="text-gray-600 mb-4">Bespoke woodworking solutions including custom cabinets, built-ins, trim work, and furniture.</p>
<a href="#contact" class="text-amber-500 font-medium hover:text-amber-600 flex items-center">
Learn More <i class="fas fa-arrow-right ml-2"></i>
</a>
</div>
</div>
<!-- Service Card 3 -->
<div class="service-card bg-white rounded-lg shadow-md overflow-hidden transition duration-300">
<div class="h-48 bg-gray-200 flex items-center justify-center">
<i class="fas fa-paint-roller text-6xl text-amber-500"></i>
</div>
<div class="p-6">
<h3 class="text-xl font-bold mb-3">Interior Finishing</h3>
<p class="text-gray-600 mb-4">Professional painting, drywall installation, flooring, and all interior finishing touches.</p>
<a href="#contact" class="text-amber-500 font-medium hover:text-amber-600 flex items-center">
Learn More <i class="fas fa-arrow-right ml-2"></i>
</a>
</div>
</div>
<!-- Service Card 4 -->
<div class="service-card bg-white rounded-lg shadow-md overflow-hidden transition duration-300">
<div class="h-48 bg-gray-200 flex items-center justify-center">
<i class="fas fa-door-open text-6xl text-amber-500"></i>
</div>
<div class="p-6">
<h3 class="text-xl font-bold mb-3">Room Additions</h3>
<p class="text-gray-600 mb-4">Expand your living space with seamless room additions that match your existing structure.</p>
<a href="#contact" class="text-amber-500 font-medium hover:text-amber-600 flex items-center">
Learn More <i class="fas fa-arrow-right ml-2"></i>
</a>
</div>
</div>
<!-- Service Card 5 -->
<div class="service-card bg-white rounded-lg shadow-md overflow-hidden transition duration-300">
<div class="h-48 bg-gray-200 flex items-center justify-center">
<i class="fas fa-vector-square text-6xl text-amber-500"></i>
</div>
<div class="p-6">
<h3 class="text-xl font-bold mb-3">Commercial Remodeling</h3>
<p class="text-gray-600 mb-4">Transform your business space with professional commercial remodeling services.</p>
<a href="#contact" class="text-amber-500 font-medium hover:text-amber-600 flex items-center">
Learn More <i class="fas fa-arrow-right ml-2"></i>
</a>
</div>
</div>
<!-- Service Card 6 -->
<div class="service-card bg-white rounded-lg shadow-md overflow-hidden transition duration-300">
<div class="h-48 bg-gray-200 flex items-center justify-center">
<i class="fas fa-hand-holding-usd text-6xl text-amber-500"></i>
</div>
<div class="p-6">
<h3 class="text-xl font-bold mb-3">Consultation & Design</h3>
<p class="text-gray-600 mb-4">Expert advice and design solutions to help plan your perfect remodeling project.</p>
<a href="#contact" class="text-amber-500 font-medium hover:text-amber-600 flex items-center">
Learn More <i class="fas fa-arrow-right ml-2"></i>
</a>
</div>
</div>
</div>
</div>
</section>
<!-- Why Choose Us Section -->
<section class="py-16 bg-white">
<div class="container mx-auto px-4">
<div class="flex flex-col lg:flex-row items-center">
<div class="lg:w-1/2 mb-8 lg:mb-0 lg:pr-12">
<img src="https://images.unsplash.com/photo-1600607687920-4e2a09cf159d?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80" alt="Remodeling work" class="rounded-lg shadow-lg w-full">
</div>
<div class="lg:w-1/2">
<h2 class="text-3xl md:text-4xl font-bold mb-6">Why Choose 703 Nailed It?</h2>
<div class="w-24 h-1 bg-amber-500 mb-6"></div>
<div class="space-y-6">
<div class="flex">
<div class="mr-4">
<div class="bg-amber-100 text-amber-600 rounded-full w-12 h-12 flex items-center justify-center">
<i class="fas fa-medal text-xl"></i>
</div>
</div>
<div>
<h3 class="text-xl font-bold mb-2">Quality Craftsmanship</h3>
<p class="text-gray-600">We take pride in our attention to detail and commitment to excellence in every project we undertake.</p>
</div>
</div>
<div class="flex">
<div class="mr-4">
<div class="bg-amber-100 text-amber-600 rounded-full w-12 h-12 flex items-center justify-center">
<i class="fas fa-user-tie text-xl"></i>
</div>
</div>
<div>
<h3 class="text-xl font-bold mb-2">Experienced Professionals</h3>
<p class="text-gray-600">Our team brings years of experience and specialized skills to ensure your project is completed to the highest standards.</p>
</div>
</div>
<div class="flex">
<div class="mr-4">
<div class="bg-amber-100 text-amber-600 rounded-full w-12 h-12 flex items-center justify-center">
<i class="fas fa-handshake text-xl"></i>
</div>
</div>
<div>
<h3 class="text-xl font-bold mb-2">Customer Satisfaction</h3>
<p class="text-gray-600">Your satisfaction is our top priority. We work closely with you to bring your vision to life.</p>
</div>
</div>
<div class="flex">
<div class="mr-4">
<div class="bg-amber-100 text-amber-600 rounded-full w-12 h-12 flex items-center justify-center">
<i class="fas fa-dollar-sign text-xl"></i>
</div>
</div>
</html> |