/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

a {
    color: #28a745;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Utility classes */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    background-color: #28a745;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #218838;
    text-decoration: none;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('hero-bg.jpg') no-repeat center center/cover;
    color: white;
    padding: 60px 20px;
    text-align: center;
}

.hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

/* Quote Form */
.quote-form {
    background-color: rgba(255, 255, 255, 0.9);
    padding: 30px;
    border-radius: 10px;
    margin: 30px auto;
    max-width: 500px;
    text-align: left;
    color: #333;
}

.quote-form h2 {
    margin-bottom: 20px;
    color: #28a745;
}

.quote-form input,
.quote-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
}

.quote-form button {
    width: 100%;
    padding: 15px;
    background-color: #28a745;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.quote-form button:hover {
    background-color: #218838;
}

/* Trust Signals */
.trust-signals {
    margin-top: 30px;
}

.phone-number {
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
    display: block;
    margin-bottom: 10px;
}

.trust-signals p {
    margin-bottom: 10px;
}

.badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.badges span {
    background-color: rgba(255, 255, 255, 0.2);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
}

/* Services Section */
.services {
    background-color: white;
    padding: 60px 20px;
    text-align: center;
}

.services h2 {
    margin-bottom: 30px;
    color: #28a745;
}

.service-primary,
.services-secondary {
    margin-bottom: 40px;
}

.service-primary h3,
.services-secondary h3 {
    margin-bottom: 20px;
    color: #28a745;
}

.service-primary ul,
.services-secondary ul {
    list-style: disc;
    text-align: left;
    max-width: 600px;
    margin: 0 auto 20px;
    padding-left: 20px;
}

/* Why Choose Us Section */
.why-choose-us {
    background-color: #f8f9fa;
    padding: 60px 20px;
    text-align: center;
}

.why-choose-us h2 {
    margin-bottom: 30px;
    color: #28a745;
}

.features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.feature {
    flex: 1 1 250px;
    max-width: 300px;
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.feature h3 {
    margin-bottom: 15px;
    color: #28a745;
}

/* Testimonials Section */
.testimonials {
    background-color: white;
    padding: 60px 20px;
    text-align: center;
}

.testimonials h2 {
    margin-bottom: 30px;
    color: #28a745;
}

.testimonial-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
}

.testimonial {
    flex: 1 1 300px;
    max-width: 400px;
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    text-align: left;
}

.testimonial p:last-child {
    font-weight: bold;
    margin-top: 10px;
}

/* Gallery */
.gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.gallery-item {
    flex: 1 1 200px;
    height: 200px;
    background-color: #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-weight: bold;
}

/* Process Section */
.process {
    background-color: #f8f9fa;
    padding: 60px 20px;
    text-align: center;
}

.process h2 {
    margin-bottom: 30px;
    color: #28a745;
}

.steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.step {
    flex: 1 1 200px;
    max-width: 250px;
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.step h3 {
    margin-bottom: 15px;
    color: #28a745;
}

/* Final CTA Section */
.final-cta {
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('cta-bg.jpg') no-repeat center center/cover;
    color: white;
    padding: 60px 20px;
    text-align: center;
}

.final-cta h2 {
    margin-bottom: 30px;
    font-size: 2rem;
}

.condensed {
    max-width: 400px;
    margin: 30px auto;
}

.contact-info {
    margin-top: 30px;
}

.contact-info .phone-number {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

/* Footer */
footer {
    background-color: #343a40;
    color: white;
    text-align: center;
    padding: 30px 20px;
}

footer a {
    color: #28a745;
}

footer p {
    margin-bottom: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .quote-form {
        padding: 20px;
    }

    .badges {
        flex-direction: column;
        align-items: center;
    }

    .features,
    .testimonial-grid,
    .steps {
        flex-direction: column;
        align-items: center;
    }

    .feature,
    .testimonial,
    .step {
        width: 100%;
        max-width: 100%;
    }

    .final-cta h2 {
        font-size: 1.5rem;
    }
}