body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: #f4f4f4;
    color: #222;
}

.hero {
    background: url('img/header-img.jpg') center center/cover no-repeat;
    height: 60vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    text-align: center;
}

.hero-overlay {
    background: rgba(0, 0, 0, 0.6);
    padding: 40px;
    border-radius: 6px;
}

.hero h1 {
    color: #fff;
    font-size: 42px;
    margin: 0 0 10px;
}

.hero p {
    color: #eee;
    margin-bottom: 20px;
}

.cta-btn {
    background: #cc1f1f;
    color: #fff;
    padding: 12px 24px;
    font-size: 18px;
    text-decoration: none;
    border-radius: 4px;
    transition: background .2s;
}

.cta-btn:hover {
    background: #a91818;
}

.intro {
    max-width: 900px;
    margin: 40px auto;
    padding: 0 20px;
    text-align: center;
}

.intro h2 {
    font-size: 30px;
    margin-bottom: 20px;
}

.services {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    padding: 40px 20px;
}

.service-card {
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    width: 420px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.service-card h3 {
    margin-top: 0;
}

.subtitle {
    font-weight: bold;
    margin: 10px 0;
}

.service-areas {
    margin-top: 15px;
    font-weight: bold;
}

.email-link {
    display: inline-block;
    margin-top: 15px;
    color: #cc1f1f;
    font-weight: bold;
    text-decoration: none;
}

.email-link:hover {
    text-decoration: underline;
}

.contact {
    background: #222;
    color: #fff;
    padding: 40px 20px;
    text-align: center;
}

.contact a {
    color: #ffce00;
    text-decoration: none;
}

footer {
    background: #111;
    color: #888;
    text-align: center;
    padding: 15px 0;
    font-size: 14px;
}

/* Contact Form Section */
.contact-form-section {
    max-width: 800px;
    margin: 40px auto;
    padding: 40px 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    text-align: center;
}

.contact-form-section h2 {
    font-size: 28px;
    margin-bottom: 15px;
}

.contact-form {
    margin-top: 25px;
    text-align: left;
}

.form-row {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.form-row label {
    font-size: 16px;
    margin-bottom: 6px;
    font-weight: bold;
}

.form-row input,
.form-row textarea {
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
}

.form-row input:focus,
.form-row textarea:focus {
    border-color: #cc1f1f;
    outline: none;
}

.submit-btn {
    display: inline-block;
    background: #cc1f1f;
    color: #fff;
    padding: 14px 28px;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    cursor: pointer;
    transition: background .2s;
}

.submit-btn:hover {
    background: #a91818;
}

#formStatus {
  margin-top: 10px;
  font-size: 0.95rem;
}
button[disabled] {
  opacity: 0.6;
  cursor: not-allowed;
}


/* Mobile adjustments */
@media (max-width: 768px) {
    .hero {
        height: 50vh;
    }

    .service-card {
        width: 100 percent;
        max-width: 500px;
    }

    .contact-form-section {
        padding: 25px 15px;
    }
}
