/**
 * Pro Tint Footer - Exact UI Match
 */

/* ============================================
   SITE FOOTER
============================================ */

.site-footer {
    background-color: #040404;
    color: #888888;
    padding-top: 70px;
    width: 100%;
}

.footer-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 30px;
}

/* ============================================
   FOOTER TOP - COLUMNS
============================================ */

.footer-top {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

/* ============================================
   FOOTER BRAND COLUMN
============================================ */

.footer-col.footer-brand {
    max-width: 100%;
}

.footer-brand-logo {
    font-size: 24px;
    font-weight: 300;
    color: #ffffff;
    letter-spacing: 2px;
    margin-bottom: 20px;
    font-family: var(--font-primary);
}

.footer-brand-logo .text-red {
    color: #bb0000;
}

.footer-desc {
    font-size: 13px;
    line-height: 1.8;
    margin-bottom: 25px;
    max-width: 320px;
    color: #888888;
}
.footer-desc img {
    height: 14px;
    display: inline;
    object-fit: contain;
    margin-bottom: -2px;
}
.footer-desc .text-red {
    color: #bb0000;
    font-weight: 600;
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 10px;
}

.social-icons a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 35px;
    height: 35px;
    background-color: #151515;
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    transition: background-color 0.3s ease;
}

.social-icons a:hover {
    background-color: #bb0000;
}

/* ============================================
   FOOTER LINKS & SERVICES COLUMNS
============================================ */

.footer-col h4 {
    color: #ffffff;
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 15px;
}

.footer-col ul li a {
    color: #888888;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-col ul li a:hover {
    color: #ffffff;
}

/* Mini logos inside services list */
.mini-logo-3m {
    color: #bb0000;
    font-weight: 700;
    font-size: 13px;
    font-family: Arial, sans-serif;
}

.mini-logo-sg {
    color: #ffffff;
    font-size: 11px;
    border: 1px solid #555;
    padding: 1px 4px;
    border-radius: 2px;
    background: #111;
}
.footer-col ul li a img {
    height: 14px;
    object-fit: contain;
}
/* ============================================
   FOOTER BOTTOM - COPYRIGHT
============================================ */

.footer-bottom {
    border-top: 1px solid #1a1a1a;
    text-align: center;
    padding: 30px 0;
    margin-top: 60px;
}

.footer-bottom p {
    font-size: 13px;
    color: #666666;
    margin: 0 auto;
    text-align: center;
}

/* ============================================
   RESPONSIVE - TABLET
============================================ */

@media (min-width: 768px) {
    .footer-top {
        grid-template-columns: repeat(2, 1fr);
        gap: 50px;
    }
}

/* ============================================
   RESPONSIVE - DESKTOP
============================================ */

@media (min-width: 1024px) {
    .footer-top {
        grid-template-columns: 1.5fr 1fr 1fr;
        gap: 60px;
        justify-content: space-between;
    }
}

/* ============================================
   RESPONSIVE - MOBILE
============================================ */

@media (max-width: 767px) {
    .site-footer {
        padding-top: 50px;
    }
    
    .footer-container {
        padding: 0 20px;
    }
    
    .footer-brand-logo {
        font-size: 20px;
    }
    
    .footer-desc {
        font-size: 12px;
    }
    
    .footer-col h4 {
        font-size: 12px;
    }
    
    .footer-bottom {
        margin-top: 40px;
        padding: 25px 0;
    }
}

@media (max-width: 430px) {
    .footer-container {
        padding: 0 16px;
    }
}