/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    color: #333;
    background-color: #FAFAFA;
    line-height: 1.6;
}

/* Hero Section */
#hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
}

.background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(65%);
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
    padding: 20px;
    text-align: center;
}

h1 {
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

p {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.highlight {
    font-size: 1rem;
    font-weight: bold;
    color: #FAD02E;
    margin-bottom: 1rem;
}

.cta-button {
    background-color: #C82333;
    color: white;
    padding: 0.8rem 1.5rem;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    font-size: 1rem;
    transition: background-color 0.3s ease-in-out;
}

.cta-button:hover {
    background-color: #A61E28;
    transform: scale(1.05);
}

.limited-offer {
    font-size: 0.9rem;
    color: #FAD02E;
    font-weight: bold;
    margin-top: 0.8rem;
}

.phone-number {
    margin-top: 0.5rem;
    font-size: 0.9rem;
    color: white;
}

.phone-number a {
    color: #FAD02E;
    font-weight: bold;
    text-decoration: none;
}

.phone-number a:hover {
    text-decoration: underline;
}

/* Services Section with Packages */
#services {
    padding: 2rem 1rem;
    background-color: #F3F3F3;
    text-align: center;
}

.services-content h2 {
    font-size: 2rem;
    color: #2E8B57;
    margin-bottom: 1rem;
}

.service-packages {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.service {
    background-color: #FFF;
    border-radius: 8px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    text-align: center;
    transition: transform 0.3s ease-in-out;
    max-width: 600px;
    margin: auto;
}

.service:hover {
    transform: translateY(-5px);
}

.service h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.starting-price {
    font-size: 1.2rem;
    font-weight: bold;
    color: #C82333;
    margin-top: 0.5rem;
}

.additional-info {
    font-size: 0.9rem;
    color: #555;
    margin-top: 1rem;
    font-style: italic;
}

/* Quote Form Section */
#quote-form {
    padding: 2rem 1rem;
    background-color: #FAFAFA;
    text-align: center;
}

.quote-content h2 {
    font-size: 2rem;
    color: #2E8B57;
    margin-bottom: 1rem;
}

form {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 500px;
    margin: auto;
}

label {
    font-size: 1rem;
    color: #333;
    margin-bottom: 0.5rem;
}

input[type="text"],
input[type="tel"] {
    padding: 0.8rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
    margin-bottom: 1rem;
    width: 100%;
}

button[type="submit"] {
    background-color: #2E8B57;
    color: white;
    padding: 0.8rem;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease-in-out;
}

button[type="submit"]:hover {
    background-color: #246942;
    transform: scale(1.05);
}

/* Footer Section */
footer {
    background-color: #333;
    color: white;
    padding: 1rem;
    text-align: center;
    font-size: 0.9rem;
}

footer a {
    color: #FAD02E;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* Responsive Styling for Mobile Devices */
@media (max-width: 768px) {
    /* Hero Section */
    #hero {
        height: 80vh;
        padding: 0 20px;
    }

    h1 {
        font-size: 2.5rem;
    }

    .hero-content {
        padding: 10px;
    }

    .cta-button {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }

    /* Services Section */
    #services {
        padding: 2rem 1rem;
    }

    .service-packages {
        flex-direction: column;
        gap: 1rem;
    }

    .service {
        max-width: 100%;
        margin: 0 auto;
        padding: 1rem;
    }

    /* Quote Form Section */
    #quote-form {
        padding: 2rem 1rem;
    }

    form {
        width: 100%;
    }

    input[type="text"],
    input[type="tel"] {
        font-size: 1rem;
        padding: 0.7rem;
    }

    button[type="submit"] {
        font-size: 0.9rem;
        padding: 0.7rem 1.2rem;
    }

    /* Footer */
    footer {
        font-size: 0.8rem;
        padding: 1rem;
    }
}

