/* ================================
   AB Performance - Footer CSS
   Modern Minimalist Design
   ================================ */

.ab-performance-footer {
    background: #0f0f0f;
    color: #ffffff;
    padding: 50px 20px 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.ab-performance-footer-container {
    max-width: 1100px;
    margin: 0 auto;
}

.ab-performance-footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.ab-performance-footer-col p {
    margin: 0;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.2px;
}

.ab-performance-footer-col a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 13px;
}

.ab-performance-footer-col a:hover {
    color: #e1303a;
}

/* Social Links */
.ab-performance-social-links {
    display: flex;
    gap: 18px;
    justify-content: center;
}

.ab-performance-social-links a {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.ab-performance-social-links a:hover {
    color: #ffffff;
    border-color: #e1303a;
    background: rgba(225, 48, 58, 0.1);
    transform: translateY(-2px);
}

/* ================================
   Responsive Design
   ================================ */

@media (max-width: 768px) {
    .ab-performance-footer {
        padding: 40px 20px 25px;
    }
    
    .ab-performance-footer-content {
        flex-direction: column;
        text-align: center;
        gap: 22px;
    }
    
    .ab-performance-social-links {
        order: -1;
    }
}

@media (max-width: 480px) {
    .ab-performance-footer {
        padding: 35px 15px 22px;
    }
    
    .ab-performance-footer-content {
        gap: 18px;
    }
    
    .ab-performance-social-links a {
        width: 36px;
        height: 36px;
        font-size: 15px;
    }
}