body {
    margin: 0;
    font-family: Arial, sans-serif;
}

/* HEADER */
.header {
    background: #1f3a5f;
    color: white;
    text-align: center;
    padding: 20px;
}

/* HERO BANNER */
.hero {
    background: url('../images/cleaning.png') no-repeat center;
    background-size: cover;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.hero h2 {
    font-size: 18px;
    margin: 0;
}

/* CTA */
.cta-section {
    text-align: center;
    padding: 20px;
}

.cta {
    background: #28a745;
    color: white;
    padding: 12px 20px;
    text-decoration: none;
    border-radius: 50px;
}

/* SERVICES */
.services {
    padding: 40px 20px;
    text-align: center;
}

.cards {
    display: flex;
    gap: 20px;
}

.card {
    background: #f4f4f4;
    padding: 20px;
    flex: 1;
}

/* ABOUT */
.about {
    padding: 30px 20px;
    text-align: center;
}

/* FOOTER */
.footer {
    background: #111;
    color: white;
    text-align: center;
    padding: 20px;
}

/* 🔥 MOBILE FIX (IMPORTANT) */
@media (max-width: 768px) {

    .cards {
        flex-direction: column;
    }

    .hero {
        height: 70px;
    }

    .hero h2 {
        font-size: 16px;
        padding: 0 10px;
    }
}

.call-now {
    text-align: center;
    font-size: 18px;
    padding-bottom: 20px;
}

.call-now a {
    color: #1f3a5f;
    font-weight: bold;
    text-decoration: none;
}

.demo-contact {
    padding: 40px 20px;
    text-align: center;
    background: #f9f9f9;
}

.demo-contact h2 {
    margin-bottom: 10px;
}

.demo-note {
    color: #c0392b;
    font-size: 14px;
    margin-bottom: 20px;
}

/* FORM FIXES */
.contact-form {
    max-width: 500px;
    margin: auto;
    display: flex;
    flex-direction: column;
    text-align: left;
}

.contact-form label {
    margin-bottom: 5px;
    font-weight: bold;
}

.contact-form input,
.contact-form textarea {
    margin-bottom: 15px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    width: 100%;
}

.site-credit {
    margin-top: 10px;
    font-size: 14px;
    color: #ccc;
}

.site-credit a {
    color: #28a745;
    text-decoration: none;
    font-weight: bold;
}

.site-credit a:hover {
    text-decoration: underline;
}