/* Header Styles */
/* .header {
    background-color: var(--dark-green);
    color: #fff;
    padding: 10px 0;
}

.header .logo img {
    max-height: 50px;
}

.header .nav {
    display: flex;
}

.header .nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
}

.header .nav-item {
    margin-left: 20px;
}

.header .nav-link {
    color: #fff;
    text-decoration: none;
    font-family: 'Lato', sans-serif;
}

.header .nav-link:hover {
    text-decoration: underline;
}

.header .hamburger-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.header .hamburger-menu span {
    height: 3px;
    width: 25px;
    background-color: #fff;
    margin: 4px 0;
}

@media (max-width: 768px) {
    .header .nav {
        display: none;
    }

    .header .hamburger-menu {
        display: flex;
    } */

    /* .header .nav-list {
        display: none; 
        flex-direction: column;
        background-color: #216925;
        position: absolute;
        top: 60px;
        right: 0;
        width: 100%;
        text-align: center;
    }

    .header .nav-item {
        margin: 10px 0;
    }

    .header .nav-link {
        color: #fff;
    }

    .header .nav-list.active {
        display: flex; 
    }
} */




/* Footer Styles */
.footer {
    margin-top: auto;
    font-family: 'Lato', sans-serif;
}

/* Main Footer */
.footer-main {
    /* background: linear-gradient(135deg, #4CAF50, #2E7D32); */
    color: white;
    padding: 60px 0 30px;
    position: relative;
}

.footer-main::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"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.05"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.03"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.5;
}

.footer-section {
    position: relative;
    z-index: 2;
}

/* Footer Logo */
.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.footer-logo-icon {
    background: linear-gradient(135deg, #4CAF50, #66BB6A);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-right: 15px;
}

.footer-logo h4 {
    margin: 0;
    font-weight: 700;
    font-size: 1.5rem;
}

/* Footer Description */
.footer-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 25px;
}

/* Footer Stats */
.footer-stats {
    display: flex;
    gap: 30px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #4CAF50;
}

.stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Footer Titles */
.footer-title {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.footer-title i {
    color: #4CAF50;
    margin-right: 8px;
}

/* Footer Lists */
.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-list li {
    margin-bottom: 10px;
}

.footer-list a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.footer-list a i {
    margin-right: 8px;
    color: #4CAF50;
    width: 16px;
}

.footer-list a:hover {
    color: #4CAF50;
    text-decoration: none;
    transform: translateX(5px);
}

/* Partners Info */
.partners-info {
    margin-bottom: 25px;
}

.partner-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.partner-item i {
    background: rgba(76, 175, 80, 0.2);
    color: #4CAF50;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.partner-item strong {
    color: white;
    display: block;
    margin-bottom: 3px;
}

.partner-item p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    font-size: 0.9rem;
}

/* Contact Info */
.contact-info {
    margin-top: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.8);
}

.contact-item i {
    color: #4CAF50;
    margin-right: 12px;
    width: 16px;
}

/* Social Media Section */
.footer-social {
    background: rgba(0, 0, 0, 0.2);
    padding: 30px 0;
}

.social-links h6,
.newsletter h6 {
    color: white;
    font-weight: 600;
    margin-bottom: 15px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon.facebook { background: #1877f2; }
.social-icon.instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.social-icon.twitter { background: #1da1f2; }
.social-icon.youtube { background: #ff0000; }
.social-icon.whatsapp { background: #25d366; }

.social-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Newsletter */
.newsletter-form {
    display: flex;
    max-width: 300px;
}

.newsletter-input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    border-radius: 25px 0 0 25px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.2);
}

.newsletter-btn {
    background: linear-gradient(135deg, #4CAF50, #66BB6A);
    border: none;
    color: white;
    padding: 12px 20px;
    border-radius: 0 25px 25px 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-btn:hover {
    background: linear-gradient(135deg, #45a049, #5cb85c);
    transform: translateX(2px);
}

/* Footer Bottom */
.footer-bottom {
    background: rgba(0, 0, 0, 0.3);
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright p {
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.footer-bottom-links {
    text-align: right;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    margin-left: 20px;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #4CAF50;
    text-decoration: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-main {
        padding: 40px 0 20px;
    }
    
    .footer-stats {
        justify-content: center;
        gap: 20px;
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .newsletter-form {
        margin: 0 auto;
    }
    
    .footer-bottom-links {
        text-align: center;
        margin-top: 15px;
    }
    
    .footer-bottom-links a {
        margin: 0 10px;
    }
    
    .partner-item {
        flex-direction: column;
        text-align: center;
    }
    
    .partner-item i {
        margin-bottom: 10px;
        margin-right: 0;
    }
}

@media (max-width: 576px) {
    .footer-stats {
        flex-direction: column;
        gap: 15px;
    }
    
    .social-icons {
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .newsletter-form {
        flex-direction: column;
        gap: 10px;
    }
    
    .newsletter-input,
    .newsletter-btn {
        border-radius: 25px;
    }
}