/* ============================================
   FOOTER CUSTOM STYLES
   ============================================ */

/* Footer Navigation Links */
.footer-nav li {
    margin-bottom: 0.5rem;
}

.footer-nav a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s ease;
}

.footer-nav a:hover {
    color: #FFC107;
}

/* Social Media Buttons - Override Bootstrap */
.site-footer .btn-outline-light:hover {
    background-color: #FFC107;
    border-color: #FFC107;
    color: #212529;
}

/* App Badge Images */
.site-footer .img-fluid {
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.site-footer .img-fluid:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

/* Mobile Responsive Adjustments */
@media (max-width: 767px) {
    .site-footer {
        padding-top: 2rem !important;
        padding-bottom: 2rem !important;
    }

    .site-footer .h5 {
        font-size: 1.1rem;
    }

    .site-footer .h6 {
        font-size: 1rem;
    }
}