/* Footer Component Redesign */
footer {
    position: relative;
    padding: 60px 0 20px;
    background-image: linear-gradient(180deg, #09380C 0%, #3D6E35 100%);
    color: var(--color-white);
    text-align: center;
}

footer .elementor-background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: transparent;
    opacity: 0.97;
    z-index: 1;
}

footer .container {
    position: relative;
    z-index: 2;
}

.footer-logo-title {
    color: var(--color-white);
    font-family: var(--font-accent);
    font-size: 27px;
    font-weight: 500;
    margin-bottom: 20px;
}

.social-icons-footer {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
    padding: 10px;
}

.social-icon-footer {
    font-size: 20px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-white);
    color: var(--color-accent);
    transition: all 0.3s ease;
}

.social-icon-footer:hover {
    transform: translateY(-5px);
    background-color: var(--color-primary);
    color: var(--color-white);
}

.footer-contact-list {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-accent);
    font-size: 17px;
}

.footer-contact-item i {
    color: #21FF31;
    /* Neon green from original */
    font-size: 23px;
}

.footer-contact-item a {
    color: var(--color-white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact-item a:hover {
    color: #21FF31;
}

.copyright-section {
    border-top: 1px dotted rgba(255, 255, 255, 0.59);
    padding-top: 20px;
    margin-top: 30px;
}

.copyright-text {
    font-family: var(--font-accent);
    font-size: 14px;
    font-weight: 300;
    line-height: 1.5em;
    opacity: 0.9;
}

@media (max-width: 1024px) {
    footer {
        padding: 40px 20px;
    }

    .footer-contact-list {
        flex-direction: column;
        gap: 15px;
    }

    .footer-logo-title {
        font-size: 22px;
    }
}