!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>JW Elite | Professional Cleaning Services</title>
    <style>
        :root {
            --primary: #2c3e50;
            --secondary: #3498db;
            --light: #f4f7f6;
            --white: #ffffff;
        }
        body { font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; margin: 0; color: var(--primary); background-color: var(--light); line-height: 1.6; }
        header { background: var(--white); padding: 1rem 5%; display: flex; justify-content: space-between; align-items: center; box-shadow: 0 2px 5px rgba(0,0,0,0.1); position: sticky; top: 0; z-index: 1000; }
        .logo { font-weight: bold; font-size: 1.5rem; color: var(--secondary); letter-spacing: 1px; }
        .hero { background: linear-gradient(rgba(44, 62, 80, 0.8), rgba(44, 62, 80, 0.8)), url('https://images.unsplash.com/photo-1581578731548-c64695cc6954?auto=format&fit=crop&w=1350&q=80'); background-size: cover; color: var(--white); padding: 100px 5%; text-align: center; }
        .hero h1 { font-size: 3rem; margin-bottom: 1rem; }
        .btn { background: var(--secondary); color: var(--white); padding: 12px 30px; text-decoration: none; border-radius: 5px; font-weight: bold; display: inline-block; transition: 0.3s; }
        .btn:hover { background: #2980b9; }
        .section { padding: 60px 5%; max-width: 1200px; margin: auto; }
        .grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin-top: 30px; }
        .card { background: var(--white); padding: 30px; border-radius: 10px; box-shadow: 0 4px 15px rgba(0,0,0,0.05); text-align: center; border-top: 5px solid var(--secondary); }
        .price { font-size: 2rem; color: var(--secondary); font-weight: bold; margin: 15px 0; }
        .contact-form { background: var(--white); padding: 40px; border-radius: 10px; max-width: 600px; margin: auto; }
        input, select, textarea { width: 100%; padding: 12px; margin-bottom: 20px; border: 1px solid #ddd; border-radius: 5px; box-sizing: border-box; }
        footer { background: var(--primary); color: var(--white); text-align: center; padding: 20px; margin-top: 50px; }
    </style>
</head>
<body>

<header>
    <div class="logo">JW ELITE</div>
    <nav><a href="#contact" class="btn" style="padding: 8px 20px;">Book Now</a></nav>
</header>

<section class="hero">
    <h1>A Cleaner Space, A Better Life</h1>
    <p>Elite residential and commercial cleaning services starting at $90/hr.</p>
    <br>
    <a href="#services" class="btn">View Our Services</a>
</section>

<section class="section" id="services">
    <h2 style="text-align:center;">Our Professional Services</h2>
    <div class="grid">
        <div class="card">
            <h3>Residential Cleaning</h3>
            <p>From dusting to deep sanitization, we make your home sparkle.</p>
            <div class="price">$90/hr</div>
        </div>
        <div class="card">
            <h3>Commercial / Office</h3>
            <p>Maintain a professional environment for your team and clients.</p>
            <div class="price">Custom Quote</div>
        </div>
        <div class="card">
            <h3>Move-In / Move-Out</h3>
            <p>Comprehensive deep-cleaning to prepare your new space.</p>
            <div class="price">Flat Rate Available</div>
        </div>
    </div>
</section>

<section class="section" id="contact" style="background:#eef2f3;">
    <h2 style="text-align:center;">Schedule Your Service</h2>
    <div class="contact-form">
        <form action="#">
            <input type="text" placeholder="Your Name" required>
            <input type="email" placeholder="Your Email" required>
            <select>
                <option value="residential">Residential Cleaning</option>
                <option value="commercial">Commercial Cleaning</option>
                <option value="move">Move-In/Out</option>
            </select>
            <textarea placeholder="Tell us about your space (Sq Ft, special requests...)" rows="4"></textarea>
            <button type="submit" class="btn" style="width:100%; border:none; cursor:pointer;">Request My Free Quote</button>
        </form>
    </div>
</section>

<footer>
    <p>&copy; 2026 JW Elite Cleaning Services. All Rights Reserved.</p>
</footer>

</body>
</html>