/*
Theme Name: Lawn Care Pro
Theme URI: https://example.com/lawn-care-pro
Author: Your Name
Author URI: https://example.com
Description: A professional WordPress theme for lawn care and gardening services with a clean, modern design featuring green accents.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: lawn-care-pro
Tags: business, services, gardening, green, modern, clean
*/

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    line-height: 1.6;
    color: #333;
    font-size: 16px;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Top Bar */
.top-bar {
    background-color: #2c5f2d;
    color: white;
    padding: 10px 0;
    font-size: 14px;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.contact-info a {
    color: white;
    margin-right: 20px;
}

.contact-info a:hover {
    opacity: 0.8;
}

.social-links a {
    color: white;
    margin-left: 15px;
    font-size: 16px;
}

.social-links a:hover {
    opacity: 0.8;
}

/* Header */
.site-header {
    background-color: white;
    padding: 20px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-logo img {
    max-height: 100px;
}

.main-navigation ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

.main-navigation a {
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.main-navigation a:hover {
    color: #5cb85c;
}

.cta-button {
    background-color: #5cb85c;
    color: white;
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #4a9f4a;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #333;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('images/1.png');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 120px 0;
    text-align: left;
}

.hero-content {
    max-width: 600px;
}

.hero-label {
    color: #5cb85c;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    font-weight: 600;
}

.hero-title {
    font-size: 56px;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 700;
    text-transform: lowercase;
}

.hero-description {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-form {
    display: flex;
    gap: 10px;
    max-width: 500px;
}

.hero-form input {
    flex: 1;
    padding: 15px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
}

.hero-form button {
    padding: 15px 30px;
    background-color: #5cb85c;
    color: white;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.hero-form button:hover {
    background-color: #4a9f4a;
}

/* Features Section */
.features-section {
    padding: 80px 0;
    background-color: white;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.feature-image img {
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.feature-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #2c5f2d;
}

.feature-list {
    list-style: none;
    margin: 20px 0;
}

.feature-list li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
}

.feature-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #5cb85c;
    font-weight: bold;
}

.btn-primary {
    display: inline-block;
    padding: 12px 30px;
    background-color: #5cb85c;
    color: white;
    border-radius: 5px;
    margin-top: 20px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #4a9f4a;
}

/* Stats Section */
.stats-section {
    background-color: #f8f9fa;
    padding: 60px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    text-align: center;
}

.stat-item h3 {
    font-size: 48px;
    color: #5cb85c;
    margin-bottom: 10px;
}

.stat-item p {
    font-size: 18px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Services Section */
.services-section {
    padding: 80px 0;
    background-color: white;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-label {
    color: #5cb85c;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    font-weight: 600;
}

.section-title {
    font-size: 42px;
    margin-bottom: 20px;
    color: #2c5f2d;
}

.section-description {
    font-size: 18px;
    color: #666;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.service-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.service-image {
    height: 250px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-content {
    padding: 30px;
}

.service-label {
    color: #5cb85c;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    font-weight: 600;
}

.service-content h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2c5f2d;
}

.service-content p {
    color: #666;
    margin-bottom: 20px;
}

.service-link {
    color: #5cb85c;
    font-weight: 600;
}

.service-link:hover {
    color: #4a9f4a;
}







/* About Section - Redesigned */
.about-section-redesigned {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.about-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
}

.about-story {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.story-card {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.story-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.icon-circle {
    width: 80px;
    height: 80px;
    background: #f0f8f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.story-card h3 {
    font-size: 24px;
    color: #2c5f2d;
    margin-bottom: 15px;
}

.story-card p {
    color: #666;
    line-height: 1.8;
    margin: 0;
}

.about-highlights {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.highlight-card {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.featured-card {
    border-left: 5px solid #5cb85c;
}

.highlight-card h3 {
    font-size: 26px;
    color: #2c5f2d;
    margin-bottom: 25px;
}

.check-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.check-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    color: #555;
    line-height: 1.6;
}

.check-list li:last-child {
    margin-bottom: 0;
}

.check-list svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.check-list strong {
    color: #2c5f2d;
}

.quick-contact-card {
    background: linear-gradient(135deg, #2c5f2d 0%, #3d7a3e 100%);
    padding: 35px;
    border-radius: 15px;
    color: white;
    box-shadow: 0 10px 30px rgba(44, 95, 45, 0.3);
}

.quick-contact-header h4 {
    font-size: 22px;
    margin: 0 0 8px 0;
    color: white;
}

.quick-contact-header p {
    margin: 0 0 25px 0;
    opacity: 0.9;
    font-size: 14px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    text-decoration: none;
    color: white;
    transition: background 0.3s ease, transform 0.3s ease;
}

.contact-method:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(5px);
}

.method-icon {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}

.method-details {
    display: flex;
    flex-direction: column;
}

.method-label {
    font-size: 12px;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.method-value {
    font-size: 16px;
    font-weight: 600;
    margin-top: 2px;
}

.about-stats-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    padding: 40px 60px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    flex-wrap: wrap;
    gap: 30px;
}

.stat-item-inline {
    text-align: center;
    flex: 1;
    min-width: 150px;
}

.stat-number {
    font-size: 42px;
    font-weight: 700;
    color: #5cb85c;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    height: 60px;
    background: #e0e0e0;
}

/* About Section */
.about-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.about-images img {
    border-radius: 10px;
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.about-stat {
    background-color: white;
    padding: 30px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.about-stat h3 {
    font-size: 36px;
    color: #5cb85c;
}

.about-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #2c5f2d;
}

.about-content p {
    color: #666;
    margin-bottom: 15px;
    line-height: 1.8;
}

.contact-box {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    margin-top: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.contact-box h4 {
    font-size: 18px;
    margin-bottom: 10px;
}

.contact-box p {
    font-size: 24px;
    color: #5cb85c;
    font-weight: 600;
}






/* CTA Section */
.cta-section {
    background: linear-gradient(rgba(44, 95, 45, 0.9), rgba(44, 95, 45, 0.9)), url('images/cta-bg.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 80px 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 42px;
    margin-bottom: 30px;
}

.cta-section .btn-primary {
    background-color: white;
    color: #2c5f2d;
}

.cta-section .btn-primary:hover {
    background-color: #f0f0f0;
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background-color: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.testimonial-card {
    background-color: #f8f9fa;
    padding: 40px 30px;
    border-radius: 10px;
    position: relative;
}

.testimonial-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 20px;
    overflow: hidden;
    border: 3px solid white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-content {
    text-align: center;
}

.testimonial-content h4 {
    font-size: 20px;
    margin-bottom: 5px;
    color: #2c5f2d;
}

.testimonial-content .location {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
}

.testimonial-content p {
    font-style: italic;
    color: #666;
    line-height: 1.8;
}

/* Footer */
.site-footer {
    background-color: #2c5f2d;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-logo img {
    max-height: 50px;
    margin-bottom: 20px;
}

.footer-menu {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.footer-menu ul {
    list-style: none;
}

.footer-menu a {
    color: white;
    opacity: 0.8;
    display: block;
    padding: 5px 0;
}

.footer-menu a:hover {
    opacity: 1;
    color: #5cb85c;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    text-align: center;
    color: rgba(255,255,255,0.8);
}

/* Responsive Design */
@media (max-width: 968px) {
    .menu-toggle {
        display: block;
    }

    .main-navigation {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: white;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    }

    .main-navigation.active {
        display: block;
    }

    .main-navigation ul {
        flex-direction: column;
        padding: 20px;
    }

    .features-grid,
    .about-grid {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 36px;
    }

    .section-title {
        font-size: 32px;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .top-bar-content {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .hero-section {
        padding: 60px 0;
    }

    .hero-form {
        flex-direction: column;
    }

    .services-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .about-images {
        grid-template-columns: 1fr;
    }

    .footer-menu {
        grid-template-columns: 1fr;
    }
}



.social-links a {
    display: inline-flex;
    align-items: center;
    gap: 8px; /* space between icon and text */
    text-decoration: none;
    font-weight: bold;
}

.social-links a i {
    font-size: 1.2em; /* adjust icon size */
}

