/* Base Styles */
:root {
    --primary-color: #3a8a47;
    --primary-dark: #2a7136;
    --primary-light: #4ca65a;
    --secondary-color: #f9b248;
    --text-color: #333333;
    --text-light: #666666;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --success-color: #28a745;
    --error-color: #dc3545;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --border-radius: 6px;
    --font-sans: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-white);
    overflow-x: hidden;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

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

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

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
}

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

.section-padding {
    padding: 5rem 0;
}

.bg-light {
    background-color: var(--bg-light);
}

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

.divider {
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 1rem auto 2rem;
}

/* Buttons */
.btn-primary, .btn-secondary, .btn-text {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--bg-white);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    color: var(--bg-white);
}

.btn-secondary {
    background-color: transparent;
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--bg-white);
}

.btn-text {
    background-color: transparent;
    color: var(--primary-color);
    padding: 0.5rem 0;
    border: none;
}

.btn-text:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.btn-full {
    width: 100%;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: var(--bg-white);
    box-shadow: var(--shadow);
    z-index: 1000;
    padding: 1rem 0;
}

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

.logo a {
    display: flex;
    align-items: center;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.5rem;
}

.logo img {
    height: 40px;
    margin-right: 1rem;
}

.main-nav ul {
    display: flex;
}

.main-nav ul li {
    margin-left: 1.5rem;
}

.main-nav ul li a {
    color: var(--text-color);
    font-weight: 500;
}

.main-nav ul li a:hover {
    color: var(--primary-color);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--text-color);
    margin: 5px 0;
    transition: var(--transition);
}

/* Banner / Hero */
.banner {
    padding: 10rem 0 5rem;
    background-color: var(--bg-light);
}

.banner .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.banner-content {
    flex: 1;
}

.banner-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-dark);
}

.banner-content p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    color: var(--text-light);
}

.banner-image {
    flex: 1;
    padding: 2rem;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.25rem;
    color: var(--primary-dark);
}

.section-header p {
    font-size: 1.15rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

/* Content with Columns */
.content-cols {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
}

.col-text {
    flex: 1;
}

.col-image {
    flex: 1;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.service-item {
    padding: 2rem;
    background-color: var(--bg-white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.service-item:hover {
    transform: translateY(-10px);
}

.service-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
}

.service-item h3 {
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

/* Plants Grid */
.plants-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.plant-item {
    background-color: var(--bg-white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.plant-item:hover {
    transform: translateY(-10px);
}

.plant-image {
    height: 250px;
    background-color: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
}

.plant-item h3 {
    padding: 1.5rem 1.5rem 0.5rem;
    color: var(--primary-dark);
}

.plant-item p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-light);
}

/* Tips Grid */
.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.tip-item {
    background-color: var(--bg-white);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--shadow);
}

.tip-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1.5rem;
}

.tip-item h3 {
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

/* Blog Promo */
.blog-promo {
    background-color: var(--primary-light);
    color: var(--bg-white);
    border-radius: var(--border-radius);
    padding: 3rem 2rem;
    text-align: center;
}

.blog-promo h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.blog-promo p {
    margin-bottom: 1.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.blog-promo .btn-secondary {
    background-color: var(--bg-white);
    border-color: var(--bg-white);
}

.blog-promo .btn-secondary:hover {
    background-color: transparent;
    color: var(--bg-white);
}

/* Testimonials */
.testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial {
    background-color: var(--bg-white);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--shadow);
}

.testimonial-content {
    margin-bottom: 1.5rem;
    position: relative;
}

.testimonial-content p {
    font-style: italic;
}

.testimonial-content p::before {
    content: '"';
    font-size: 3rem;
    color: var(--primary-light);
    opacity: 0.3;
    position: absolute;
    top: -1.5rem;
    left: -1rem;
}

.testimonial-author p {
    color: var(--text-light);
}

/* Blog Grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.blog-item {
    background-color: var(--bg-white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.blog-item:hover {
    transform: translateY(-10px);
}

.blog-image {
    height: 200px;
    background-color: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-content {
    padding: 1.5rem;
}

.blog-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--primary-dark);
}

.blog-date {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.blog-excerpt {
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

/* Contact Section */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.contact-icon {
    color: var(--primary-color);
    min-width: 24px;
}

.contact-item h3 {
    margin-bottom: 0.5rem;
    color: var(--primary-dark);
}

.social-links h3 {
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--primary-light);
    color: var(--bg-white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-icons a:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
}

/* Contact Form */
.contact-form {
    background-color: var(--bg-white);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--shadow);
}

.contact-form h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

.contact-form p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.form-group input {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    font-family: inherit;
}

.form-group.checkbox {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-group.checkbox input {
    width: auto;
}

.form-group.checkbox label {
    margin-bottom: 0;
}

/* Footer */
.footer {
    background-color: var(--primary-dark);
    color: var(--bg-white);
    padding: 4rem 0 2rem;
}

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

.footer-col h3 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    color: var(--bg-white);
}

.footer-col p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.5rem;
}

.footer-col ul li {
    margin-bottom: 0.5rem;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--bg-white);
    padding-left: 5px;
}

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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 0;
}

/* Blog Page */
.blog-header {
    padding: 10rem 0 5rem;
    background-color: var(--bg-light);
    text-align: center;
}

.blog-header h1 {
    font-size: 2.5rem;
    color: var(--primary-dark);
}

.blog-container {
    padding: 5rem 0;
}

.blog-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

/* Article Page */
.article-header {
    padding: 10rem 0 5rem;
    background-color: var(--bg-light);
}

.article-header h1 {
    font-size: 2.5rem;
    color: var(--primary-dark);
    max-width: 800px;
}

.article-meta {
    display: flex;
    gap: 2rem;
    margin-top: 1.5rem;
    color: var(--text-light);
}

.article-image {
    margin: 3rem 0;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.article-content {
    max-width: 800px;
    margin: 0 auto;
}

.article-content h2 {
    font-size: 1.75rem;
    margin: 2rem 0 1rem;
    color: var(--primary-dark);
}

.article-content p {
    margin-bottom: 1.5rem;
}

.article-content ul, .article-content ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.article-content ul li, .article-content ol li {
    margin-bottom: 0.5rem;
}

.article-section {
    margin: 3rem 0;
}

.related-posts {
    background-color: var(--bg-light);
    padding: 5rem 0;
}

.related-posts h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-dark);
}

/* Thanks Page */
.thanks-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    text-align: center;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    color: var(--success-color);
    margin-bottom: 2rem;
}

.thanks-page h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-dark);
}

.thanks-page p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    max-width: 600px;
    color: var(--text-light);
}

/* Legal Pages */
.legal-page {
    padding: 10rem 0 5rem;
}

.legal-page .container {
    max-width: 800px;
}

.legal-page h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--primary-dark);
}

.legal-page h2 {
    font-size: 1.75rem;
    margin: 2.5rem 0 1rem;
    color: var(--primary-color);
}

.legal-page p {
    margin-bottom: 1.5rem;
}

.legal-page ul, .legal-page ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.legal-page ul li, .legal-page ol li {
    margin-bottom: 0.5rem;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .banner .container {
        flex-direction: column;
    }

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

    .content-cols {
        flex-direction: column;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--bg-white);
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        padding: 1rem 0;
    }

    .main-nav.show {
        display: block;
    }

    .main-nav ul {
        flex-direction: column;
        align-items: center;
    }

    .main-nav ul li {
        margin: 0;
        width: 100%;
        text-align: center;
    }

    .main-nav ul li a {
        display: block;
        padding: 0.75rem 1.5rem;
    }

    .main-nav ul li a:hover {
        background-color: var(--bg-light);
    }

    .mobile-menu-toggle {
        display: block;
    }

    .section-padding {
        padding: 4rem 0;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .banner-content h1 {
        font-size: 2rem;
    }

    .blog-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 3rem;
    }
}

@media (max-width: 576px) {
    .section-padding {
        padding: 3rem 0;
    }

    .section-header h2 {
        font-size: 1.75rem;
    }

    .banner-content h1 {
        font-size: 1.75rem;
    }

    .footer-cols {
        gap: 2rem;
    }
}
