/* Mobile-optimized footer styles */

/* Reduce overall footer padding */
@media (max-width: 768px) {
    .footer {
        padding: 30px 0 20px;
    }
    
    .footer-content {
        gap: 20px;
        margin-bottom: 20px;
    }
    
    .footer-column h3 {
        font-size: 16px;
        margin-bottom: 10px;
        padding-bottom: 6px;
    }
    
    .footer-column h3::after {
        width: 40px;
    }
    
    .footer-column p {
        margin-bottom: 12px;
        font-size: 14px;
    }
    
    .footer-links li {
        margin-bottom: 8px;
    }
    
    .footer-links a {
        font-size: 14px;
    }
}

/* Further optimize for smaller screens */
@media (max-width: 480px) {
    .footer {
        padding: 20px 0 15px;
    }
    
    .footer-content {
        gap: 12px;
        margin-bottom: 12px;
    }
    
    .footer-column h3 {
        font-size: 14px;
        margin-bottom: 6px;
        padding-bottom: 4px;
    }
    
    .footer-column h3::after {
        width: 30px;
        height: 1px;
    }
    
    .footer-column p {
        margin-bottom: 8px;
        font-size: 12px;
        line-height: 1.4;
    }
    
    .footer-links {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
    }
    
    .footer-links li {
        margin-bottom: 0;
        margin-right: 8px;
    }
    
    .footer-links a {
        font-size: 12px;
    }
    
    .footer-links a i {
        margin-right: 4px;
        font-size: 10px;
    }
    
    .social-links {
        gap: 8px;
        margin-top: 8px;
    }
    
    .social-links a {
        width: 28px;
        height: 28px;
    }
    
    .footer-bottom {
        padding-top: 10px;
        font-size: 11px;
    }
}
