/* Global Styles */
:root {
    --primary-color: #2E7D32;
    --secondary-color: #388E3C;
    --text-dark: #333333;
    --text-light: #666666;
    --text-white: #FFFFFF;
    --bg-light: #F9F9F9;
    --bg-white: #FFFFFF;
    --border-color: #EEEEEE;
    --hover-color: #1B5E20;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

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

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

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

ul {
    list-style: none;
}

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

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--text-white);
    border: none;
}

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

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

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

.btn-tertiary {
    background-color: var(--secondary-color);
    color: var(--text-white);
    border: none;
}

.btn-tertiary:hover {
    background-color: var(--hover-color);
    color: var(--text-white);
}

.btn-text {
    background-color: transparent;
    color: var(--primary-color);
    padding: 0;
    text-decoration: underline;
}

.btn-text:hover {
    color: var(--hover-color);
    text-decoration: none;
}

/* Header */
.main-header {
    background-color: var(--bg-white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

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

.logo a {
    display: block;
}

.main-nav {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    gap: 20px;
}

.nav-list a {
    color: var(--text-dark);
    font-weight: 500;
    padding: 5px 10px;
    position: relative;
}

.nav-list a:hover,
.nav-list a.active {
    color: var(--primary-color);
}

.nav-list a.active::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
    bottom: 0;
    left: 0;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-dark);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    background-color: var(--bg-light);
    padding: 100px 0;
    text-align: center;
}

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

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: var(--text-light);
}

/* Featured Plants Section */
.featured-plants {
    padding: 80px 0;
}

.featured-plants h2 {
    text-align: center;
    margin-bottom: 40px;
    color: var(--primary-color);
}

.plants-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.plant-card {
    background-color: var(--bg-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.plant-card:hover {
    transform: translateY(-5px);
}

.plant-image {
    width: 100%;
    padding-top: 10px;
    background-color: var(--bg-light);
}

.plant-card h3 {
    padding: 20px 20px 10px;
    color: var(--text-dark);
}

.plant-card p {
    padding: 0 20px 20px;
    color: var(--text-light);
}

.plant-card .btn {
    margin: 0 20px 20px;
}

/* About Us Section */
.about-us {
    padding: 80px 0;
    background-color: var(--bg-light);
}

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

.about-text h2 {
    margin-bottom: 20px;
    color: var(--primary-color);
}

.about-text p {
    margin-bottom: 20px;
    color: var(--text-light);
}

.about-text .btn {
    margin-top: 10px;
}

/* Services Section */
.services {
    padding: 80px 0;
}

.services h2 {
    text-align: center;
    margin-bottom: 40px;
    color: var(--primary-color);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}

.service-card {
    text-align: center;
    padding: 30px 20px;
    border-radius: 8px;
    background-color: var(--bg-light);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-icon {
    margin: 0 auto 20px;
    width: 60px;
    height: 60px;
}

.service-card h3 {
    margin-bottom: 15px;
    color: var(--text-dark);
}

.service-card p {
    color: var(--text-light);
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.testimonials h2 {
    text-align: center;
    margin-bottom: 40px;
    color: var(--primary-color);
}

.testimonials-slider {
    max-width: 800px;
    margin: 0 auto;
}

.testimonial {
    display: none;
}

.testimonial:first-child {
    display: block;
}

.testimonial-content {
    background-color: var(--bg-white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    text-align: center;
}

.testimonial-content p {
    font-style: italic;
    margin-bottom: 20px;
    color: var(--text-light);
}

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

.testimonial-dots {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--border-color);
    margin: 0 5px;
    cursor: pointer;
}

.dot.active {
    background-color: var(--primary-color);
}

/* Blog Preview Section */
.blog-preview {
    padding: 80px 0;
}

.blog-preview h2 {
    text-align: center;
    margin-bottom: 40px;
    color: var(--primary-color);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.blog-card {
    background-color: var(--bg-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-image {
    width: 100%;
    background-color: var(--bg-light);
}

.blog-content {
    padding: 20px;
}

.blog-content h3 {
    margin-bottom: 10px;
    color: var(--text-dark);
}

.blog-content p {
    margin-bottom: 15px;
    color: var(--text-light);
}

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

/* Newsletter Section */
.newsletter {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.newsletter-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.newsletter h2 {
    margin-bottom: 20px;
    color: var(--primary-color);
}

.newsletter p {
    margin-bottom: 30px;
    color: var(--text-light);
}

.form-group {
    display: flex;
    margin-bottom: 15px;
}

.form-group input {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 4px 0 0 4px;
    font-size: 1rem;
}

.form-group .btn {
    border-radius: 0 4px 4px 0;
}

.form-consent {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
}

.form-consent label {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Footer */
.main-footer {
    background-color: var(--primary-color);
    color: var(--text-white);
    padding: 60px 0 30px;
}

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

.footer-column h3 {
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--text-white);
    opacity: 0.8;
}

.footer-links a:hover {
    opacity: 1;
}

.footer-logo {
    margin-bottom: 15px;
}

.footer-column p {
    margin-bottom: 20px;
    opacity: 0.8;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    color: var(--text-white);
    opacity: 0.8;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Page Title Section */
.page-title {
    background-color: var(--bg-light);
    padding: 60px 0;
    text-align: center;
}

.page-title h1 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 5px;
}

.breadcrumb li::after {
    content: '/';
    margin-left: 5px;
    color: var(--text-light);
}

.breadcrumb li:last-child::after {
    content: '';
}

.breadcrumb li.active {
    color: var(--text-light);
}

/* Our Story Section */
.our-story {
    padding: 80px 0;
}

.content-with-image {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.content-text h2 {
    margin-bottom: 20px;
    color: var(--primary-color);
}

.content-text p {
    margin-bottom: 20px;
    color: var(--text-light);
}

/* Our Values Section */
.our-values {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.our-values h2 {
    text-align: center;
    margin-bottom: 40px;
    color: var(--primary-color);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}

.value-card {
    background-color: var(--bg-white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    text-align: center;
}

.value-icon {
    margin: 0 auto 20px;
    width: 60px;
    height: 60px;
}

.value-card h3 {
    margin-bottom: 15px;
    color: var(--text-dark);
}

.value-card p {
    color: var(--text-light);
}

/* Team Section */
.team-section {
    padding: 80px 0;
}

.team-section h2 {
    text-align: center;
    margin-bottom: 40px;
    color: var(--primary-color);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.team-member {
    background-color: var(--bg-light);
    padding: 30px;
    border-radius: 8px;
    text-align: center;
}

.member-image {
    width: 200px;
    height: 200px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
}

.team-member h3 {
    margin-bottom: 5px;
    color: var(--text-dark);
}

.member-title {
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 15px;
}

.team-member p {
    color: var(--text-light);
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background-color: var(--primary-color);
    color: var(--text-white);
    text-align: center;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    margin-bottom: 20px;
}

.cta-content p {
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-content .btn {
    background-color: var(--text-white);
    color: var(--primary-color);
}

.cta-content .btn:hover {
    background-color: transparent;
    color: var(--text-white);
    border: 1px solid var(--text-white);
}

/* Product Categories */
.product-categories {
    padding: 80px 0;
}

.product-categories h2 {
    text-align: center;
    margin-bottom: 40px;
    color: var(--primary-color);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}

.category-card {
    text-align: center;
    padding: 30px;
    border-radius: 8px;
    background-color: var(--bg-light);
    transition: transform 0.3s ease;
}

.category-card:hover {
    transform: translateY(-5px);
}

.category-image {
    margin: 0 auto 20px;
    width: 100px;
    height: 100px;
}

.category-card h3 {
    margin-bottom: 15px;
    color: var(--text-dark);
}

.category-card p {
    color: var(--text-light);
}

/* Featured Products */
.featured-products {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.featured-products h2 {
    text-align: center;
    margin-bottom: 40px;
    color: var(--primary-color);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.product-card {
    background-color: var(--bg-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-image {
    width: 100%;
    background-color: var(--bg-light);
}

.product-card h3 {
    padding: 20px 20px 5px;
    color: var(--text-dark);
}

.product-price {
    padding: 0 20px 10px;
    color: var(--primary-color);
    font-weight: 600;
}

.product-card p {
    padding: 0 20px 15px;
    color: var(--text-light);
}

.product-actions {
    padding: 0 20px 20px;
}

/* Sets and Collections */
.sets-collections {
    padding: 80px 0;
}

.sets-collections h2 {
    text-align: center;
    margin-bottom: 40px;
    color: var(--primary-color);
}

.collections-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.collection-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    background-color: var(--bg-light);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.collection-image {
    width: 100%;
    height: 100%;
    background-color: var(--bg-white);
}

.collection-content {
    padding: 30px;
}

.collection-content h3 {
    margin-bottom: 15px;
    color: var(--text-dark);
}

.collection-content p {
    margin-bottom: 20px;
    color: var(--text-light);
}

.collection-price {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 20px;
}

/* Blog Page */
.blog-section {
    padding: 80px 0;
}

.blog-section h2 {
    text-align: center;
    margin-bottom: 40px;
    color: var(--primary-color);
}

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

.blog-list-card {
    background-color: var(--bg-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.blog-list-card:hover {
    transform: translateY(-5px);
}

.blog-list-image {
    width: 100%;
    background-color: var(--bg-light);
}

.blog-list-content {
    padding: 20px;
}

.blog-list-content h3 {
    margin-bottom: 10px;
    color: var(--text-dark);
}

.blog-date {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.blog-list-content p {
    margin-bottom: 15px;
    color: var(--text-light);
}

/* Blog Article */
.article-section {
    padding: 80px 0;
}

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

.article-header {
    margin-bottom: 40px;
}

.article-header h1 {
    margin-bottom: 15px;
    color: var(--primary-color);
}

.article-date {
    color: var(--text-light);
    margin-bottom: 20px;
}

.article-content p {
    margin-bottom: 20px;
    color: var(--text-dark);
}

.article-content h2 {
    margin: 40px 0 20px;
    color: var(--primary-color);
}

.article-content ul, .article-content ol {
    margin-bottom: 20px;
    padding-left: 20px;
}

.article-content li {
    margin-bottom: 10px;
    color: var(--text-dark);
}

.article-image {
    margin: 30px 0;
    border-radius: 8px;
    overflow: hidden;
}

.article-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.article-tag {
    background-color: var(--bg-light);
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.9rem;
    color: var(--text-light);
}

.related-articles {
    margin-top: 80px;
}

.related-articles h2 {
    margin-bottom: 30px;
    color: var(--primary-color);
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info h2 {
    margin-bottom: 30px;
    color: var(--primary-color);
}

.contact-details {
    margin-bottom: 30px;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.contact-icon {
    width: 24px;
    height: 24px;
    margin-right: 15px;
    color: var(--primary-color);
}

.contact-text h3 {
    margin-bottom: 5px;
    color: var(--text-dark);
}

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

.contact-form h2 {
    margin-bottom: 30px;
    color: var(--primary-color);
}

.form-field {
    margin-bottom: 20px;
}

.form-field label {
    display: block;
    margin-bottom: 5px;
    color: var(--text-dark);
}

.form-field input,
.form-field textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 1rem;
}

.form-field textarea {
    height: 150px;
    resize: vertical;
}

/* Map Section */
.map-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.map-section h2 {
    text-align: center;
    margin-bottom: 40px;
    color: var(--primary-color);
}

.map-container {
    height: 450px;
    background-color: var(--bg-white);
    border-radius: 8px;
    overflow: hidden;
}

/* Privacy Policy Page */
.policy-section {
    padding: 80px 0;
}

.policy-container {
    max-width: 800px;
    margin: 0 auto;
}

.policy-container h2 {
    margin: 40px 0 20px;
    color: var(--primary-color);
}

.policy-container h3 {
    margin: 30px 0 15px;
    color: var(--text-dark);
}

.policy-container p {
    margin-bottom: 20px;
    color: var(--text-light);
}

.policy-container ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.policy-container li {
    margin-bottom: 10px;
    color: var(--text-light);
}

/* Thank You Page */
.thank-you-section {
    padding: 100px 0;
    text-align: center;
}

.thank-you-content {
    max-width: 600px;
    margin: 0 auto;
}

.thank-you-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    color: var(--primary-color);
}

.thank-you-content h1 {
    margin-bottom: 20px;
    color: var(--primary-color);
}

.thank-you-content p {
    margin-bottom: 30px;
    color: var(--text-light);
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero {
        padding: 80px 0;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .about-content,
    .content-with-image,
    .collection-card,
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .about-image,
    .content-image {
        order: -1;
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }
    
    .nav-list {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: var(--bg-white);
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
        box-shadow: var(--shadow);
        transform: translateY(-100%);
        transition: transform 0.3s ease;
        z-index: 1000;
    }
    
    .nav-list.active {
        transform: translateY(0);
    }
    
    .form-group {
        flex-direction: column;
    }
    
    .form-group input {
        border-radius: 4px;
        margin-bottom: 10px;
    }
    
    .form-group .btn {
        border-radius: 4px;
    }
}

@media (max-width: 576px) {
    .plants-grid,
    .services-grid,
    .blog-grid,
    .categories-grid,
    .products-grid,
    .values-grid,
    .team-grid,
    .blog-list-grid {
        grid-template-columns: 1fr;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
}