/* ==========================
   RESET
========================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fff;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
}

ul {
    list-style: none;
}

/* ==========================
   GLOBAL
========================== */

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2rem;
    margin-top: 10px;
}

.eyebrow {
    color: #1790E3;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.center {
    text-align: center;
}

/* ==========================
   BUTTONS
========================== */

.btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 50px;
    transition: .3s ease;
    font-weight: bold;
}

.btn-primary {
    background: #4CAF50;
    color: #fff;
}

.btn-primary:hover {
    background: #3f9342;
}

.btn-secondary {
    background: #0e3d68;
    color: #fff;
}

.btn-secondary:hover {
    background: #092d4d;
}

/* ==========================
   TOP BAR
========================== */

.top-bar {
    background: #111;
    color: #fff;
    padding: 10px 0;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar a {
    color: #fff;
    font-weight: bold;
}

/* ==========================
   HEADER
========================== */

.site-header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,.08);
    position: sticky;
    top: 0;
    z-index: 999;
}

.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    position: relative;
}

.logo img {
    max-height: 80px;
}

.main-nav {
    display: flex;
    gap: 30px;
}

.main-nav a {
    color: #222;
    font-weight: 600;
}

.main-nav a:hover {
    color: #4CAF50;
}

.menu-toggle {
    display: none;
    background: #4CAF50;
    color: #fff;
    border: none;
    font-size: 1.8rem;
    padding: 8px 14px;
    border-radius: 8px;
    cursor: pointer;
}

@media (max-width: 900px) {

    .header-flex {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .logo img {
        max-height: 60px;
    }


    .menu-toggle {
        display: block;
        margin-left: auto;
    }

    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #fff;
        flex-direction: column;
        gap: 0;
        box-shadow: 0 8px 20px rgba(0,0,0,.15);
    }

    .main-nav.active {
        display: flex;
    }

    .main-nav a {
        padding: 16px 25px;
        border-top: 1px solid #eee;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin-left: auto;
        margin-right: auto;
    }

    .gallery-grid img {
        width: 100%;
        height: 260px;
        object-fit: cover;
        object-position: center;
    }
}


/* ==========================
   HERO
========================== */

.hero {
    background:
        linear-gradient(rgba(0,0,0,.45),
        rgba(0,0,0,.45)),
        url('../images/hero-lawn.jpg');

    background-size: cover;
    background-position: center;
    min-height: 650px;

    display: flex;
    align-items: center;
}

.hero-content {
    color: #fff;
    max-width: 700px;
}

.hero h1 {
    font-size: 4rem;
    margin: 15px 0;
}

.hero p {
    font-size: 1.2rem;
}

.hero-buttons {
    margin-top: 30px;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* ==========================
   SERVICES
========================== */

.services-preview {
    padding: 90px 0;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 30px;
}

.service-card {
    background: #fff;
    border-radius: 20px;
    padding: 35px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,.08);
    transition: .3s;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card img {
    width: 125px;
    margin: 0 auto 20px;
}

.service-card h3 {
    margin-bottom: 15px;
}

/* ==========================
   WHY US
========================== */

.why-us {
    padding: 90px 0;
    background: #f7f7f7;
}

.split-section {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: center;
}

.highlight-box {
    background: #0e3d68;
    color: #fff;
    padding: 35px;
    border-radius: 20px;
}

.highlight-box h3 {
    margin-bottom: 15px;
}

/* ==========================
   CAREERS
========================== */

.careers-callout {
    padding: 90px 0;
}

.careers-box {
    background: linear-gradient(135deg,#4CAF50,#2f7f32);
    color: white;
    padding: 50px;
    border-radius: 25px;

    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 25px;
}

/* ==========================
   GALLERY
========================== */

.gallery-preview {
    padding: 90px 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 15px;
    margin-bottom: 30px;
}

.gallery-grid img {
    border-radius: 15px;
    height: 250px;
    object-fit: cover;
}

/* ==========================
   CTA
========================== */

.cta-section {
    background: #111;
    color: white;
    text-align: center;
    padding: 90px 20px;
}

.cta-section h2 {
    margin-bottom: 20px;
    font-size: 2.5rem;
}

.cta-section p {
    margin-bottom: 25px;
}

/* ==========================
   SERVICE AREA
========================== */

.service-area {
    padding: 90px 0;
    background: #f7f7f7;
}

.service-area-box {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 40px;
    align-items: center;
}

.service-area-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.service-area-list span {
    background: #fff;
    border: 2px solid #4CAF50;
    color: #222;
    padding: 12px 18px;
    border-radius: 50px;
    font-weight: bold;
    box-shadow: 0 4px 12px rgba(0,0,0,.06);
}

@media (max-width: 900px) {
    .service-area-box {
        grid-template-columns: 1fr;
    }
}

/* ==========================
   FOOTER
========================== */

.site-footer {
    background: #1c1c1c;
    color: white;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 40px;
    padding: 60px 0;
}

.footer-logo {
    max-width: 180px;
}

.site-footer h3 {
    margin-bottom: 15px;
}

.site-footer a {
    color: #fff;
}

.facebook-link {
    display: flex;
    align-items: center;
    gap: 10px;
}

.facebook-link img {
    width: 75px;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding: 20px;
    text-align: center;
    font-size: .9rem;
}

/* ==========================
   MOBILE
========================== */

@media (max-width: 900px) {

    .header-flex {
        flex-direction: column;
        gap: 20px;
    }

    .main-nav {
        flex-wrap: wrap;
        justify-content: center;
    }

    .service-grid,
    .gallery-grid,
    .footer-grid,
    .split-section {
        grid-template-columns: 1fr;
    }

    .careers-box {
        flex-direction: column;
        text-align: center;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .top-bar .container {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}