body {
    margin: 0;
    font-family: Arial, sans-serif;
}

/* HEADER */
.header {
    background: #1f3a5f;
    color: white;
    text-align: center;
    padding: 30px 20px;
}

/* HERO BANNER (UPGRADED) */
.hero {
    background: 
        linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
        url('../images/mobile-mechanic.png') no-repeat center;
    background-size: cover;
    height: 350px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    color: white;
    text-align: center;
    padding: 20px;
}

.hero h2 {
    font-size: 32px;
    margin: 0;
    max-width: 800px;
}

.hero p {
    font-size: 18px;
    max-width: 600px;
}

/* CTA */
.cta-section {
    text-align: center;
    padding: 30px 20px;
}

.cta {
    background: #28a745;
    color: white;
    padding: 14px 28px;
    text-decoration: none;
    border-radius: 50px;
    display: inline-block;
}

/* CENTER FORM BUTTON FIX */
.contact-form button {
    align-self: center;
    margin-top: 10px;
}

/* SERVICES */
.services {
    padding: 50px 20px;
    text-align: center;
}

.cards {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.card {
    background: #f4f4f4;
    padding: 25px;
    flex: 1;
    border-radius: 8px;
}

/* ABOUT */
.about {
    padding: 40px 20px;
    text-align: center;
}

/* MAP */
.map {
    margin-top: 20px;
}

/* CALL NOW */
.call-now {
    text-align: center;
    font-size: 20px;
    padding-bottom: 20px;
}

.call-now a {
    color: #1f3a5f;
    font-weight: bold;
    text-decoration: none;
}

/* CONTACT */
.demo-contact {
    padding: 50px 20px;
    text-align: center;
    background: #f9f9f9;
}

.demo-contact h2 {
    margin-bottom: 10px;
}

.demo-note {
    color: #c0392b;
    font-size: 14px;
    margin-bottom: 20px;
}

/* FORM */
.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: 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
    width: 100%;
}

/* 🔥 FOOTER FIX (3 COLUMNS) */
.footer {
    background: #111;
    color: white;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    max-width: 1000px;
    margin: auto;
    padding: 40px 20px;
    flex-wrap: wrap;
}

.footer-col {
    flex: 1;
    min-width: 250px;
    margin-bottom: 20px;
}

.footer a {
    color: #28a745;
    text-decoration: none;
}

.footer-bottom {
    text-align: center;
    padding: 15px;
    border-top: 1px solid #333;
}

/* 🔥 MOBILE FIX */
@media (max-width: 768px) {

    .cards {
        flex-direction: column;
    }

    .hero {
        height: 250px;
    }

    .hero h2 {
        font-size: 22px;
        padding: 0 10px;
    }

    .footer-container {
        flex-direction: column;
        text-align: center;
    }
}

.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;
}