/*
Theme Name: Landscaping and So Much More
Theme URI: https://lawnmoreusa.com
Author: Landscaping and So Much More LLC
Author URI: https://lawnmoreusa.com
Description: A professional landscaping WordPress theme for Landscaping and So Much More LLC — featuring lawn care, tree trimming, irrigation, and hardscaping services. Modern, responsive, and conversion-optimized.
Version: 1.0.2
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: landscaping-more
Tags: landscaping, lawn-care, hardscaping, one-column, custom-background, custom-colors, custom-logo, featured-images, full-width-template, theme-options
*/

/* ========== RESET & BASE ========== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Inter', sans-serif;
    color: #2d3a2e;
    background: #fff;
    line-height: 1.7;
    overflow-x: hidden;
}
a { text-decoration: none; color: inherit; transition: color .3s; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* ========== CSS VARIABLES ========== */
:root {
    --green-dark: #1a3c1a;
    --green-mid: #2d6a2e;
    --green-light: #4a9e4a;
    --green-pale: #e8f5e8;
    --gold: #c8a415;
    --gold-light: #f5e6a0;
    --cream: #faf9f2;
    --white: #ffffff;
    --text-dark: #1a1a1a;
    --text-body: #4a5548;
    --shadow: 0 8px 30px rgba(0,0,0,.12);
    --shadow-sm: 0 4px 15px rgba(0,0,0,.08);
    --radius: 12px;
    --transition: all .3s ease;
}

/* ========== NAVBAR ========== */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 18px 0;
    transition: var(--transition);
    background: transparent;
}
.navbar.scrolled {
    background: rgba(255,255,255,.97);
    box-shadow: var(--shadow-sm);
    padding: 12px 0;
}
.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    transition: var(--transition);
}
.navbar.scrolled .logo { color: var(--green-dark); }
.logo span { color: var(--gold); }
.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}
.nav-links a {
    font-size: .95rem;
    font-weight: 500;
    color: rgba(255,255,255,.9);
    position: relative;
    padding: 4px 0;
    transition: var(--transition);
}
.navbar.scrolled .nav-links a { color: var(--text-body); }
.nav-links a:hover { color: var(--gold); }
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 2px;
    background: var(--gold);
    transition: var(--transition);
}
.nav-links a:hover::after { width: 100%; }
.btn-nav {
    background: var(--gold);
    color: var(--green-dark) !important;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
}
.btn-nav:hover { background: var(--gold-light); transform: translateY(-2px); }
.nav-phone {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gold) !important;
    font-weight: 700;
    font-size: 1rem;
    white-space: nowrap;
    margin-left: auto;
    padding: 8px 18px;
    border-radius: 50px;
    border: 2px solid var(--gold);
    transition: var(--transition);
    text-decoration: none;
}
.nav-phone:hover {
    background: var(--gold);
    color: var(--green-dark) !important;
    transform: translateY(-2px);
}
.nav-phone i { font-size: .9rem; }
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
}
.hamburger span {
    width: 28px; height: 3px;
    background: var(--white);
    border-radius: 3px;
    transition: var(--transition);
}
.navbar.scrolled .hamburger span { background: var(--green-dark); }

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

/* ========== HERO ========== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(26,60,26,.85), rgba(45,106,46,.7)),
                url('images/hero-bg.jpg') center/cover no-repeat;
    text-align: center;
    color: var(--white);
}
.hero-content { max-width: 800px; padding: 0 24px; }
.hero-badge {
    display: inline-block;
    background: rgba(200,164,21,.2);
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: .85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}
.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}
.hero h1 span { color: var(--gold); }
.hero p {
    font-size: 1.15rem;
    line-height: 1.8;
    opacity: .9;
    margin-bottom: 2.5rem;
}
.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}
.btn-primary {
    background: var(--gold);
    color: var(--green-dark);
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-3px); box-shadow: 0 8px 25px rgba(200,164,21,.35); }
.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,.5);
}
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,.1); transform: translateY(-3px); }
.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}
.hero-scroll i { color: rgba(255,255,255,.5); font-size: 1.5rem; }
@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-10px); }
}

/* ========== STATS ========== */
.stats {
    background: var(--green-dark);
    padding: 4rem 0;
    position: relative;
}
.stats::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--green-light), var(--gold));
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}
.stat-item h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    color: var(--gold);
    margin-bottom: .3rem;
}
.stat-item p {
    color: rgba(255,255,255,.7);
    font-size: .95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ========== ABOUT ========== */
.about {
    padding: 7rem 0;
    background: var(--cream);
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.about-img {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}
.about-img img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}
.about-img::after {
    content: '';
    position: absolute;
    bottom: -20px; right: -20px;
    width: 120px; height: 120px;
    background: var(--gold);
    border-radius: 50%;
    z-index: -1;
}
.section-label {
    display: inline-block;
    color: var(--green-mid);
    font-weight: 600;
    font-size: .85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}
.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--green-dark);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}
.section-title span { color: var(--gold); }
.about-text p {
    color: var(--text-body);
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}
.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 1.5rem;
}
.about-feature {
    display: flex;
    align-items: center;
    gap: .75rem;
}
.about-feature i {
    color: var(--green-mid);
    font-size: 1.1rem;
}
.about-feature span {
    font-weight: 500;
    font-size: .95rem;
}

/* ========== SERVICES ========== */
.services {
    padding: 7rem 0;
    background: var(--white);
}
.services-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3.5rem;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}
.service-card {
    position: relative;
    background: var(--white);
    border-radius: var(--radius);
    padding: 3rem 2.5rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid #eef2ee;
    transition: var(--transition);
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 4px; height: 100%;
    background: var(--gold);
    transition: var(--transition);
}
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow);
    border-color: transparent;
}
.service-card:hover::before { width: 6px; }
.service-icon {
    width: 70px; height: 70px;
    background: var(--green-pale);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: var(--transition);
}
.service-card:hover .service-icon {
    background: var(--gold);
}
.service-icon i {
    font-size: 1.6rem;
    color: var(--green-mid);
    transition: var(--transition);
}
.service-card:hover .service-icon i { color: var(--green-dark); }
.service-number {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: rgba(45,106,46,.08);
    position: absolute;
    top: 1.5rem; right: 2rem;
    font-weight: 700;
}
.service-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--green-dark);
    margin-bottom: .75rem;
}
.service-card p {
    color: var(--text-body);
    font-size: .95rem;
    margin-bottom: 1.5rem;
}
.service-link {
    color: var(--green-mid);
    font-weight: 600;
    font-size: .9rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}
.service-link:hover { gap: 12px; color: var(--gold); }

/* ========== WHY CHOOSE US ========== */
.why-us {
    padding: 7rem 0;
    background: linear-gradient(135deg, var(--green-dark), #0f2a0f);
    color: var(--white);
}
.why-us-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3.5rem;
}
.why-us-header .section-label { color: var(--gold); }
.why-us-header .section-title { color: var(--white); }
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}
.why-card {
    text-align: center;
    padding: 2.5rem 2rem;
    border-radius: var(--radius);
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.1);
    transition: var(--transition);
}
.why-card:hover {
    background: rgba(255,255,255,.1);
    transform: translateY(-5px);
}
.why-card-icon {
    width: 80px; height: 80px;
    background: rgba(200,164,21,.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}
.why-card-icon i {
    font-size: 1.8rem;
    color: var(--gold);
}
.why-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    margin-bottom: .75rem;
}
.why-card p {
    color: rgba(255,255,255,.7);
    font-size: .95rem;
}

/* ========== CTA BANNER ========== */
.cta-banner {
    padding: 5rem 0;
    background: linear-gradient(135deg, rgba(26,60,26,.9), rgba(45,106,46,.8)),
                url('images/cta-bg.jpg') center/cover no-repeat fixed;
    text-align: center;
    color: var(--white);
}
.cta-banner h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}
.cta-banner p {
    font-size: 1.1rem;
    opacity: .9;
    margin-bottom: 2rem;
}

/* ========== TESTIMONIALS ========== */
.testimonials {
    padding: 7rem 0;
    background: var(--cream);
}
.testimonials-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3.5rem;
}
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.testimonial-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 2.5rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
}
.testimonial-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.testimonial-card::before {
    content: '\201C';
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    color: var(--gold);
    position: absolute;
    top: 1rem; left: 1.5rem;
    opacity: .3;
    line-height: 1;
}
.testimonial-card p {
    color: var(--text-body);
    font-size: .95rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
}
.testimonial-stars {
    color: var(--gold);
    margin-bottom: 1rem;
    font-size: .9rem;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.testimonial-avatar {
    width: 50px; height: 50px;
    border-radius: 50%;
    background: var(--green-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--green-mid);
    font-size: 1.1rem;
}
.testimonial-author h4 {
    font-size: 1rem;
    color: var(--green-dark);
}
.testimonial-author span {
    font-size: .85rem;
    color: var(--text-body);
}

/* ========== GALLERY ========== */
.gallery {
    padding: 7rem 0;
    background: var(--white);
}
.gallery-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3.5rem;
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.gallery-item {
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    height: 280px;
    cursor: pointer;
}
.gallery-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: var(--transition);
}
.gallery-item:hover img { transform: scale(1.1); }
.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26,60,26,.8), transparent);
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
    opacity: 0;
    transition: var(--transition);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
    color: var(--white);
    font-weight: 600;
    font-size: .95rem;
}

/* ========== CONTACT ========== */
.contact {
    padding: 7rem 0;
    background: var(--cream);
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}
.contact-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--green-dark);
    margin-bottom: 1rem;
}
.contact-info p {
    color: var(--text-body);
    margin-bottom: 2rem;
}
.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}
.contact-detail-icon {
    width: 50px; height: 50px;
    background: var(--green-pale);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.contact-detail-icon i {
    color: var(--green-mid);
    font-size: 1.1rem;
}
.contact-detail h4 {
    font-size: .95rem;
    color: var(--green-dark);
    margin-bottom: .2rem;
}
.contact-detail span, .contact-detail a {
    font-size: .9rem;
    color: var(--text-body);
}
.contact-detail a:hover { color: var(--green-mid); }
.contact-form {
    background: var(--white);
    border-radius: var(--radius);
    padding: 3rem;
    box-shadow: var(--shadow-sm);
}
.contact-form h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--green-dark);
    margin-bottom: 1.5rem;
}
.form-group {
    margin-bottom: 1.25rem;
}
.form-group label {
    display: block;
    font-size: .85rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: .4rem;
}
.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #dde5dd;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: .95rem;
    color: var(--text-dark);
    transition: var(--transition);
    background: var(--cream);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--green-mid);
    box-shadow: 0 0 0 3px rgba(45,106,46,.1);
}
.form-group textarea {
    resize: vertical;
    min-height: 120px;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
.btn-submit {
    width: 100%;
    background: var(--green-mid);
    color: var(--white);
    padding: 14px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}
.btn-submit:hover {
    background: var(--green-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(45,106,46,.3);
}

/* ========== FOOTER ========== */
.footer {
    background: var(--green-dark);
    color: rgba(255,255,255,.7);
    padding: 4rem 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-brand .logo {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    display: block;
}
.footer-brand p {
    font-size: .9rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}
.social-links {
    display: flex;
    gap: .75rem;
}
.social-links a {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}
.social-links a:hover { background: var(--gold); }
.social-links a:hover i { color: var(--green-dark); }
.social-links i { color: rgba(255,255,255,.7); }
.footer h4 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 1.5rem;
}
.footer ul li {
    margin-bottom: .75rem;
}
.footer ul li a {
    font-size: .9rem;
    transition: var(--transition);
}
.footer ul li a:hover { color: var(--gold); padding-left: 5px; }
.footer-bottom {
    text-align: center;
    padding: 1.5rem 0;
    font-size: .85rem;
}

/* ========== SCROLL TO TOP ========== */
.scroll-top {
    position: fixed;
    bottom: 2rem; right: 2rem;
    width: 48px; height: 48px;
    background: var(--green-mid);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    border: none;
    box-shadow: var(--shadow-sm);
}
.scroll-top.visible { opacity: 1; visibility: visible; }
.scroll-top:hover { background: var(--gold); color: var(--green-dark); transform: translateY(-3px); }

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .services-grid { grid-template-columns: 1fr 1fr; }
    .why-grid { grid-template-columns: 1fr 1fr; }
    .testimonials-grid { grid-template-columns: 1fr 1fr; }
    .gallery-grid { grid-template-columns: 1fr 1fr; }
    .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
    .hero h1 { font-size: 2.5rem; }
    .section-title { font-size: 2rem; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
    .services-grid { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .nav-links { display: none; }
    .hamburger { display: flex; }
    .nav-phone {
        display: none;
    }
    /* Show phone in mobile menu */
    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--green-dark);
        padding: 1.5rem;
        box-shadow: var(--shadow-md);
        z-index: 1000;
    }
    .nav-links.active a {
        padding: .75rem 0;
        border-bottom: 1px solid rgba(255,255,255,.1);
    }
    .form-row { grid-template-columns: 1fr; }
}

/* ========== ANIMATIONS ========== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .8s ease, transform .8s ease;
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}