/* =========================================
   ELITE SPORTS FOOTER
========================================= */
.site-footer {
    background-color: #02060C; /* Pitch black/navy for premium feel */
    color: #fff;
    font-family: var(--font-main);
    margin-top: auto;
    border-top: 4px solid var(--brand-red); /* Aggressive red racing stripe at the top */
}

/* --- 1. Aggressive CTA (Newsletter) --- */
.footer-cta {
    background: linear-gradient(135deg, var(--brand-navy) 0%, #050E1D 100%);
    padding: 60px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.footer-cta-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}
.cta-text h2 {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}
.cta-text p {
    font-size: 1.1rem;
    color: #A0AEC0;
}
.cta-form {
    display: flex;
    width: 100%;
    max-width: 550px;
}
.cta-form input {
    flex-grow: 1;
    padding: 20px;
    border: none;
    outline: none;
    font-family: var(--font-main);
    font-size: 1rem;
    border-radius: 4px 0 0 4px;
    background: #fff;
}
.btn-cta-small {
    background-color: var(--brand-red);
    color: #fff;
    border: none;
    padding: 0 40px;
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    border-radius: 0 4px 4px 0;
    transition: background 0.3s, transform 0.2s;
}
.btn-cta-small:hover {
    background-color: var(--brand-dark-red);
}

/* --- 2. Main Footer Grid --- */
.footer-main {
    padding: 80px 0;
}
.footer-grid {
    display: grid;
    /* UPDATED: Exactly 5 columns formatted to fit perfectly */
    grid-template-columns: 1.8fr 1fr 1fr 1fr 1.5fr; 
    gap: 40px;
}
.footer-logo {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 900;
    color: #fff;
    letter-spacing: -1px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 20px;
}
.footer-logo span {
    color: var(--brand-red);
}
.footer-desc {
    color: #718096;
    line-height: 1.7;
    margin-bottom: 30px;
    max-width: 350px;
    font-size: 1.05rem;
}

.footer-col h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
    color: #fff;
    position: relative;
    padding-bottom: 10px;
}
/* Tiny red accent line under headers */
.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 3px;
    background-color: var(--brand-red);
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-col ul li {
    margin-bottom: 16px;
}
.footer-col ul li a {
    color: #A0AEC0;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s, transform 0.2s;
    display: inline-block;
}

/* Sporty "Forward Motion" hover effect */
.footer-col ul li a:hover {
    color: #fff;
    transform: translateX(8px); 
}

/* --- NEW: Contact Info List Styling --- */
.footer-contact-list li {
    font-size: 0.95rem;
    color: #A0AEC0;
    line-height: 1.6;
    margin-bottom: 15px;
}
.footer-contact-list strong {
    color: #fff;
    display: block;
    margin-bottom: 2px;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
.footer-contact-list a {
    color: #A0AEC0;
    text-decoration: none;
    transition: color 0.2s;
}
.footer-contact-list a:hover {
    color: #fff;
    transform: none; /* Disables the slide effect for raw contact info */
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 15px;
}
.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background-color: rgba(255,255,255,0.05);
    color: #fff;
    border-radius: 4px; /* Squared off for aggressive look */
    font-size: 1.2rem;
    transition: all 0.3s;
}
.social-icons a:hover {
    background-color: var(--brand-red);
    transform: translateY(-5px);
}

/* --- 3. Footer Bottom (Copyright) --- */
.footer-bottom {
    background-color: #010306; /* Pure black */
    padding: 25px 0;
    font-size: 0.95rem;
    color: #4A5568;
    border-top: 1px solid rgba(255,255,255,0.05);
}
.bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}
.legal-links a {
    color: #4A5568;
    margin-left: 25px;
    text-decoration: none;
    transition: color 0.2s;
}
.legal-links a:hover {
    color: #fff;
}
/* Footer Logo Sizing */
.footer-logo-link {
    display: inline-block;
    margin-bottom: 20px;
}

.footer-logo-img {
    height: 150px; 
    max-height: 150px;
    width: auto;
    object-fit: contain;
    display: block;
}

/* --- Mobile Responsiveness --- */

/* Tablets & Small Laptops */
@media (max-width: 1200px) {
    .footer-grid { 
        /* Drops to 3 columns if the screen gets too narrow */
        grid-template-columns: 1fr 1fr 1fr; 
        gap: 50px; 
    }
}

/* Mobile Devices */
@media (max-width: 768px) {
    .footer-grid { 
        grid-template-columns: 1fr 1fr; /* Drops to 2 columns */
        gap: 40px; 
    }
    .footer-cta-inner { flex-direction: column; text-align: center; }
}

/* Small Phones */
@media (max-width: 600px) {
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .footer-col h3::after { left: 50%; transform: translateX(-50%); } 
    .footer-desc { margin: 0 auto 30px; }
    .social-icons { justify-content: center; }
    .bottom-flex { flex-direction: column; text-align: center; }
    .legal-links a { margin: 0 10px; }

    /* Shrink the giant unbroken words! */
    .cta-text h2 { font-size: 2rem !important; } 
    .footer-logo { font-size: 1.8rem !important; letter-spacing: 0 !important; } 

    /* Shrink logo */
    .footer-logo-img {
        height: 90px; 
        max-height: 90px;
        margin: 0 auto;
    }
    .footer-logo-link {
        display: block;
    }

    /* Force the form to stack using !important */
    .cta-form { 
        flex-direction: column !important; 
        gap: 15px !important; 
    }
    .cta-form input { 
        width: 100% !important; 
        border-radius: 4px !important; 
    }
    .btn-cta-small { 
        width: 100% !important; 
        padding: 15px !important; 
        border-radius: 4px !important; 
    }
}