7 Flooring

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">

<title>7 Flooring | Flooring Installation Tampa FL</title>

<meta name="description" content="Top-rated flooring installation in Tampa, FL. Vinyl, tile, hardwood. Free estimate. Call now!">
<meta name="keywords" content="flooring Tampa, vinyl flooring Tampa, tile installation Tampa, hardwood flooring Tampa">

<style>
body {
    margin:0;
    font-family: Arial, sans-serif;
    background:#f5f5f5;
}

header {
    background:#000;
    color:white;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:15px 20px;
}

header h1 {
    color:#FFC300;
}

.call-top {
    background:#FF5A00;
    padding:10px 15px;
    color:white;
    text-decoration:none;
    border-radius:5px;
    font-weight:bold;
}

.hero {
    background:linear-gradient(rgba(0,0,0,0.75),rgba(0,0,0,0.75)),
    url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c');
    background-size:cover;
    color:white;
    text-align:center;
    padding:80px 20px;
}

.hero h2 {
    font-size:36px;
}

.btn {
    background:#FF5A00;
    color:white;
    padding:15px 25px;
    text-decoration:none;
    border-radius:5px;
    display:inline-block;
    margin-top:20px;
    font-weight:bold;
}

.section {
    padding:50px 20px;
    text-align:center;
}

.services {
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
    gap:20px;
}

.card {
    background:white;
    padding:25px;
    border-radius:10px;
    box-shadow:0 2px 10px rgba(0,0,0,0.1);
}

.reviews {
    background:#fff;
}

.review {
    max-width:600px;
    margin:20px auto;
    font-style:italic;
}

.cta {
    background:#000;
    color:white;
    padding:50px 20px;
}

.map iframe {
    width:100%;
    height:300px;
    border:0;
}

.footer {
    background:#111;
    color:white;
    padding:20px;
    text-align:center;
}

/* botão fixo */
.call-btn {
    position:fixed;
    bottom:0;
    width:100%;
    background:#FF5A00;
    text-align:center;
    padding:15px;
}

.call-btn a {
    color:white;
    font-size:20px;
    text-decoration:none;
    font-weight:bold;
}
</style>
</head>

<body>

<header>
    <h1>7 FLOORING</h1>
    <a href="tel:+18134491149" class="call-top">📞 Call Now</a>
</header>

<section class="hero">
    <h2>Upgrade Your Floors Today</h2>
    <p>Professional Flooring Installation in Tampa, FL</p>
    <p>Vinyl • Tile • Hardwood • Laminate</p>
    <a href="tel:+18134491149" class="btn">Get Free Estimate</a>
</section>

<section class="section">
    <h2>Our Services</h2>
    <div class="services">
        <div class="card">Vinyl Flooring Installation</div>
        <div class="card">Tile Installation</div>
        <div class="card">Hardwood Flooring</div>
        <div class="card">Laminate Flooring</div>
        <div class="card">Floor Repair & Replacement</div>
    </div>
</section>

<section class="section reviews">
    <h2>What Our Customers Say</h2>
    <div class="review">"Excellent service, very professional and great pricing. Highly recommended!"</div>
    <div class="review">"Fast, reliable and high-quality work. Will definitely hire again!"</div>
</section>

<section class="section">
    <h2>Why Choose Us</h2>
    <p>✔ Licensed & Professional</p>
    <p>✔ Competitive Pricing</p>
    <p>✔ Fast Turnaround</p>
    <p>✔ 100% Customer Satisfaction</p>
</section>

<section class="cta">
    <h2>Call Now for a Free Estimate</h2>
    <p>Speak directly with our team and get your project started today.</p>
    <a href="tel:+18134491149" class="btn">📞 Call (813) 449-1149</a>
</section>

<section class="section map">
    <h2>Our Location</h2>
    <iframe src="https://maps.google.com/maps?q=15007%20Naples%20Place%20Tampa&t=&z=13&ie=UTF8&iwloc=&output=embed"></iframe>
</section>

<footer class="footer">
    <p>7 Flooring</p>
    <p>15007 Naples Place, Tampa, FL 33624</p>
    <p>(813) 449-1149</p>
</footer>

<div class="call-btn">
    <a href="tel:+18134491149">📞 CALL NOW</a>
</div>

</body>
</html>