/* Footer Redesign Styles */

/* Contact Info List */
.footer-bottom-widgets .contact-info {
    padding: 0;
    margin: 0;
}

.footer-bottom-widgets .contact-info li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #666;
}

.footer-bottom-widgets .contact-info li i {
    font-size: 16px;
    color: #3a9aed;
    margin-right: 8px;
    width: 20px;
}

.footer-bottom-widgets .contact-info li a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom-widgets .contact-info li a:hover {
    color: #3a9aed;
}

/* Social Icons in Footer */
.footer-social-icons h5 {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.footer-social-icons .social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #f5f5f5;
    color: #666;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social-icons .social-icon:hover {
    background: #3a9aed;
    color: #ffffff;
    transform: translateY(-3px);
}

.footer-social-icons .social-icon i {
    font-size: 18px;
}

/* Footer Menu Styling */
.footer-bottom-widgets-menu .menu {
    padding: 0;
    margin: 0;
    list-style: none;
}

.footer-bottom-widgets-menu .menu li {
    margin-bottom: 10px;
}

.footer-bottom-widgets-menu .menu li a {
    color: #666;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

.footer-bottom-widgets-menu .menu li a:hover {
    color: #3a9aed;
    padding-left: 5px;
}

.footer-bottom-widgets-menu .menu li a:before {
    content: '';
    position: absolute;
    left: -10px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 2px;
    background: #3a9aed;
    transition: width 0.3s ease;
}

.footer-bottom-widgets-menu .menu li a:hover:before {
    width: 5px;
}

/* Widget Titles */
.footer-bottom-widgets .widget-title {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #3a9aed;
}

/* Mobile Footer Styling */
@media (max-width: 991.98px) {
    .mobile-footer .accordion-button {
        font-size: 15px;
        font-weight: 600;
        padding: 15px;
    }
    
    .mobile-footer .accordion-body ul {
        padding: 0;
        margin: 0;
    }
    
    .mobile-footer .accordion-body ul li {
        margin-bottom: 10px;
    }
    
    .mobile-footer .accordion-body ul li a {
        color: #666;
        text-decoration: none;
        font-size: 14px;
    }
    
    .mobile-newsletter h5 {
        font-size: 16px;
        font-weight: 600;
        margin-bottom: 15px;
    }
    
    .mobile-social a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: #f5f5f5;
        transition: all 0.3s ease;
    }
    
    .mobile-social a:hover {
        background: #3a9aed;
        color: #ffffff !important;
    }
}

/* Copyright Bar */
.copyright-bar {
    background: #f8f9fa;
    padding: 20px 0;
    border-top: 1px solid #e5e5e5;
}

.copyright-bar .copyright {
    font-size: 14px;
    color: #666;
}

.copyright-bar .copyright a {
    color: #3a9aed;
    text-decoration: none;
    font-weight: 600;
}

.copyright-bar .copyright a:hover {
    text-decoration: underline;
}

/* Payment Icons */
.copyright-bar .payment-icons i {
    color: #999;
    transition: color 0.3s ease;
}

.copyright-bar .payment-icons i:hover {
    color: #3a9aed;
}




