/* ========================================= */
/* Footer Styles - Unified for Both Versions */
/* ========================================= */

.site-footer {
    background: linear-gradient(180deg, #0a0a0a 0%, #000000 100%);
    border-top: 1px solid #222;
    padding: 3rem 2rem 1.5rem;
    margin-top: auto;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

/* Main 3-Column Grid: Logo (Left) | Nav (Center) | Social (Right) */
.footer-main-grid {
    display: grid;
    grid-template-columns: 200px 1fr 80px;
    gap: 2rem;
    align-items: start;
    margin-bottom: 2rem;
}

@media (max-width: 900px) {
    .footer-main-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
}

/* Logo Section (Left) */
.footer-logo-section {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

@media (max-width: 900px) {
    .footer-logo-section {
        justify-content: center;
    }
}

.footer-logo-large {
    height: auto;
    width: 180px;
    max-width: 180px;
    object-fit: contain;
}

/* Navigation Columns (Center) */
.footer-nav-columns {
    display: flex;
    justify-content: space-evenly;
    gap: 2rem;
    flex-wrap: wrap;
}

@media (max-width: 600px) {
    .footer-nav-columns {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
}

.footer-section {
    display: flex;
    flex-direction: column;
    min-width: 120px;
}

@media (max-width: 600px) {
    .footer-section {
        align-items: center;
        text-align: center;
    }
}

.footer-title {
    font-family: 'Apex', 'Apex-Black', sans-serif;
    font-size: 0.85rem;
    color: #fff;
    letter-spacing: 1.5px;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.65rem;
}

.footer-links a {
    color: #666;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links a i {
    font-size: 0.8rem;
    width: 16px;
    text-align: center;
}

.footer-links a:hover {
    color: #f4012b;
}

/* Social Section (Right) - Vertical Stack */
.footer-social-section {
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
}

@media (max-width: 900px) {
    .footer-social-section {
        justify-content: center;
    }
}

.footer-socials-vertical {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

@media (max-width: 900px) {
    .footer-socials-vertical {
        flex-direction: row;
        justify-content: center;
    }
}

.footer-socials-vertical a {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid #333;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #888;
    font-size: 1rem;
    transition: all 0.2s;
}

.footer-socials-vertical a:hover {
    background: rgba(244, 1, 43, 0.15);
    border-color: #f4012b;
    color: #f4012b;
    transform: translateY(-2px);
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid #222;
    padding-top: 1.5rem;
    text-align: center;
}

.footer-copyright {
    color: #555;
    font-size: 0.8rem;
    margin: 0 0 0.35rem 0;
}

.footer-disclaimer {
    color: #444;
    font-size: 0.7rem;
    margin: 0;
}

/* Legacy support for old footer-grid (will be removed) */
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

.footer-brand {
    padding-right: 2rem;
    justify-content: center;
    align-items: center;
}

@media (max-width: 600px) {
    .footer-brand {
        padding-right: 0;
        align-items: center;
    }
}

.footer-logo {
    height: auto;
    width: 160px;
    max-width: 160px;
    object-fit: contain;
    margin: 0;
    display: block;
}

.footer-tagline {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1.25rem;
}

.footer-socials {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

@media (max-width: 600px) {
    .footer-socials {
        justify-content: center;
    }
}

.footer-socials a {
    width: 34px;
    height: 34px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid #333;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #888;
    font-size: 0.9rem;
    transition: all 0.2s;
    flex-shrink: 0;
}

.footer-socials a:hover {
    background: rgba(244, 1, 43, 0.15);
    border-color: #f4012b;
    color: #f4012b;
    transform: translateY(-2px);
}

