/* Footer Styles extracted from footer.html.twig */
.main-footer {
    position: relative;
    background: #1a1a1a;
    color: rgba(255, 255, 255, 0.7);
    padding: 35px 0 0;
}

.main-footer .footer-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-repeat: repeat;
    opacity: 0.05;
}

.main-footer .auto-container { position: relative; z-index: 1; }

.main-footer .widgets-section { margin-bottom: 25px; }

.footer-widget { margin-bottom: 20px; }
.footer-widget .logo { margin-bottom: 15px; }
.footer-widget .text {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    margin-bottom: 15px;
    font-size: 14px;
}

.footer-title {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 10px;
}
.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #8BB449, #58892A);
}

.footer-social_box {
    display: flex;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-social_box li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    transition: all 0.3s ease;
    font-size: 14px;
}
.footer-social_box li a:hover { background: #8BB449; color: #fff; transform: translateY(-3px); }

.footer-list { list-style: none; padding: 0; margin: 0; columns: 2; column-gap: 30px; }
.footer-list li { margin-bottom: 8px; }
.footer-list li a {
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    padding-left: 15px;
    font-size: 14px;
}
.footer-list li a::before {
    content: '\f105';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: #8BB449;
    transition: all 0.3s ease;
}
.footer-list li a:hover { color: #8BB449; padding-left: 20px; }

.footer-contact-list { list-style: none; padding: 0; margin: 0; }
.footer-contact-list li { display: flex; align-items: flex-start; margin-bottom: 20px; }
.footer-contact-list li .icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(139, 180, 73, 0.1);
    color: #8BB449;
    border-radius: 50%;
    margin-right: 15px;
    font-size: 16px;
}
.footer-contact-list li .text { flex: 1; line-height: 1.8; }
.footer-contact-list li .text a { color: rgba(255, 255, 255, 0.7); transition: all 0.3s ease; }
.footer-contact-list li .text a:hover { color: #8BB449; }
.footer-contact-list li .text strong { color: #fff; display: block; margin-bottom: 5px; }

.footer-bottom {
    background: rgba(0, 0, 0, 0.3);
    padding: 18px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.footer-bottom .inner-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}
.footer-copyright { color: rgba(255, 255, 255, 0.5); font-size: 14px; }
.footer-copyright strong { color: #8BB449; }
.footer-nav { display: flex; gap: 30px; list-style: none; padding: 0; margin: 0; }
.footer-nav li a { color: rgba(255, 255, 255, 0.5); font-size: 14px; transition: all 0.3s ease; }
.footer-nav li a:hover { color: #8BB449; }

.footer-widget .theme-btn { display: inline-block; margin-top: 10px; }

@media (max-width: 768px) {
    .main-footer { padding: 30px 0 0; }
    .footer-list { columns: 1; }
    .footer-bottom .inner-container { flex-direction: column; text-align: center; }
    .footer-nav { flex-direction: column; gap: 10px; }
}

