:root {
    /* CHANGED: Darker than before so white text is readable (Fixes Accessibility Score) */
    --primary-color: #2e7d32;    

    /* CHANGED: Even darker now, so the hover effect still pops */
    --dark-green: #1b5e20;       
    
    --text-dark: #333333;
    --text-light: #666666;
    --white: #ffffff;
    --light-bg: #f4f9f4;
}


/* --- RESET & BASICS --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
}

h1, h2, h3 {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    color: var(--text-dark);
}

a { text-decoration: none; }
ul { list-style: none; }

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- NAVBAR --- */
.navbar {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-green);
    font-family: 'Oswald', sans-serif;
}

.nav-links { display: flex; gap: 20px; align-items: center; }
.nav-links a { color: var(--text-dark); font-weight: 600; font-size: 0.9rem; }
.nav-links a:hover { color: var(--primary-color); }

.btn-nav {
    background: var(--primary-color);
    color: var(--white) !important;
    padding: 8px 15px;
    border-radius: 5px;
}

.hamburger { display: none; font-size: 1.5rem; cursor: pointer; }

/* --- HERO SECTION --- */
.hero {
    /* Placeholder background - REPLACE THIS URL with a real grass image */
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('hero-bg.webp');
    background-size: cover;
    background-position: center;
    height: 80vh; /* 80% of screen height */
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--white);
}

.hero-content h1 { font-size: 3.5rem; margin-bottom: 20px; color: var(--white); }
.highlight { color: var(--primary-color); }
.hero-content p { font-size: 1.2rem; margin-bottom: 30px; max-width: 600px; margin-left: auto; margin-right: auto; }

/* --- BUTTONS --- */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 600;
    transition: 0.3s;
}

.btn-primary { background: var(--primary-color); color: var(--white); }
.btn-primary:hover { background: var(--dark-green); }

.btn-outline { border: 2px solid var(--white); color: var(--white); margin-left: 10px; }
.btn-outline:hover { background: var(--white); color: var(--dark-green); }

/* --- SECTIONS --- */
.section { padding: 60px 0; }
.bg-light { background-color: var(--light-bg); }

.section-title { text-align: center; margin-bottom: 50px; }
.section-title h2 { font-size: 2.5rem; margin-bottom: 10px; }
.line { width: 60px; height: 4px; background: var(--primary-color); margin: 0 auto; }

/* --- SERVICES GRID --- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--white);
    padding: 30px;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}

.service-card:hover { transform: translateY(-5px); }
.service-icon { font-size: 3rem; color: var(--primary-color); margin-bottom: 20px; }
.service-card h3 { margin-bottom: 15px; }

/* --- SPLIT SECTION (About) --- */
.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.split-image img { width: 100%; border-radius: 8px; box-shadow: 0 10px 20px rgba(0,0,0,0.1); }
.feature-list { margin: 20px 0; }
.feature-list li { margin-bottom: 10px; font-size: 1.1rem; }
.feature-list i { color: var(--primary-color); margin-right: 10px; }

/* --- CONTACT CTA --- */
.cta-banner {
    background: var(--dark-green);
    color: var(--white);
    text-align: center;
    padding: 50px 0;
}

.cta-banner h2 { color: var(--white); margin-bottom: 10px; }
.simple-form {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.simple-form input {
    padding: 12px;
    border: none;
    border-radius: 4px;
    min-width: 250px;
}

.btn-dark { background: #1b5e20; color: white; border: none; cursor: pointer; }

/* --- FOOTER --- */
footer { background: #222; color: #fff; padding: 20px 0; text-align: center; }
.footer-content { display: flex; justify-content: space-between; align-items: center; }
.socials a { color: white; margin-left: 15px; font-size: 1.2rem; }

/* --- MOBILE RESPONSIVE --- */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        background: var(--white);
        position: absolute;
        top: 70px;
        right: 0;
        width: 100%;
        padding: 20px;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    }
    .nav-links.active { display: flex; }
    .hamburger { display: block; }
    
    .hero-content h1 { font-size: 2.5rem; }
    .split-layout { grid-template-columns: 1fr; }
    .split-image { order: -1; } /* Image on top on mobile */
}