@charset "UTF-8";
/* CSS Document */

/* --- RESET & GLOBAL STYLES --- */
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        body {
            font-family: 'Montserrat', sans-serif;
            color: #1a1a1a;
            background-color: #ffffff;
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
        }

        /* --- CONTAINER --- */
        .container {
            max-width: 1100px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* --- HEADER NAVIGATION --- */
        header {
            padding: 20px 0;
            background-color: #ffffff;
        }
        .nav-wrapper {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo-area {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        /* Custom clean text logo vector approximation */
        .logo-text {
            font-weight: 700;
            font-size: 28px;
            letter-spacing: -1px;
            color: #0b3d20; 
        }
        .logo-subtext {
            font-size: 10px;
            text-transform: uppercase;
            letter-spacing: 2px;
            display: block;
            color: #4a4a4a;
            font-weight: 600;
            margin-top: -5px;
        }
        .contact-right {
            display: flex;
            align-items: center;
            gap: 20px;
        }
        .phone-link {
            font-weight: 700;
            font-size: 22px;
            color: #1a1a1a;
            text-decoration: none;
        }
        .btn-call {
            background-color: #0b3d20;
            color: #ffffff;
            padding: 10px 20px;
            border-radius: 4px;
            text-decoration: none;
            font-weight: 600;
            text-transform: uppercase;
            font-size: 14px;
            letter-spacing: 1px;
            transition: background-color 0.2s ease;
        }
        .btn-call:hover {
            background-color: #125c32;
        }
		
		/* --- PREMIUM NAVIGATION HEADER STYLES --- */
.main-nav-header {
    background-color: #ffffff;
    border-bottom: 1px solid #f0f0f0;
    padding: 15px 20px;
    position: sticky;
    top: 0;
    z-index: 1000; /* Keeps it locked cleanly at the top if they scroll */
}
.nav-container {
    max-width: 1050px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.nav-logo {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 24px;
    color: #0b3d20;
    text-decoration: none;
    letter-spacing: -1px;
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 15px;
}
.nav-btn {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    color: #4a4a4a;
    padding: 10px 16px;
    border-radius: 4px;
    transition: all 0.2s ease;
}
.nav-btn:hover {
    color: #0b3d20;
}

/* Subtle accent button style for the contact link */
.nav-btn-outline {
    border: 2px solid #0b3d20;
    color: #0b3d20;
    padding: 8px 16px;
}
.nav-btn-outline:hover {
    background-color: #0b3d20;
    color: #ffffff;
}

/* Mobile adjustments to keep it compact on small screens */
@media (max-width: 480px) {
    .nav-container {
        padding: 0;
    }
    .nav-logo {
        font-size: 20px;
    }
    .nav-btn {
        font-size: 11px;
        padding: 8px 12px;
    }
    .nav-btn-outline {
        padding: 6px 12px;
    }
}

        /* --- HERO HERO SECTION --- */
        .hero {
            padding: 40px 0 60px 0;
            text-align: center;
        }
        .hero h1 {
            font-size: 38px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: -0.5px;
            color: #1a1a1a;
            max-width: 800px;
            margin: 0 auto 10px auto;
        }
        .hero p.location {
            font-size: 24px;
            color: #4a4a4a;
            margin-bottom: 30px;
            font-weight: 400;
        }

        /* --- THE STRIPED LAWN IMAGE HOLDER --- */
       .lawn-display {
    width: 100%;
    max-width: 100%;
    height: auto;
    aspect-ratio: 16 / 9; /* Or adjust to match your logo's native width-to-height ratio */
    background: url('images/lawn.jpeg?q=80&w=1200&auto=format&fit=crop') center center no-repeat;
    background-size: contain; /* Changes from 'cover' to 'contain' so nothing gets cut off */
    margin-bottom: 40px;
    border-radius: 2px;
}

        /* --- CONVERSION LEAD FORM --- */
        .quote-form-container {
        border: 3px solid #0b3d20;
        padding: 20px;
        border-radius: 6px;
        max-width: 850px;
        margin: 0 auto 40px auto;
        background-color: #ffffff;
    }
    .quote-form-split {
        display: grid;
        grid-template-columns: 2fr 1fr 0.5fr 1fr; /* Custom widths for Street, City, State, Button */
        gap: 12px;
        align-items: center;
    }
    .form-input {
        width: 100%;
        padding: 14px 16px;
        border: 1px solid #cccccc;
        border-radius: 4px;
        font-family: 'Montserrat', sans-serif;
        font-size: 16px;
        color: #1a1a1a;
        outline: none;
    }
    .form-input:focus {
        border-color: #0b3d20;
    }
    .btn-submit-split {
        background-color: #0b3d20;
        color: #ffffff;
        border: none;
        border-radius: 4px;
        font-family: 'Montserrat', sans-serif;
        font-size: 14px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        cursor: pointer;
        padding: 16px 10px;
        transition: background-color 0.2s ease;
        white-space: nowrap;
    }
    .btn-submit-split:hover {
        background-color: #125c32;
    }
	
	/* --- NEW TOGGLE STYLES --- */
    .contact-tabs {
        display: flex;
        justify-content: center;
        gap: 10px;
        margin-bottom: 20px;
    }
    .tab-btn {
        background: #f0f0f0;
        border: 1px solid #cccccc;
        padding: 8px 18px;
        font-family: 'Montserrat', sans-serif;
        font-size: 13px;
        font-weight: 600;
        text-transform: uppercase;
        border-radius: 20px;
        cursor: pointer;
        color: #4a4a4a;
        transition: all 0.2s ease;
    }
    .tab-btn.active {
        background: #0b3d20;
        color: #ffffff;
        border-color: #0b3d20;
    }
    
    /* --- PREVIOUS FORM STYLES --- */
    .quote-form-container {
        border: 3px solid #0b3d20;
        padding: 25px 20px 20px 20px;
        border-radius: 6px;
        max-width: 850px;
        margin: 0 auto 40px auto;
        background-color: #ffffff;
    }
    .quote-form-split {
        display: grid;
        grid-template-columns: 2fr 1fr 0.5fr 1fr;
        gap: 12px;
        align-items: center;
    }
    .form-input {
        width: 100%;
        padding: 14px 16px;
        border: 1px solid #cccccc;
        border-radius: 4px;
        font-family: 'Montserrat', sans-serif;
        font-size: 16px;
        color: #1a1a1a;
        outline: none;
    }
    .form-input:focus { border-color: #0b3d20; }
    .btn-submit-split {
        background-color: #0b3d20;
        color: #ffffff;
        border: none;
        border-radius: 4px;
        font-family: 'Montserrat', sans-serif;
        font-size: 13px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        cursor: pointer;
        padding: 16px 10px;
        transition: background-color 0.2s ease;
        white-space: nowrap;
    }
    .btn-submit-split:hover { background-color: #125c32; }
	
	/* --- GENERAL CONTACT FORM STYLES --- */
    .contact-form-container {
        border: 3px solid #0b3d20;
        padding: 35px 30px;
        border-radius: 6px;
        max-width: 600px;
        margin: 40px auto;
        background-color: #ffffff;
        box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    }
    .contact-form-header {
        text-align: center;
        margin-bottom: 25px;
    }
    .contact-form-header h2 {
        font-family: 'Montserrat', sans-serif;
        color: #0b3d20;
        font-size: 26px;
        text-transform: uppercase;
        margin: 0 0 8px 0;
    }
    .contact-form-header p {
        font-family: 'Montserrat', sans-serif;
        color: #4a4a4a;
        font-size: 14px;
        margin: 0;
    }
    .contact-form-stack {
        display: flex;
        flex-direction: column;
        gap: 18px;
    }
    .form-group {
        display: flex;
        flex-direction: column;
        gap: 6px;
    }
    .form-group label {
        font-family: 'Montserrat', sans-serif;
        font-size: 12px;
        font-weight: 700;
        text-transform: uppercase;
        color: #0b3d20;
        letter-spacing: 0.5px;
    }
    .contact-input {
        width: 100%;
        padding: 12px 14px;
        border: 1px solid #cccccc;
        border-radius: 4px;
        font-family: 'Montserrat', sans-serif;
        font-size: 15px;
        color: #1a1a1a;
        outline: none;
        box-sizing: border-box;
    }
    .contact-input:focus {
        border-color: #0b3d20;
    }
    .message-box {
        min-height: 120px;
        resize: vertical; /* Allows users to drag the size box if needed */
    }
    .btn-contact-submit {
        background-color: #0b3d20;
        color: #ffffff;
        border: none;
        border-radius: 4px;
        font-family: 'Montserrat', sans-serif;
        font-size: 14px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1px;
        cursor: pointer;
        padding: 16px;
        margin-top: 10px;
        transition: background-color 0.2s ease;
    }
    .btn-contact-submit:hover {
        background-color: #125c32;
    }

    @media (max-width: 768px) {
        .quote-form-split { grid-template-columns: 1fr; gap: 12px; }
        .btn-submit-split { padding: 16px; white-space: normal; }
    }

    /* Mobile view adjustments so it stacks perfectly on small screens */
    @media (max-width: 768px) {
        .quote-form-split {
            grid-template-columns: 1fr; 
            gap: 12px;
        }
        .btn-submit-split {
            padding: 16px;
            white-space: normal;
        }
    }

        /* --- TRUST CHECKLIST BAR --- */
        .trust-bar {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 40px;
            flex-wrap: wrap;
            margin-top: 20px;
        }
        .trust-item {
            display: flex;
            align-items: center;
            gap: 8px;
            font-weight: 600;
            font-size: 15px;
            color: #2a2a2a;
            letter-spacing: 0.5px;
            text-transform: uppercase;
        }
        .trust-item span.check {
            color: #0b3d20;
            font-size: 18px;
            font-weight: 700;
        }

        /* --- RESPONSIVE MEDIA QUERIES (MOBILE OPTIMIZATION) --- */
        @media (max-width: 768px) {
            .nav-wrapper {
                flex-direction: column;
                gap: 15px;
                text-align: center;
            }
            .contact-right {
                flex-direction: column;
                gap: 10px;
                width: 100%;
            }
            .phone-link {
                font-size: 20px;
            }
            .btn-call {
                width: 100%;
                text-align: center;
            }
            .hero {
                padding: 25px 0 40px 0;
            }
            .hero h1 {
                font-size: 26px;
            }
            .hero p.location {
                font-size: 18px;
                margin-bottom: 20px;
            }
            .lawn-display {
                height: 180px;
                margin-bottom: 25px;
            }
            .quote-form {
                grid-template-columns: 1fr; /* Stacks form inputs vertically on mobile */
                gap: 12px;
            }
            .form-input {
                padding: 12px;
            }
            .btn-submit {
                padding: 14px;
            }
            .trust-bar {
                flex-direction: column;
                align-items: flex-start;
                max-width: 280px;
                margin: 20px auto 0 auto;
                gap: 12px;
            }
        }