/**
 * Footer Mobile Padding Fix
 * Adds left padding to footer content on mobile devices
 */

/* Mobile Footer Padding */
@media (max-width: 767px) {
    /* Footer container padding */
    .site-footer .container {
        padding-left: 2px !important;
        padding-right: 2px !important;
    }
    
    /* Footer widgets padding */
    .site-footer .footer-widgets {
        padding-left: 2px !important;
        padding-right: 2px !important;
    }
    
    /* Individual footer widget padding */
    .site-footer .footer-widget,
    .site-footer .footer-widget-area {
        padding-left: 8px !important;
        padding-right: 8px !important;
        margin-bottom: 20px;
    }
    
    /* Footer widget headings */
    .site-footer .footer-widget h3,
    .site-footer .footer-widget h4 {
        padding-left: 0;
        margin-bottom: 10px;
    }
    
    /* Footer widget content */
    .site-footer .footer-widget p,
    .site-footer .footer-widget ul,
    .site-footer .footer-widget ol {
        padding-left: 0;
        margin-left: 0;
    }
    
    /* Footer widget list items */
    .site-footer .footer-widget ul li {
        padding-left: 15px;
        position: relative;
    }
    
    .site-footer .footer-widget ul li:before {
        content: "›";
        position: absolute;
        left: 0;
        color: #999;
    }
    
    /* Contact info */
    .site-footer .contact-info {
        padding-left: 0;
    }
    
    .site-footer .contact-info li {
        padding-left: 20px;
        position: relative;
    }
    
    .site-footer .contact-info li i {
        position: absolute;
        left: 0;
        top: 2px;
        width: 16px;
    }
    
    /* Newsletter form */
    .site-footer .newsletter-form {
        padding: 10px 0;
    }
    
    .site-footer .newsletter-form form {
        display: flex;
        gap: 5px;
        padding: 0;
    }
    
    .site-footer .newsletter-form input {
        flex: 1;
        padding: 8px 10px;
        font-size: 14px;
    }
    
    .site-footer .newsletter-form button {
        padding: 8px 15px;
    }
    
    /* Social links */
    .site-footer .social-links {
        padding: 10px 0;
        display: flex;
        gap: 10px;
        flex-wrap: wrap;
    }
    
    /* Footer bottom */
    .site-footer .footer-bottom {
        padding: 15px 8px !important;
        text-align: center;
    }
    
    .site-footer .footer-bottom p {
        margin: 5px 0;
        padding: 0;
        font-size: 13px;
    }
    
    .site-footer .footer-bottom .disclaimer {
        margin-top: 10px;
        padding-top: 10px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .site-footer .footer-bottom small {
        font-size: 11px;
        line-height: 1.4;
        display: block;
        padding: 0 5px;
    }
}

/* Tablet Footer Padding */
@media (min-width: 768px) and (max-width: 1024px) {
    .site-footer .container {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
    
    .site-footer .footer-widgets {
        padding: 20px 0;
    }
    
    .site-footer .footer-widget,
    .site-footer .footer-widget-area {
        padding: 0 10px;
    }
}