/* Footer Styles */
footer {
    background: rgba(10, 14, 10, 0.95);
    backdrop-filter: blur(20px);
    color: var(--white);
    padding: 6rem 0 3rem;
    border-top: 2px solid var(--border);
    position: relative;
}

.footer-content {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 3rem;
    display: grid;
    grid-template-columns: 1.25fr 2fr;
    gap: 6rem;
    margin-bottom: 5rem;
    padding-bottom: 5rem;
    border-bottom: 1px solid var(--border);
}

.footer-brand {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.footer-brand a {
    display: block;
    transition: transform 0.3s ease;
}

.footer-brand a:hover {
    transform: scale(1.05);
}

.footer-brand img {
    height: 120px;
    filter: drop-shadow(0 0 20px var(--glow));
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
}

.footer-section h4 {
    font-size: 1.1875rem;
    font-weight: 900;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent);
    text-shadow: 0 0 10px var(--glow);
}

.footer-section a {
    display: block;
    color: var(--text);
    text-decoration: none;
    opacity: 0.7;
    margin-bottom: 1rem;
    font-size: 1.125rem;
    transition: all 0.3s ease;
}

.footer-section a:hover {
    opacity: 1;
    color: var(--accent);
    transform: translateX(10px);
    text-shadow: 0 0 10px var(--glow);
}

.footer-bottom {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.0625rem;
    opacity: 0.6;
}

.footer-legal {
    display: flex;
    gap: 2.5rem;
}

.footer-legal a {
    color: var(--text);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: var(--accent);
    text-shadow: 0 0 10px var(--glow);
}

@media (max-width: 991px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
    }
}
