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

footer {
    background-color: #ffffff;
    color: #333;
    padding: 60px 0 20px;
    border-top: 1px solid rgba(0,0,0,0.05);
    position: relative;
    z-index: 10;
}

.footer-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-green, #0da915);
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background: var(--primary-green, #0da915);
}

footer .text-muted {
    color: #6c757d !important;
    line-height: 1.7;
    font-size: 0.95rem;
}

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

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(13, 169, 21, 0.1);
    border-radius: 50%;
    color: var(--primary-green, #0da915);
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-links a:hover {
    background: var(--primary-green, #0da915);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(13, 169, 21, 0.3);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-link {
    color: #555;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    padding-left: 0;
    position: relative;
}

.footer-link::before {
    content: '›';
    position: absolute;
    left: -15px;
    opacity: 0;
    transition: all 0.3s ease;
    color: var(--primary-green, #0da915);
}

.footer-link:hover {
    color: var(--primary-green, #0da915);
    padding-left: 15px;
}

.footer-link:hover::before {
    opacity: 1;
    left: 0;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-info p {
    color: #555;
    margin: 0;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
}

.contact-info i {
    color: var(--primary-green, #0da915);
    font-size: 1.1rem;
    margin-right: 10px;
    min-width: 20px;
}

footer hr {
    border-color: rgba(0, 0, 0, 0.1);
    margin: 40px 0 30px;
}

.footer-bottom-links a {
    color: #6c757d;
    text-decoration: none;
    margin-left: 20px;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--primary-green, #0da915);
}

.logo-section {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.logo-section img {
    width: 50px;
    height: 50px;
    margin-right: 15px;
    filter: none;
}

@media (max-width: 991px) {
    footer {
        padding: 40px 0 20px;
    }

    .col-lg-3 {
        margin-bottom: 30px;
    }

    .footer-bottom-links {
        margin-top: 15px;
        text-align: center !important;
    }

    .footer-bottom-links a {
        margin: 0 10px;
    }
}

@media (max-width: 576px) {
    .footer-title {
        font-size: 1.1rem;
    }

    .text-muted {
        font-size: 0.9rem;
    }

    .social-links a {
        width: 36px;
        height: 36px;
    }
}