/**
 * Brand Soluxions Inc. - Footer Mobile Responsiveness
 * Dedicated styles for footer mobile view
 */

/* ===== Large Tablet (max-width: 1024px) ===== */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .footer-brand {
        grid-column: 1 / -1;
        text-align: center;
    }
    
    .footer-brand .logo {
        display: flex;
        justify-content: center;
    }
    
    .social-links {
        justify-content: center;
    }
}

/* ===== Tablet (max-width: 768px) ===== */
@media (max-width: 768px) {
    .main-footer {
        padding: 40px 0 0;
    }
    
    .footer-grid {
        display: flex;
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
    
    /* Reorder: Brand/Social -> Contact -> Quick Links */
    .footer-brand {
        order: 1;
    }
    
    .footer-contact {
        order: 2;
    }
    
    .footer-links {
        order: 3;
    }
    
    /* Footer Brand */
    .footer-brand .logo {
        display: flex;
        justify-content: center;
        margin-bottom: 10px;
    }
    
    .footer-brand .logo-img {
        max-width: 120px;
        height: auto;
    }
    
    .footer-brand .tagline {
        font-size: 14px;
        margin-bottom: 15px;
    }
    
    .social-links {
        justify-content: center;
        gap: 12px;
    }
    
    .social-links a {
        width: 38px;
        height: 38px;
    }
    
    /* Footer Contact */
    .footer-contact h4 {
        font-size: 16px;
        margin-bottom: 15px;
        letter-spacing: 1px;
    }
    
    .footer-contact p {
        display: block;
        text-align: center;
        margin-bottom: 10px;
        font-size: 13px;
        line-height: 1.5;
    }
    
    .footer-contact p i {
        display: inline-block;
        margin-right: 8px;
        margin-bottom: 0;
        width: auto;
    }
    
    /* Footer Links */
    .footer-links h4 {
        font-size: 16px;
        margin-bottom: 15px;
        letter-spacing: 1px;
    }
    
    .footer-links ul {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }
    
    .footer-links ul li {
        margin-bottom: 0;
    }
    
    .footer-links a {
        font-size: 14px;
    }
    
    /* Footer Bottom */
    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
        padding: 20px 0;
        margin-top: 10px;
    }
    
    .footer-bottom p {
        font-size: 13px;
    }
    
    .footer-bottom-links {
        justify-content: center;
        gap: 15px;
    }
    
    .footer-bottom-links a {
        font-size: 13px;
    }
}

/* ===== Mobile Phones (max-width: 480px) ===== */
@media (max-width: 480px) {
    .main-footer {
        padding: 35px 0 0;
    }
    
    .footer-grid {
        gap: 25px;
    }
    
    /* Footer Brand */
    .footer-brand .logo-img {
        max-width: 100px;
    }
    
    .footer-brand .tagline {
        font-size: 13px;
        margin-bottom: 12px;
    }
    
    .social-links a {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
    
    /* Footer Contact */
    .footer-contact h4 {
        font-size: 15px;
        margin-bottom: 12px;
    }
    
    .footer-contact p {
        font-size: 12px;
        margin-bottom: 8px;
        padding: 0 10px;
    }
    
    /* Footer Links */
    .footer-links h4 {
        font-size: 15px;
        margin-bottom: 12px;
    }
    
    .footer-links ul {
        gap: 6px;
    }
    
    .footer-links a {
        font-size: 13px;
    }
    
    /* Footer Bottom */
    .footer-bottom {
        gap: 10px;
        padding: 15px 0;
    }
    
    .footer-bottom p {
        font-size: 12px;
    }
    
    .footer-bottom-links {
        gap: 12px;
    }
    
    .footer-bottom-links a {
        font-size: 12px;
    }
}

/* ===== Extra Small Phones (max-width: 360px) ===== */
@media (max-width: 360px) {
    .main-footer {
        padding: 30px 0 0;
    }
    
    .footer-grid {
        gap: 20px;
    }
    
    .footer-brand .logo-img {
        max-width: 90px;
    }
    
    .footer-brand .tagline {
        font-size: 12px;
    }
    
    .social-links a {
        width: 34px;
        height: 34px;
        font-size: 13px;
    }
    
    .footer-contact h4,
    .footer-links h4 {
        font-size: 14px;
        margin-bottom: 10px;
    }
    
    .footer-contact p {
        font-size: 11px;
        padding: 0 5px;
    }
    
    .footer-links a {
        font-size: 12px;
    }
    
    .footer-bottom p,
    .footer-bottom-links a {
        font-size: 11px;
    }
}
