* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.grid-container {
    display: grid;
    min-height: 100vh;
    grid-template-columns: repeat(12, 1fr);
}

.item {
    padding: 20px;
}

.full-width {
    grid-column: span 12;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 35px;
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: #68923d;
}

.header a {
    color: white;
    text-decoration: none;
    margin-left: 20px;
    font-weight: 600;
}

.header a:hover {
    text-decoration: underline;
}

.logo-container {
    width: 140px;
    height: 49px;
    overflow: hidden;
}

.logo-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
/* HERO SECTION */
.hero {
    padding: 0px;
    margin-bottom: 15rem;
}

.hero-grid {
    display: grid;
    width: 100%;
    grid-template-columns: repeat(4,1fr);
}

.hero-card {
    min-height: 500px;
    grid-column: span 4;
    background:
        linear-gradient(to bottom, rgba(0, 0, 0, 0.579),
        rgba(255, 255, 255, 0) ,rgba(0, 0, 0, 0)),
        url("Images/lawn-1.jpg");
    background-size: cover;
    background-position: center;
    color: white;
    padding: 3rem;
    clip-path: polygon(0 0, 100% 0, 100% 75%, 25% 100%, 0 75%);
}
.hero-card p {
    padding-bottom: 1rem;
}
.btn {
    background-color: white;
    padding: 1rem 2rem;
    border-radius: .5rem;
    color: #67923D;
    text-decoration: none;
}
.btn:hover {
    background-color: #577b33;
    color: white;
}

/* SERVICES SECTION */
.services-section {
    background-color: #f3efe6;
    padding: 5rem 0 4rem;
}

.services-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 0 1.5rem;
}

.eyebrow {
    margin: 0 0 0.75rem;
    font-size: 0.85rem;
    letter-spacing: 0.2rem;
    color: #7a756d;
}

.services-header h2 {
    margin: 0;
    font-size: 2.5rem;
    color: #2f2f2f;
    font-weight: 600;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    max-width: 1400px;
    margin: 0 auto;
    gap: 0;
}

.service-card {
    background-color: #f3efe6;
    text-align: center;
    padding: 4rem 2.5rem 3rem;
    border-right: 1px solid #d8d2c8;
    border-bottom: 1px solid #d8d2c8;
}

.service-card:nth-child(3n) {
    border-right: none;
}

.service-card:nth-child(n + 4) {
    border-bottom: none;
}

.service-card img {
    width: 52px;
    height: 52px;
    object-fit: contain;
    margin-bottom: 2rem;
}

.service-card h3 {
    margin: 0 0 1rem;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 1.2rem;
    line-height: 1.15;
    color: #2f2f2f;
}

.service-card p {
    margin: 0 auto;
    max-width: 320px;
    font-size: 0.95rem;
    line-height: 1.8;
    color: #6b6b6b;
}

@media (max-width: 900px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-card:nth-child(3n) {
        border-right: 1px solid #d8d2c8;
    }

    .service-card:nth-child(2n) {
        border-right: none;
    }

    .service-card:nth-child(n + 5) {
        border-bottom: none;
    }
}

@media (max-width: 600px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        border-right: none;
        border-bottom: 1px solid #d8d2c8;
        padding: 3rem 1.5rem;
    }

    .service-card:last-child {
        border-bottom: none;
    }

    .services-header h2 {
        font-size: 2rem;
    }
}

/* FOOTER */
.footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    padding: 2.5rem 3.5rem;
    background-color: #ffffff;
}

.footer-logo {
    flex-shrink: 0;
}

.footer-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex: 1;
    gap: 1rem;
}

.footer-phone {
    color: #8b552d;
    font-size: 1.75rem;
    font-weight: 700;
    text-decoration: none;
}

.footer-phone:hover {
    text-decoration: underline;
}

.footer-center p {
    margin: 0;
    color: #9c9c9c;
    font-size: 0.95rem;
    letter-spacing: 0.08rem;
}

.social-icons {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-shrink: 0;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.social-icons img {
    width: 28px;
    height: 28px;
    object-fit: contain;
    opacity: 0.6;
}

.social-icons img:hover {
    opacity: 1;
}

@media (max-width: 700px) {
    .footer {
        flex-direction: column;
        text-align: center;
        padding: 2rem 1.5rem;
    }

    .footer-center {
        order: 2;
    }

    .social-icons {
        order: 3;
    }
}