/* FOOTER STYLES */
.footer {
    background: linear-gradient(135deg, #2d5016 0%, #1e3810 100%);
    color: #fff;
    margin-top: 60px;
    border-top: 3px solid #8bc34a;
    padding: 50px 0 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.footer .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Main Footer Content */
.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column {
    animation: slideUpFooter 0.6s ease-out;
}

@keyframes slideUpFooter {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Logo/Company Column */
.footer-logo h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
    color: #8bc34a;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-logo-img {
    height: 30px;
    width: 30px;
    object-fit: contain;
}

.footer-logo .tagline {
    font-size: 0.9rem;
    color: #b0d084;
    margin-bottom: 15px;
    font-style: italic;
}

.company-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #d4e8c1;
    margin-bottom: 20px;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 12px;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(139, 195, 74, 0.2);
    border: 2px solid #8bc34a;
    border-radius: 50%;
    color: #8bc34a;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 1.2rem;
}

.social-icon:hover {
    background: #8bc34a;
    color: #2d5016;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(139, 195, 74, 0.4);
}

/* Footer Title */
.footer-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #8bc34a;
    border-bottom: 2px solid #8bc34a;
    padding-bottom: 10px;
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.footer-links a {
    color: #d4e8c1;
    text-decoration: none;
    font-size: 0.95rem;
    display: inline-block;
    padding: 5px 0;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
    cursor: pointer;
}

.footer-links a:hover {
    color: #8bc34a;
    border-bottom-color: #8bc34a;
    padding-left: 5px;
}

/* Contact Info */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #d4e8c1;
}

.contact-item strong {
    color: #8bc34a;
    display: block;
    margin-bottom: 5px;
}

.contact-item a {
    color: #8bc34a;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-item a:hover {
    color: #aed581;
    text-decoration: underline;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(139, 195, 74, 0.3);
    padding-top: 30px;
}

.footer-payment {
    text-align: center;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(139, 195, 74, 0.3);
}

.payment-title {
    font-weight: 600;
    color: #8bc34a;
    display: block;
    margin-bottom: 10px;
}

.payment-icons {
    color: #d4e8c1;
    font-size: 0.9rem;
}

/* Footer Policies */
.footer-policies {
    text-align: center;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.footer-policies a {
    color: #d4e8c1;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.footer-policies a:hover {
    color: #8bc34a;
    text-decoration: underline;
}

.separator {
    color: rgba(139, 195, 74, 0.5);
}

/* Footer Copyright */
.footer-copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(139, 195, 74, 0.3);
    color: #9fbf6f;
    font-size: 0.9rem;
}

.footer-copyright p {
    margin: 5px 0;
}

.footer-copyright strong {
    color: #8bc34a;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer {
        padding: 40px 0 20px;
        margin-top: 40px;
    }

    .footer-policies {
        flex-direction: column;
        gap: 8px;
    }

    .separator {
        display: none;
    }

    .footer-logo h3 {
        font-size: 1.3rem;
    }

    .company-desc,
    .contact-item {
        font-size: 0.85rem;
    }

    .social-links {
        justify-content: flex-start;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 30px 0 15px;
    }

    .footer-title {
        font-size: 1rem;
    }

    .footer-bottom {
        padding-top: 20px;
    }

    .footer-copyright p {
        font-size: 0.8rem;
    }
}
