/* Footer Styles */
.site-footer {
    background-color: var(--negro-legalzone);
    color: var(--blanco-legalzone);
    padding: 40px 0 20px;
    margin-top: 30px;
    font-size: 14px;
    border-top: 4px solid var(--lz-navy);
}

.footer-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* Legal Images / Badges */
.footer-legal-images {
    display: flex;
    justify-content: center;
    gap: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #333;
    flex-wrap: wrap;
}

.footer-legal-images img {
    max-height: 50px;
    width: auto;
    transition: opacity 0.3s;
}

/* Menus grid - mobile first */
.footer-menus {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
}

.footer-menu-col h3 {
    color: var(--lz-gold);
    font-size: 16px;
    margin-bottom: 20px;
    text-transform: uppercase;
    border-bottom: 1px solid #0D3A5A;
    padding-bottom: 10px;
    display: inline-block;
}

.footer-menu-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu-col ul li {
    margin-bottom: 10px;
}

.footer-menu-col ul li a {
    color: var(--gris-legalzone);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-menu-col ul li a:hover {
    color: var(--blanco-legalzone);
}

/* SEO Text */
.footer-seo-text {
    border-top: 1px solid #333;
    padding-top: 30px;
    font-size: 13px;
    line-height: 1.6;
    color: #888;
    text-align: justify;
}

.footer-seo-text h4 {
    color: var(--blanco-legalzone);
    font-size: 14px;
    margin-bottom: 15px;
}

/* Copyright */
.site-info {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #222;
    color: #666;
    font-size: 12px;
}

/* Small phones */
@media (max-width: 374px) {
    .site-footer {
        padding: 30px 0 15px;
    }

    .footer-container {
        gap: 25px;
    }

    .footer-container .container {
        padding: 0 20px;
    }

    .footer-legal-images {
        gap: 10px;
        padding-bottom: 20px;
    }

    .footer-legal-images img {
        max-height: 35px;
    }

    .footer-menus {
        gap: 20px;
    }

    .footer-seo-text {
        padding-top: 20px;
        font-size: 12px;
    }
}

/* Phones */
@media (max-width: 767px) {
    .footer-menus {
        grid-template-columns: 1fr;
    }

    .footer-legal-images {
        gap: 15px;
    }
}

/* Tablet */
@media (min-width: 768px) {
    .footer-menus {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Desktop */
@media (min-width: 992px) {
    .site-footer {
        padding: 60px 0 20px;
        margin-top: 50px;
    }

    .footer-menus {
        grid-template-columns: repeat(4, 1fr);
    }
}

footer .awards {
    padding-bottom: 40px;
}

footer .awards .title {
    font-size: 26px;
    line-height: 120%;
    word-wrap: break-word;
    color: #fff;
    text-align: center;
    position: relative;
    margin-bottom: 50px;
}

footer .awards ul {
    margin: -5px -15px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

footer .awards ul li {
    display: inline-block;
}

footer .awards a {
    display: inline-block;
    margin: 5px 15px;
}

footer .awards a img {
    height: 60px;
    width: auto;
    display: block;
}

/* Social Icons */
.footer-social {
    text-align: center;
    margin-top: 30px;
}

.footer-social-title {
    color: var(--lz-gold);
    font-size: 16px;
    margin-bottom: 15px;
    text-transform: uppercase;
    transition: color 0.3s;
}

body.page-dark-mode .footer-social-title {
    color: #00c853;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s;
}

.social-link:hover {
    background: var(--lz-gold);
    transform: translateY(-3px);
}

.social-link svg {
    width: 20px;
    height: 20px;
    transition: fill 0.3s;
}

body.page-dark-mode .social-link {
    background: rgba(0, 200, 83, 0.1);
}

body.page-dark-mode .social-link:hover {
    background: #00c853;
}

body.page-dark-mode .social-link svg {
    fill: #e8eaed;
}

body.page-dark-mode .social-link:hover svg {
    fill: #0a0d10;
}

.cookie-content a:-webkit-any-link {
    color: var(--lz-white);
    text-decoration: underline;
    transition: color 0.3s;
}

.footer-seo-text a:-webkit-any-link {
    color: var(--lz-muted);
    text-decoration: underline;
    transition: color 0.3s;
}