.site-footer {
    background-color: #000000; 
    padding: 60px 20px 30px 20px;
    margin-top: 50px;
    border-top: 4px solid var(--bright-orange);
    color: var(--text-light);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-col h3 { 
    color: var(--bright-orange); 
    margin-bottom: 20px; 
    font-size: 1.3rem;
    font-family: var(--font-display);
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.footer-col a { 
    display: block; 
    color: #ffffff; 
    text-decoration: none; 
    margin-bottom: 10px; 
    transition: 0.3s ease; /* Smoother transition */
}

.footer-col a:hover { color: var(--bright-orange); }

.footer-bottom {
    text-align: center;
    padding: 20px 20px; 
    font-size: 0.85rem;
    opacity: 0.6;
    background: #000000;
    width: 100%; 
    margin-top: 0; 
    border-top: 1px solid var(--border-dark);
}

.footer-logo {
    max-width: 40px;    
    height: auto;
    margin-bottom: 0;    
}

.footer-social-container {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 10px;
}

.social-icon {
    display: inline-flex !important; 
    align-items: center !important;
    justify-content: center !important;
    text-align: center;
    line-height: 0; 
}

.social-icon i {
    margin: 0;
    padding: 0;
}

.brand-header {
    display: flex;
    flex-direction: row; 
    align-items: center;  
    gap: 15px;          
    margin-bottom: 20px;
}

.tagline {
    margin: 0;
    color: var(--text-light);
}
