<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>FindHomePros— Compare Top-Rated Home Service Pros Near You</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link href="https://fonts.googleapis.com/css2?family=DM+Sans:ital,wght@0,400;0,500;0,600;0,700&family=Playfair+Display:wght@700;800&display=swap" rel="stylesheet">
<style>
/* --- 1. RESET & CORE VARIABLES --- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --brand: #1B6B4A;
  --brand-light: #E8F5EE;
  --brand-dark: #134D35;
  --accent: #FFB400;
  --accent-light: #FFF3E6;
  --dark: #1A2332;
  --text: #3D4F5F;
  --text-light: #6B7D8D;
  --bg: #F7F9FB;
  --white: #FFFFFF;
  --card-shadow: 0 4px 20px rgba(26,35,50,0.06);
  --card-hover: 0 16px 40px rgba(26,35,50,0.14);
  --radius: 18px;
}

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* --- 2. HEADER --- */
.header {
  background: var(--white);
  border-bottom: 2px solid var(--brand);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 100;
}

.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo-icon { width: 38px; height: 38px; background: var(--brand); border-radius: 10px; display: flex; align-items: center; justify-content: center; }
.logo-icon svg { width: 22px; height: 22px; }
.logo-text { font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 800; color: var(--dark); }
.logo-text span { color: var(--brand); }

.online-badge { display: flex; align-items: center; gap: 10px; font-size: 0.9rem; font-weight: 600; color: var(--brand); }
.pulse-dot { width: 10px; height: 10px; background: #2ECC71; border-radius: 50%; animation: pulse 2s ease-in-out infinite; }

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(46,204,113,0.5); }
  50% { box-shadow: 0 0 0 10px rgba(46,204,113,0); }
}

/* --- 3. HERO --- */
.hero {
  text-align: center;
  padding: 64px 24px;
  background: linear-gradient(180deg, var(--white) 0%, var(--bg) 100%);
}

.hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(2.2rem, 5vw, 3.2rem); font-weight: 800; color: var(--dark); margin-bottom: 16px; line-height: 1.2; }
.hero p { font-size: 1.15rem; color: var(--text-light); max-width: 550px; margin: 0 auto; }

/* --- 4. SERVICE CARDS --- */
.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto 64px;
  padding: 0 24px;
}

.service-card {
  background: var(--white);
  border: 2px solid transparent;
  border-radius: var(--radius);
  padding: 44px 32px;
  text-align: center;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--card-shadow);
  text-decoration: none;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  border-color: var(--brand);
  box-shadow: var(--card-hover);
  transform: translateY(-8px);
}

.service-icon {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  animation: floating 3s ease-in-out infinite;
}

.service-icon.kitchen { background: var(--accent-light); }
.service-icon.bathroom { background: #E6F0FF; }
.service-icon.hvac { background: #F0F4F8; }

.service-icon svg, .service-icon img {
    width: 46px;
    height: 46px;
    object-fit: contain;
}

.service-card h3 { font-size: 1.3rem; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.service-card .sub { font-size: 1rem; color: var(--text-light); }

@keyframes floating {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
}

/* --- 5. STEPS SEQUENTIAL MOTION & HOVER --- */
.steps-section { padding: 80px 24px; background: var(--bg); }
.steps-section h2 { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 4vw, 2.6rem); font-weight: 800; color: var(--dark); text-align: center; margin-bottom: 56px; }
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 28px; max-width: 1000px; margin: 0 auto; }

.step-card { 
    border-radius: var(--radius); 
    padding: 40px 32px; 
    text-align: center; 
    background: var(--white); 
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
    box-shadow: var(--card-shadow);
    animation: stepHighlight 6s infinite;
}

.step-emoji {
    display: inline-block;
    animation: floating 3s ease-in-out infinite;
}

.step-card:hover {
    transform: translateY(-12px) scale(1.03);
    border-color: var(--brand);
    box-shadow: var(--card-hover);
    z-index: 10;
}

@keyframes stepHighlight {
    0%, 33% { background: var(--white); }
    16% { background: var(--brand-light); }
}

.step-card:nth-child(1) { animation-delay: 0s; }
.step-card:nth-child(2) { animation-delay: 2s; }
.step-card:nth-child(3) { animation-delay: 4s; }

.step-emoji svg { width: 44px; height: 44px; color: var(--brand); margin-bottom: 20px; }

/* --- 6. TESTIMONIALS (Optimized/Reduced Size) --- */
.testimonials-section { padding: 60px 24px; background: var(--white); text-align: center; }
.testimonials-section h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 3.5vw, 2.4rem); font-weight: 800; color: var(--dark); margin-bottom: 40px; }
.testimonials-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
    gap: 20px; 
    max-width: 1100px; 
    margin: 0 auto; 
}

.testimonial-card {
  background: var(--bg);
  border-radius: 14px; /* Slightly tighter radius */
  padding: 24px; /* Reduced from 36px */
  text-align: left;
  transition: all 0.3s ease;
  border: 1px solid #f0f0f0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-card:hover { transform: translateY(-5px); background: var(--white); box-shadow: var(--card-shadow); }
.stars-row { color: var(--accent); margin-bottom: 12px; font-size: 0.9rem; } /* Reduced star size */
.testimonial-text { 
    font-size: 0.88rem; /* Slightly smaller text */
    color: var(--text); 
    font-style: italic; 
    margin-bottom: 20px; /* Reduced margin */
    line-height: 1.5; 
}
.user-profile { 
    display: flex; 
    align-items: center; 
    gap: 12px; 
    border-top: 1px solid #E2E8F0; 
    padding-top: 16px; 
}
.user-avatar { width: 45px; height: 45px; border-radius: 50%; object-fit: cover; background: #ddd; } /* Reduced avatar size */
.user-name { font-weight: 700; color: var(--dark); font-size: 0.9rem; display: block; }
.user-service { font-size: 0.75rem; color: var(--brand); font-weight: 600; }

/* --- 7. FOOTER --- */
.footer { background: var(--bg); border-top: 1px solid #E2E8F0; padding: 56px 24px; text-align: center; }
.footer-logo span { color: var(--brand); font-family: 'Playfair Display', serif; font-weight: 800; font-size: 1.4rem; }
.footer-links { margin-top: 24px; display: flex; justify-content: center; gap: 24px; flex-wrap: wrap; }
.footer-links a { color: var(--text-light); text-decoration: none; font-size: 0.85rem; font-weight: 500; }

/* --- 8. ANIMATIONS --- */
.fade-up { opacity: 0; transform: translateY(24px); animation: fadeUp 0.6s ease forwards; }
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }

@media (max-width: 600px) {
  .hero { padding: 40px 16px; }
  .services, .testimonials-grid { gap: 16px; }
  .service-card { padding: 32px 20px; }
  .testimonial-card { padding: 20px; }
}
</style>
</head>
<body>

<header class="header">
  <a href="#" class="logo">
    <div class="logo-icon">
      <svg viewBox="0 0 24 24" fill="none" stroke="white" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round"><path d="M3 9l9-7 9 7v11a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z"/><polyline points="9 22 9 12 15 12 15 22"/></svg>
    </div>
    <div class="logo-text"><span>HomeFix</span>Pro</div>
  </a>
  <div class="online-badge">
    <div class="pulse-dot"></div>
    <span id="prosCount">...</span>
  </div>
</header>

<section class="hero">
  <h1 class="fade-up">Find Top-Rated Local Pros For Your Project</h1>
  <p class="fade-up" style="animation-delay: 0.1s;">Get free, no-obligation quotes from verified contractors in your area.</p>
</section>

<div class="services">
  <a href="#" class="service-card fade-up" style="animation-delay: 0.1s;" onclick="handleClick(event)">
    <div class="service-icon kitchen">
      <svg viewBox="0 0 24 24" fill="none" stroke="#E8913A" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M14.7 6.3a1 1 0 0 0 0 1.4l1.6 1.6a1 1 0 0 0 1.4 0l3.77-3.77a6 6 0 0 1-7.94 7.94l-6.91 6.91a2.12 2.12 0 0 1-3-3l6.91-6.91a6 6 0 0 1 7.94-7.94l-3.76 3.76z"/></svg>
    </div>
    <h3>Renovate Kitchen</h3>
    <p class="sub">Cabinets, Counters, Layout</p>
  </a>

  <a href="#" class="service-card fade-up" style="animation-delay: 0.2s;" onclick="handleClick(event)">
    <div class="service-icon bathroom">
      <img src="https://s.w.org/images/core/emoji/16.0.1/svg/1f6bf.svg" alt="Bathroom Icon">
    </div>
    <h3>Remodel Bathroom</h3>
    <p class="sub">Showers, Tubs, Tile</p>
  </a>

  <a href="#" class="service-card fade-up" style="animation-delay: 0.3s;" onclick="handleClick(event)">
    <div class="service-icon hvac">
      <img src="https://w7.pngwing.com/pngs/958/831/png-transparent-thermometer-computer-icons-symbol-weather-temperature-barometer-miscellaneous-winter-text-thumbnail.png" alt="HVAC Icon">
    </div>
    <h3>Fix / Replace HVAC</h3>
    <p class="sub">AC, Furnace, Repairs</p>
  </a>
</div>

<section class="steps-section">
  <h2 class="fade-up">3 Steps to Your Dream Home</h2>
  <div class="steps">
    <div class="step-card">
      <div class="step-emoji">
        <svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><path d="M16 4h2a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h2"/><rect x="8" y="2" width="8" height="4" rx="1" ry="1"/></svg>
      </div>
      <h3>1. Pick a Service</h3>
      <p>Select your project type from our verified list.</p>
    </div>
    <div class="step-card">
      <div class="step-emoji">
        <svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><path d="M21 10c0 7-9 13-9 13s-9-6-9-13a9 9 0 0 1 18 0z"/><circle cx="12" cy="10" r="3"/></svg>
      </div>
      <h3>2. Enter Your Zip</h3>
      <p>Match with the best pros in your neighborhood.</p>
    </div>
    <div class="step-card">
      <div class="step-emoji">
        <svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><path d="M12 2v20M17 5H9.5a3.5 3.5 0 0 0 0 7h5a3.5 3.5 0 0 1 0 7H6"/></svg>
      </div>
      <h3>3. Get Free Quotes</h3>
      <p>Compare competitive offers and hire the winner.</p>
    </div>
  </div>
</section>

<section class="testimonials-section">
  <h2 class="fade-up">Trusted by Homeowners</h2>
  <div class="testimonials-grid">
    <div class="testimonial-card fade-up" style="animation-delay: 0.1s;">
      <div class="stars-row">★★★★★</div>
      <p class="testimonial-text">"As a married couple buying our first fixer-upper, we were so nervous. FindHomePros connected us with a contractor who handled everything beautifully."</p>
      <div class="user-profile">
        <img src="https://images.pexels.com/photos/935948/pexels-photo-935948.jpeg?auto=compress&cs=tinysrgb&w=150" class="user-avatar" alt="The Millers">
        <div><span class="user-name">The Millers</span><span class="user-service">First Home Renovation</span></div>
      </div>
    </div>
    <div class="testimonial-card fade-up" style="animation-delay: 0.2s;">
      <div class="stars-row">★★★★★</div>
      <p class="testimonial-text">"At 60, I used this site for my HVAC unit. The tech was professional, respectful, and had the heat back on in no time."</p>
      <div class="user-profile">
        <img src="https://images.pexels.com/photos/2182970/pexels-photo-2182970.jpeg?auto=compress&cs=tinysrgb&w=150" class="user-avatar" alt="Arthur">
        <div><span class="user-name">Arthur Montgomery</span><span class="user-service">HVAC Maintenance</span></div>
      </div>
    </div>
    <div class="testimonial-card fade-up" style="animation-delay: 0.25s;">
      <div class="stars-row">★★★★★</div>
      <p class="testimonial-text">"After months of delay, I needed my AC fixed fast. The tech was incredibly knowledgeable and had it running by dinner!"</p>
      <div class="user-profile">
        <img src="https://i.pravatar.cc/150?u=laura" class="user-avatar" alt="Henry">
        <div><span class="user-name">Henry Thompson</span><span class="user-service">HVAC Repair</span></div>
      </div>
    </div>
    <div class="testimonial-card fade-up" style="animation-delay: 0.3s;">
      <div class="stars-row">★★★★★</div>
      <p class="testimonial-text">"The quotes I got were actually better than local guys. Clean work and very professional bathroom crew."</p>
      <div class="user-profile">
        <img src="https://i.pravatar.cc/150?u=marcus" class="user-avatar" alt="Marcus">
        <div><span class="user-name">Marcus Johnson</span><span class="user-service">Bathroom Remodel</span></div>
      </div>
    </div>
    <div class="testimonial-card fade-up" style="animation-delay: 0.35s;">
      <div class="stars-row">★★★★★</div>
      <p class="testimonial-text">"We wanted modern cabinets on a budget. We got three quotes here and found an affordable option we love!"</p>
      <div class="user-profile">
        <img src="https://i.pravatar.cc/150?u=diane" class="user-avatar" alt="Diane">
        <div><span class="user-name">Diane Foster</span><span class="user-service">Kitchen Renovation</span></div>
      </div>
    </div>
  </div>
</section>

<footer class="footer">
  <div class="footer-logo"><span>HomeFix</span>Pro</div>
  <p class="copy">&copy; 2026 FindHomePros Inc. All rights reserved.</p>
  <div class="footer-links">
    <a href="#">Privacy Policy</a>
    <a href="#">Terms of Service</a>
    <a href="#">Contact Support</a>
  </div>
</footer>

<script>
function updatePros() {
    const randomCount = Math.floor(Math.random() * (24 - 12 + 1)) + 12;
    const prosElement = document.getElementById('prosCount');
    if (prosElement) prosElement.textContent = randomCount + ' Pros Online Now';
}
updatePros();

const OFFER_URL = 'YOUR_OFFER_LINK_HERE';
function handleClick(e) {
  e.preventDefault();
  window.location.href = OFFER_URL;
}
</script>

</body>
</html>

Author: andrewlofland


No posts were found.