:root {
    /* Color Palette - Derived from Logo */
    --primary-green: #1e4d3b;
    /* Dark Green from "Zimmies" */
    --secondary-green: #4a7c44;
    /* Grass Green */
    --path-brown: #6d4c41;
    /* Brown from dirt path and "Lawn & More" */
    --accent-green: #83b355;
    /* Light Grass Highlight */
    --stone-gray: #f9f9f7;
    --white: #ffffff;
    --cream-bg: #fdfaf5;
    /* Subtle cream background from logo texture */
    --dark-text: #2d3436;
    --light-text: #ffffff;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    --transition: cubic-bezier(0.4, 0, 0.2, 1) 0.3s;
}

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

body {
    font-family: 'Inter', sans-serif;
    color: var(--dark-text);
    line-height: 1.8;
    /* Increased line height for better readability/whitespace */
    background-color: var(--cream-bg);
    overflow-x: hidden;
}

h1,
h2,
h3 {
    color: var(--primary-green);
    font-weight: 700;
    line-height: 1.2;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Header & Conversions */
header {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    padding: 0.75rem 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.02);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo img {
    height: 85px;
    width: auto;
    display: block;
    transition: var(--transition);
    transform: scale(2);
    transform-origin: left center;
    margin-right: 85px;
}

.brand-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.brand-name {
    display: block;
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary-green);
    line-height: 1.1;
    letter-spacing: -0.5px;
}

.brand-tagline {
    display: block;
    font-size: 0.85rem;
    color: var(--path-brown);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 2px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 3rem;
    align-items: center;
}

nav a {
    text-decoration: none;
    color: var(--dark-text);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
}

nav a:hover {
    color: var(--primary-green);
}

.btn {
    display: inline-block;
    padding: 1.1rem 2.8rem;
    /* More padding for a premium feel */
    background-color: var(--primary-green);
    color: var(--white);
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    text-align: center;
    letter-spacing: 0.5px;
}

.btn:hover {
    background-color: var(--secondary-green);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(30, 77, 59, 0.2);
}

/* Hero Section */
.hero {
    height: 90vh;
    /* Taller hero */
    min-height: 700px;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5)), url('assets/IMG_5054.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    color: var(--white);
    text-align: center;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    padding-bottom: 50px;
    /* Offset for visual balance */
}

.hero h1 {
    font-size: 4.5rem;
    /* Larger hero text */
    color: var(--white);
    margin-bottom: 2.5rem;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 3.5rem;
    font-weight: 400;
    opacity: 0.95;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* The Zimmie Difference Section */
.protocol {
    padding: 12rem 0;
    background: var(--white);
}

.protocol-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 5rem;
    margin-top: 6rem;
}

.protocol-step {
    text-align: center;
    padding: 2.5rem;
    background: var(--cream-bg);
    border-radius: 12px;
    transition: var(--transition);
}

.protocol-step:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
}

.protocol-step h3 {
    margin-bottom: 1.5rem;
    font-size: 1.6rem;
}

.protocol-step .icon-circle {
    width: 90px;
    height: 90px;
    background: var(--white);
    color: var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2.5rem;
    font-size: 1.8rem;
    font-weight: 700;
    border: 3px solid var(--path-brown);
    /* Path Brown accent */
    box-shadow: var(--shadow);
}

/* Services */
.services {
    padding: 12rem 0;
    background-color: var(--white);
}

.section-title {
    text-align: center;
    font-size: 3.2rem;
    margin-bottom: 1.5rem;
}

.section-subtitle {
    text-align: center;
    color: var(--path-brown);
    /* Brown subtitle */
    font-weight: 700;
    margin-bottom: 6rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 1rem;
}

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

.service-card {
    background: var(--white);
    padding: 4.5rem 3.5rem;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.03);
    transition: var(--transition);
    border-bottom: 5px solid var(--cream-bg);
}

.service-card:hover {
    transform: translateY(-15px);
    border-bottom: 5px solid var(--primary-green);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
}

.service-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

/* Gallery */
.gallery {
    padding: 12rem 0;
    background-color: var(--cream-bg);
}

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

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    height: 450px;
    box-shadow: var(--shadow);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Service Area */
.service-area {
    padding: 10rem 0;
    background-color: var(--primary-green);
    /* Use Dark Green for contrast */
    color: var(--white);
    text-align: center;
}

.service-area h2 {
    color: var(--white);
    margin-bottom: 3rem;
    font-size: 3rem;
}

.cities-list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.city-pill {
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem 2rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    font-size: 1.2rem;
    font-weight: 500;
    transition: var(--transition);
}

.city-pill:hover {
    background: var(--path-brown);
    border-color: var(--path-brown);
}

/* Footer */
footer {
    background: #121212;
    color: var(--white);
    padding: 5rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 4rem;
    margin-bottom: 4rem;
}

@media (max-width: 900px) {
    .hero h1 {
        font-size: 3rem;
    }

    nav ul {
        display: none;
    }
}