/* Footer Style Enhancements */
/* Fix for white strip below footer */
#newsletter.section {
    margin-bottom: 0 !important;
    padding-bottom: 30px;
}

#footer {
    margin-top: 0;
}

/* Top Footer Section */
#footer {
    background-color: #1e1f29;
    color: #b9babc;
}

#footer .footer {
    margin: 30px 0px;
}

#footer .footer-title {
    color: #fff;
    text-transform: uppercase;
    font-size: 18px;
    margin: 0px 0px 20px;
}

/* Footer Links */
.footer-links li {
    margin-top: 10px;
    transition: all 0.3s;
}

.footer-links li a {
    color: #b9babc;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    text-decoration: none;
}

.footer-links li a:hover {
    color: #fff;
    padding-left: 5px;
    text-decoration: none;
}

.footer-links li a i {
    margin-right: 15px;
    width: 14px;
    text-align: center;
    color: #9d101c;
}

/* Bottom Footer */
#bottom-footer {
    background-color: #15161c;
    padding: 20px 0;
}

/* Payment Icons */
.footer-payments {
    margin: 0px 0px 15px;
    padding: 0;
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-payments li {
    display: inline-block;
    margin: 0 5px;
    transition: transform 0.3s ease;
}

.footer-payments li:hover {
    transform: translateY(-3px);
}

.footer-payments li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 35px;
    border-radius: 4px;
    transition: all 0.3s;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Brand-specific colors */
.footer-payments li a .fab.fa-cc-visa {
    color: #0157a2;
    font-size: 24px;
}

.footer-payments li a .fab.fa-cc-mastercard {
    color: #eb001b;
    font-size: 24px;
}

.footer-payments li a .fab.fa-cc-paypal {
    color: #003087;
    font-size: 24px;
}

.footer-payments li a .fab.fa-cc-discover {
    color: #ff6000;
    font-size: 24px;
}

.footer-payments li a .fab.fa-cc-amex {
    color: #2e77bc;
    font-size: 24px;
}

.footer-payments li a .fas.fa-credit-card {
    color: #6c757d;
    font-size: 24px;
}

.footer-payments li a:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    background-color: #f8f9fa;
    color: #fff;
}

/* Brand-specific hover effects */
.footer-payments li a:hover .fab.fa-cc-visa {
    color: #0157a2;
    filter: drop-shadow(0 0 2px rgba(1, 87, 162, 0.5));
}

.footer-payments li a:hover .fab.fa-cc-mastercard {
    background: -webkit-linear-gradient(45deg, #eb001b, #f79e1b);
    background: linear-gradient(45deg, #eb001b, #f79e1b);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    filter: drop-shadow(0 0 2px rgba(235, 0, 27, 0.5));
}

.footer-payments li a:hover .fab.fa-cc-paypal {
    color: #003087;
    filter: drop-shadow(0 0 2px rgba(0, 48, 135, 0.5));
}

.footer-payments li a:hover .fab.fa-cc-discover {
    color: #ff6000;
    filter: drop-shadow(0 0 2px rgba(255, 96, 0, 0.5));
}

.footer-payments li a:hover .fab.fa-cc-amex {
    color: #2e77bc;
    filter: drop-shadow(0 0 2px rgba(46, 119, 188, 0.5));
}

.footer-payments li a:hover .fas.fa-credit-card {
    color: #495057;
    filter: drop-shadow(0 0 2px rgba(108, 117, 125, 0.5));
}

/* Copyright Text */
.copyright {
    margin: 0;
    color: #b9babc;
    font-size: 14px;
}

/* Responsive Adjustments */
@media (max-width: 767px) {
    #footer .footer {
        margin: 20px 0px;
    }
    
    .footer-links li {
        margin-top: 8px;
    }
    
    #footer .footer-title {
        font-size: 16px;
        margin-bottom: 15px;
    }
    
    .footer-payments li a {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
}

/* Footer About Us Section */
#footer p {
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Social Media Icons - Optional Addition */
.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.footer-social a {
    color: #b9babc;
    background-color: #1e1f29;
    border: 1px solid #15161c;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.footer-social a:hover {
    background-color: #9d101c;
    color: #fff;
    border-color: #9d101c;
}

/* Newsletter Social Media Icons */
.d-flex.flex-wrap.justify-content-center.gap-2.gap-md-3 a {
    transition: all 0.3s ease;
    background-color: #fff;
    color: #9d101c;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    border-radius: 50%;
    border: 2px solid #9d101c;
}

.d-flex.flex-wrap.justify-content-center.gap-2.gap-md-3 a:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    background-color: #f8f9fa;
    color: #7d0c16;
    border-color: #7d0c16;
}


#newsletter .newsletter .input {
    background-color: #fff;
    color: #333;
}

/* #newsletter .newsletter .newsletter-btn {
    background-color: #9d101c;
    color: #fff;
    border: none;
} */

#newsletter .d-flex.flex-wrap.justify-content-center.gap-2.gap-md-3 a {
    background-color: #fff;
}
