/* =========================
   GLOBAL
   ========================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: #1f2933;
    line-height: 1.6;
    background: #f4f8f2;
}

section {
    padding: 80px 20px;
    text-align: center;
}

h1,
h2,
h3 {
    font-weight: 700;
}

h2 {
    font-size: 34px;
    margin-bottom: 20px;
}

/* =========================
   NAVBAR
   ========================= */

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: #ffffff;
    padding: 18px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    z-index: 1000;
}

.logo {
    font-size: 22px;
    font-weight: 700;
    color: #1a7f37;
}

.navbar nav a {
    margin-left: 25px;
    text-decoration: none;
    color: #1f2933;
    font-weight: 600;
    transition: .25s;
}

.navbar nav a:hover {
    color: #1a7f37;
}

/* Prevent hero hiding under navbar */
body {
    padding-top: 80px;
}

/* =========================
   HERO
   ========================= */

.hero {
    height: 85vh;
    background:
        linear-gradient(rgba(0, 0, 0, .35), rgba(0, 0, 0, .35)),
        url('https://images.unsplash.com/photo-1501004318641-b39e6451bec6');
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
}

.hero-content {
    max-width: 700px;
}

.hero h1 {
    font-size: 50px;
    margin-bottom: 15px;
}

.hero p {
    font-size: 20px;
    margin-bottom: 25px;
}

.cta-btn {
    background: #2fb344;
    color: white;
    padding: 15px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: .25s;
}

.cta-btn:hover {
    background: #249b39;
}

/* =========================
   SERVICES
   ========================= */

.services {
    background: #ffffff;
}

.service-grid {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.service-card {
    background: #f4f8f2;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.07);
    transition: .25s;
}

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

.service-card h3 {
    margin-bottom: 10px;
    color: #1a7f37;
}

/* =========================
   SERVICE AREAS
   ========================= */

.areas {
    background: #eaf5ea;
}

.area-list {
    margin-top: 25px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.area-list span {
    background: white;
    padding: 10px 18px;
    border-radius: 20px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.08);
    font-weight: 600;
}

/* =========================
   QUOTE FORM
   ========================= */

.quote {
    background: #ffffff;
}

#quote-form {
    max-width: 450px;
    margin: 30px auto 0 auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

#quote-form input,
#quote-form select,
#quote-form textarea {
    padding: 12px;
    border: 1px solid #cfd8d3;
    border-radius: 8px;
    font-size: 15px;
}

#quote-form textarea {
    min-height: 110px;
    resize: vertical;
}

#quote-form button {
    margin-top: 10px;
    padding: 14px;
    border: none;
    background: #2fb344;
    color: white;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: .25s;
}

#quote-form button:hover {
    background: #249b39;
}

/* =========================
   CONTACT
   ========================= */

.contact {
    background: #eaf5ea;
}

.contact p {
    font-size: 18px;
    margin: 6px 0;
}

/* =========================
   FOOTER
   ========================= */

.footer {
    background: #1a7f37;
    color: white;
    padding: 25px 0;
}

.footer-container {
    max-width: 1100px;
    margin: auto;
    text-align: center;
    font-weight: 500;
}

/* =========================
   MOBILE
   ========================= */

@media(max-width:768px) {

    .navbar {
        flex-direction: column;
        gap: 10px;
        padding: 15px;
    }

    .navbar nav a {
        margin: 0 10px;
    }

    .hero h1 {
        font-size: 34px;
    }

    .hero p {
        font-size: 16px;
    }

}