:root {
    --forest-dark: #142416;     
    --moss-green: #3b663b;      
    --accent-light: #d8f3dc;    
    --text-dark: #1c2a1d;       
    --text-muted: #556b58;     
    --white: #ffffff;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Figtree', sans-serif;
}

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

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

html { scroll-behavior: smooth; }

/* Navigation */
header {
    position: fixed;
    width: 100%;
    top: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}

.logo { display: flex; align-items: center; gap: 0.5rem; }
.logo-icon { font-size: 1.5rem; }
.logo-text { display: flex; flex-direction: column; }
.logo-text strong {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--forest-dark);
    line-height: 1;
}
.logo-sub {
    font-size: 0.65rem;
    letter-spacing: 2px;
    color: var(--moss-green);
    font-weight: 700;
    margin-top: 2px;
}

.nav-links { display: flex; list-style: none; gap: 2.5rem; }
.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.2s;
}
.nav-links a:hover { color: var(--moss-green); }

/* Buttons */
.btn {
    display: inline-block;
    font-family: var(--font-body);
    font-weight: 600;
    text-decoration: none;
    padding: 0.8rem 1.8rem;
    border-radius: 100px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
}

.btn-nav {
    background-color: var(--forest-dark);
    color: var(--white);
    padding: 0.6rem 1.4rem;
    font-size: 0.9rem;
}
.btn-nav:hover { background-color: var(--moss-green); }

.btn-primary { background-color: var(--white); color: var(--forest-dark); }
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.btn-secondary {
    background-color: rgba(255, 255, 255, 0.12);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.25);
    margin-left: 1rem;
}
.btn-secondary:hover { background-color: rgba(255, 255, 255, 0.2); }

/* Hero Section */
/* Hero Section */
.hero {
    position: relative;
    min-height: 90vh;
    /* Updated background image: Professional lawn mowing action */
    background: url('LawnCare.jpeg') center/cover no-repeat;
    display: flex;
    align-items: center;
    color: var(--white);
    padding: 8rem 2rem 4rem 2rem;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    /* Slightly reduced the opacity of the gradient so the lawn mower is more visible! */
    background: linear-gradient(135deg, rgba(20, 36, 22, 0.85) 30%, rgba(20, 36, 22, 0.4) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 0.4rem 1rem;
    border-radius: 100px;
    font-size: 0.8rem;
    letter-spacing: 1px;
    font-weight: 600;
    margin-bottom: 2rem;
}

.status-badge .dot {
    width: 8px; height: 8px;
    background-color: #52b788;
    border-radius: 50%;
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 650px;
    margin: 0 auto 2.5rem auto;
}

/* Services */
.services { padding: 7rem 2rem; background-color: #fcfdfe; }
.services-container { max-width: 1200px; margin: 0 auto; }

.section-tag {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--moss-green);
    margin-bottom: 0.5rem;
}
.light-tag { color: var(--accent-light); }

.services-header h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--forest-dark);
    margin-bottom: 4rem;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem 2rem;
}

.service-card { padding: 1rem; }
.card-icon { font-size: 1.8rem; display: block; margin-bottom: 1rem; }
.service-card h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--forest-dark);
    margin-bottom: 0.5rem;
    font-weight: 700;
}
.service-card p { color: var(--text-muted); font-size: 0.95rem; }

/* Quote & Contact Section (Side-by-side) */
.quote-contact {
    background-color: var(--forest-dark);
    color: var(--white);
    padding: 7rem 2rem;
}

.quote-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.form-panel h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

form { display: flex; flex-direction: column; gap: 1.2rem; }
.form-group { display: flex; gap: 1.2rem; }
.form-group input { flex: 1; }

input, select, textarea {
    padding: 1.1rem 1.5rem;
    background-color: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 1rem;
    width: 100%;
}

input::placeholder, textarea::placeholder { color: rgba(255, 255, 255, 0.4); }
input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.4);
}
select option { background-color: var(--forest-dark); color: var(--white); }

.btn-submit {
    background-color: var(--white);
    color: var(--forest-dark);
    margin-top: 1rem;
    width: 100%;
    padding: 1.1rem;
}
.btn-submit:hover { background-color: var(--accent-light); }

.contact-info {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 3rem;
    border-radius: 24px;
}

.contact-info h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.contact-info p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
}

.info-list { display: flex; flex-direction: column; gap: 1.5rem; }
.info-item { display: flex; align-items: flex-start; gap: 1rem; }
.info-icon {
    font-size: 1.2rem;
    background: rgba(255, 255, 255, 0.08);
    padding: 0.6rem;
    border-radius: 8px;
}
.info-item strong { display: block; font-family: var(--font-heading); color: var(--white); }
.info-item p { margin-bottom: 0; color: rgba(255, 255, 255, 0.6); font-size: 0.95rem; }

/* Footer */
footer {
    background-color: #0a140b;
    padding: 2rem;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.05);
}
footer p { font-size: 0.85rem; color: rgba(255, 255, 255, 0.4); }

/* Responsive adjustments */
@media (max-width: 968px) {
    .quote-container { grid-template-columns: 1fr; gap: 3rem; }
    .hero h1 { font-size: 3rem; }
}

@media (max-width: 768px) {
    .nav-links, .btn-nav { display: none; }
    .hero h1 { font-size: 2.5rem; }
    .form-group { flex-direction: column; gap: 1.2rem; }
    .hero-actions { display: flex; flex-direction: column; gap: 1rem; }
    .btn-secondary { margin-left: 0; }
}