/* Footer Styles */
.site-footer {
    background-color: #1a1a1a;
    color: #ccc;
    font-family: 'Inter', sans-serif;
    position: relative;
}

.footer-top {
    padding: 60px 0 40px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
}

/* Footer About Section */
.footer-about {
    flex: 1 1 300px;
    max-width: 380px;
}

.footer-logo {
    height: 45px;
    margin-bottom: 20px;
    filter: brightness(2);
}

.footer-about p {
    color: #aaa;
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #333;
    color: #fff;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background-color: #027C02;
    transform: translateY(-3px);
}

.tiktok-icon {
    height: 16px;
    width: 16px;
    filter: invert(1);
}

/* Footer Categories & Quick Links */
.footer-categories,
.footer-quick-links {
    flex: 1 1 170px;
}

.footer-categories h3,
.footer-quick-links h3,
.footer-newsletter h3 {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-categories h3:after,
.footer-quick-links h3:after,
.footer-newsletter h3:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background-color: #027C02;
}

.footer-categories ul,
.footer-quick-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-categories ul li,
.footer-quick-links ul li {
    margin-bottom: 12px;
}

.footer-categories ul li a,
.footer-quick-links ul li a {
    color: #aaa;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s ease;
    position: relative;
    padding-left: 15px;
}

.footer-categories ul li a:before,
.footer-quick-links ul li a:before {
    content: '\f105';
    font-family: 'FontAwesome';
    position: absolute;
    left: 0;
    top: 0;
    color: #027C02;
}

.footer-categories ul li a:hover,
.footer-quick-links ul li a:hover {
    color: #fff;
    padding-left: 18px;
}

/* Footer Newsletter */
.footer-newsletter {
    flex: 1 1 300px;
    max-width: 380px;
}

.footer-newsletter p {
    color: #aaa;
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.newsletter-form {
    position: relative;
    margin-bottom: 15px;
}

.newsletter-form input {
    width: 100%;
    padding: 12px 60px 12px 15px;
    border-radius: 6px;
    border: none;
    background-color: #333;
    color: #fff;
    font-size: 14px;
}

.newsletter-form input:focus {
    outline: none;
    background-color: #444;
}

.newsletter-form button {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 50px;
    background-color: #027C02;
    border: none;
    border-radius: 0 6px 6px 0;
    color: #fff;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.newsletter-form button:hover {
    background-color: #025a02;
}

.newsletter-info {
    font-size: 12px;
    color: #777;
}

/* Footer Bottom */
.footer-bottom {
    background-color: #111;
    padding: 20px 0;
    font-size: 14px;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-credit .fa-heart {
    color: #f44336;
    margin: 0 3px;
}

/* Go to Top Button */
#go-top {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 99;
    display: none;
}

#go-top a {
    display: block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background-color: #027C02;
    color: #fff;
    border-radius: 4px;
    transition: background-color 0.2s;
}

#go-top a:hover {
    background-color: #025a02;
}

#go-top.visible {
    display: block;
}

/* Responsive Styles */
@media screen and (max-width: 992px) {
    .footer-content {
        gap: 40px;
    }
    
    .footer-about {
        flex: 1 1 100%;
        max-width: 100%;
    }
}

@media screen and (max-width: 768px) {
    .footer-top {
        padding: 40px 0 20px;
    }
    
    .footer-bottom-content {
        justify-content: center;
        text-align: center;
    }
    
    .footer-categories, 
    .footer-quick-links {
        flex: 1 1 40%;
    }
    
    .footer-newsletter {
        flex: 1 1 100%;
    }
}

@media screen and (max-width: 576px) {
    .footer-categories, 
    .footer-quick-links {
        flex: 1 1 100%;
    }
}
