/* Footer Fix - Payment Icons and Layout */

/* ===== PAYMENT ICONS FIX ===== */
.payment-icons {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 15px !important;
    align-items: center !important;
}

.payment-icons i {
    font-family: "Font Awesome 6 Brands" !important;
    font-weight: 400 !important;
    font-size: 2.5rem !important;
    color: #fff !important;
    opacity: 0.9 !important;
    transition: opacity 0.2s ease !important;
}

.payment-icons i:hover {
    opacity: 1 !important;
}

/* Specific icon codes */
.payment-icons .fa-cc-visa::before { content: "\f1f0" !important; }
.payment-icons .fa-cc-mastercard::before { content: "\f1f1" !important; }
.payment-icons .fa-bitcoin::before { content: "\f379" !important; }
.payment-icons .fa-ethereum::before { content: "\f42e" !important; }
.payment-icons .fa-cc-paypal::before { content: "\f1f4" !important; }

/* ===== FOOTER LAYOUT ===== */
.footer-payments-partners {
    display: grid !important;
    grid-template-columns: 1fr 2fr !important;
    gap: 40px !important;
    padding: 30px 0 !important;
    border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
    margin-top: 30px !important;
}

.footer-payments h4,
.footer-partners h4 {
    color: #fbbf24 !important;
    font-size: 1.1rem !important;
    margin-bottom: 20px !important;
    font-weight: 600 !important;
}

.partner-logos {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 20px !important;
    align-items: center !important;
}

.partner-logos img {
    height: 35px !important;
    width: auto !important;
    opacity: 0.85 !important;
    transition: opacity 0.2s ease !important;
    filter: brightness(1.1) !important;
}

.partner-logos img:hover {
    opacity: 1 !important;
}

/* ===== MOBILE FOOTER ===== */
@media (max-width: 768px) {
    .footer-payments-partners {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
        text-align: center !important;
    }
    
    .payment-icons {
        justify-content: center !important;
    }
    
    .payment-icons i {
        font-size: 2rem !important;
    }
    
    .partner-logos {
        justify-content: center !important;
    }
    
    .partner-logos img {
        height: 28px !important;
    }
    
    .footer-payments h4,
    .footer-partners h4 {
        text-align: center !important;
    }
}

/* ===== QUICK LINKS SECTION ===== */
.footer-quick-links {
    text-align: center !important;
    padding: 20px 0 !important;
}

.footer-quick-links h4 {
    color: #fbbf24 !important;
    margin-bottom: 15px !important;
}

.footer-quick-links a {
    color: #94a3b8 !important;
    text-decoration: none !important;
    margin: 0 10px !important;
    font-size: 0.9rem !important;
    transition: color 0.2s ease !important;
}

.footer-quick-links a:hover {
    color: #fff !important;
}

@media (max-width: 768px) {
    .footer-quick-links a {
        display: inline-block !important;
        margin: 5px 8px !important;
        font-size: 0.8rem !important;
    }
}
