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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2d4a39;
    background-color: #fafafa;
}

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #2d4a39, #4a7c59);
    color: white;
    padding: 20px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-content i {
    font-size: 2rem;
    color: #f4c430;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.cookie-buttons button {
    padding: 10px 20px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-accept-all {
    background: #f4c430;
    color: #2d4a39;
}

.btn-necessary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-settings {
    background: #6a994e;
    color: white;
}

.cookie-buttons button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

/* Cookie Modal */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1001;
}

.cookie-modal.show {
    display: flex;
}

.cookie-modal-content {
    background: white;
    padding: 30px;
    border-radius: 15px;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
}

.cookie-category {
    margin: 20px 0;
    padding: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
}

.cookie-category label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.cookie-modal-buttons {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    margin-top: 20px;
}

.btn-save, .btn-cancel {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
}

.btn-save {
    background: #6a994e;
    color: white;
}

.btn-cancel {
    background: #ccc;
    color: #333;
}

/* Header */
.header {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: bold;
    color: #2d4a39;
}

.nav-brand i {
    color: #6a994e;
    font-size: 2rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    text-decoration: none;
    color: #2d4a39;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #6a994e;
}

.nav-toggle {
    display: none;
    font-size: 1.5rem;
    color: #2d4a39;
    cursor: pointer;
}

/* Hero Section */
.hero {
    position: relative;
    height: 60vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
    margin-top: 70px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #2d4a39 0%, #4a7c59 50%, #6a994e 100%);
    background-image: url('../images/banner-bg.svg');
    background-size: cover;
    background-position: center;
    z-index: -1;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    padding: 0 20px;
    animation: heroFadeIn 1s ease-out;
}

.hero h1 {
    font-size: 2.8rem;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    font-weight: 700;
    line-height: 1.2;
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    opacity: 0.95;
    line-height: 1.5;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

@keyframes heroFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(45deg, #f4c430, #e6b800);
    color: #2d4a39;
    padding: 12px 28px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(244, 196, 48, 0.3);
    border: 2px solid transparent;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(244, 196, 48, 0.4);
    background: linear-gradient(45deg, #e6b800, #f4c430);
    border-color: rgba(255, 255, 255, 0.2);
}

.cta-button i {
    font-size: 0.9rem;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.section-header i {
    font-size: 2rem;
    color: #6a994e;
    margin-bottom: 10px;
    display: inline-block;
    padding: 15px;
    background: linear-gradient(135deg, #f0f8f0, #e8f5e8);
    border-radius: 50%;
    border: 2px solid #e0f2e0;
    position: relative;
}

.section-header h2 {
    font-size: 2.2rem;
    color: #2d4a39;
    margin-bottom: 10px;
    font-weight: 700;
    position: relative;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(45deg, #6a994e, #a7c957);
    border-radius: 2px;
}

.section-header p {
    font-size: 1.1rem;
    color: #5a7c65;
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.6;
}

/* About Section */
.about-section {
    padding: 100px 0;
    background: white;
}

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

.about-card {
    background: linear-gradient(135deg, #f8fffe, #e8f5e8);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid #e0f2e0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(106, 153, 78, 0.15);
}

.about-card i {
    font-size: 3rem;
    color: #6a994e;
    margin-bottom: 20px;
}

.about-card h3 {
    font-size: 1.5rem;
    color: #2d4a39;
    margin-bottom: 15px;
}

.about-card p {
    color: #5a7c65;
    line-height: 1.7;
}

/* Services Section */
.services-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f0f8f0, #e8f5e8);
}

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

.service-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    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(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.service-card i {
    font-size: 3rem;
    color: #f4c430;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.5rem;
    color: #2d4a39;
    margin-bottom: 15px;
}

.service-card p {
    color: #5a7c65;
    line-height: 1.7;
}

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

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

.plant-card {
    background: linear-gradient(135deg, #2d4a39, #4a7c59);
    color: white;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
}

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

.plant-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="%23ffffff" opacity="0.1"/><circle cx="80" cy="30" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="40" cy="70" r="1.5" fill="%23ffffff" opacity="0.1"/></svg>');
    pointer-events: none;
}

.plant-icon {
    font-size: 4rem;
    color: #f4c430;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.plant-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.plant-card p {
    margin-bottom: 20px;
    opacity: 0.9;
    position: relative;
    z-index: 1;
}

.price {
    font-size: 1.5rem;
    font-weight: bold;
    color: #f4c430;
    position: relative;
    z-index: 1;
}

/* Reviews Section */
.reviews-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f4c430, #ffdd44);
}

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

.review-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.stars {
    color: #f4c430;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.review-card p {
    color: #5a7c65;
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.7;
}

.reviewer {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #2d4a39;
    font-weight: 600;
}

.reviewer i {
    font-size: 1.5rem;
    color: #6a994e;
}

/* Newsletter Section */
.newsletter-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #2d4a39, #4a7c59);
    color: white;
}

.newsletter-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.newsletter-text {
    flex: 1;
    min-width: 300px;
}

.newsletter-text i {
    font-size: 3rem;
    color: #f4c430;
    margin-bottom: 20px;
}

.newsletter-text h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.newsletter-form {
    display: flex;
    gap: 15px;
    flex: 1;
    min-width: 300px;
}

.newsletter-form input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    outline: none;
}

.newsletter-form button {
    background: #f4c430;
    color: #2d4a39;
    border: none;
    padding: 15px 25px;
    border-radius: 50px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(244, 196, 48, 0.3);
}

/* Contact Info Section */
.contact-info-section {
    padding: 100px 0;
    background: white;
}

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

.contact-card {
    text-align: center;
    padding: 30px;
}

.contact-card i {
    font-size: 3rem;
    color: #6a994e;
    margin-bottom: 20px;
}

.contact-card h3 {
    font-size: 1.5rem;
    color: #2d4a39;
    margin-bottom: 15px;
}

.contact-card p {
    color: #5a7c65;
    line-height: 1.7;
}

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

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

.footer-brand h3 {
    color: #f4c430;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-brand i {
    color: #6a994e;
    font-size: 1.5rem;
}

.footer-brand p {
    margin-bottom: 20px;
    opacity: 0.9;
}

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

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #4a7c59;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #6a994e;
    transform: translateY(-2px);
}

.footer-links h4, .footer-legal h4, .footer-contact h4 {
    color: #f4c430;
    margin-bottom: 20px;
}

.footer-links ul, .footer-legal ul {
    list-style: none;
}

.footer-links a, .footer-legal a {
    color: white;
    text-decoration: none;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.footer-links a:hover, .footer-legal a:hover {
    opacity: 1;
    color: #f4c430;
}

.footer-contact p {
    margin-bottom: 10px;
    opacity: 0.9;
}

.footer-contact i {
    margin-right: 10px;
    color: #6a994e;
}

.footer-bottom {
    border-top: 1px solid #4a7c59;
    padding-top: 20px;
    text-align: center;
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .nav-toggle {
        display: block;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .newsletter-content {
        flex-direction: column;
        text-align: center;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-buttons {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .about-card, .service-card, .plant-card {
        padding: 30px 20px;
    }
}

/* Page-specific styles */
.page-hero {
    height: 50vh;
    min-height: 400px;
}

.page-content {
    padding: 100px 0;
    margin-top: 80px;
}

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

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

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

.blog-card-header {
    background: linear-gradient(135deg, #6a994e, #4a7c59);
    color: white;
    padding: 30px;
    text-align: center;
}

.blog-card-header i {
    font-size: 3rem;
    margin-bottom: 15px;
    color: #f4c430;
}

.blog-card-content {
    padding: 30px;
}

.blog-card h3 {
    color: #2d4a39;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.blog-card p {
    color: #5a7c65;
    margin-bottom: 20px;
    line-height: 1.7;
}

.blog-card .read-more {
    color: #6a994e;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: color 0.3s ease;
}

.blog-card .read-more:hover {
    color: #4a7c59;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #2d4a39;
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e0f2e0;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #6a994e;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    background: linear-gradient(135deg, #6a994e, #4a7c59);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    margin: 0 auto;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(106, 153, 78, 0.3);
}

.thanks-container {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    padding: 60px 20px;
}

.thanks-container i {
    font-size: 4rem;
    color: #6a994e;
    margin-bottom: 30px;
}

.thanks-container h1 {
    color: #2d4a39;
    margin-bottom: 20px;
    font-size: 2.5rem;
}

.thanks-container p {
    color: #5a7c65;
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.back-btn {
    background: #f4c430;
    color: #2d4a39;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.back-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(244, 196, 48, 0.3);
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.legal-content h2 {
    color: #2d4a39;
    margin-top: 30px;
    margin-bottom: 15px;
}

.legal-content p {
    color: #5a7c65;
    margin-bottom: 15px;
    line-height: 1.7;
}

.legal-content ul {
    margin: 15px 0;
    padding-left: 30px;
}

.legal-content li {
    color: #5a7c65;
    margin-bottom: 8px;
}

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

.article-header i {
    font-size: 4rem;
    color: #6a994e;
    margin-bottom: 20px;
}

.article-meta {
    color: #5a7c65;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.article-content {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.article-content h2 {
    color: #2d4a39;
    margin: 30px 0 15px;
}

.article-content p {
    color: #5a7c65;
    margin-bottom: 20px;
    line-height: 1.8;
}

.article-content ul {
    margin: 20px 0;
    padding-left: 30px;
}

.article-content li {
    color: #5a7c65;
    margin-bottom: 10px;
    line-height: 1.6;
}

.article-tip {
    background: linear-gradient(135deg, #f0f8f0, #e8f5e8);
    padding: 20px;
    border-radius: 15px;
    border-left: 5px solid #6a994e;
    margin: 30px 0;
}

.article-tip strong {
    color: #2d4a39;
}
