﻿/* Footer Global Styles */
.site-footer {
    background: #050505;
    padding: 60px 5% 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-family: 'Inter', sans-serif;
}
.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    position: relative;
    z-index: 2;
    text-align: left;
}
.footer-logos {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    justify-content: flex-start;
    margin-bottom: 20px;
}
.footer-logo {
    height: 40px;
}
.footer-sep {
    color: #444;
}
.footer-desc {
    color: #aaa;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
    max-width: 350px;
}
.contact-details p {
    color: #fff;
    margin: 10px 0;
    font-size: 0.95rem;
}
.contact-details a {
    color: #e3000f;
    text-decoration: none;
    transition: 0.3s;
}
.contact-details a:hover {
    color: #fff;
}
.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}
.social-icons a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    transition: 0.3s;
}
.social-icons a:hover {
    background: #e3000f;
    transform: translateY(-3px);
}
.social-icons svg {
    width: 20px;
    height: 20px;
}
.footer-hours h4, .footer-map h4 {
    color: #fff;
    font-size: 1.1rem;
    margin: 0 0 20px 0;
    border-bottom: 2px solid #e3000f;
    padding-bottom: 10px;
    display: inline-block;
}
.footer-hours ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-hours li {
    color: #aaa;
    font-size: 0.9rem;
    margin-bottom: 15px;
    line-height: 1.5;
}
.footer-hours span {
    color: #fff;
    font-weight: bold;
    display: block;
}
.footer-map p {
    color: #aaa;
    font-size: 0.9rem;
    margin: 0 0 15px 0;
}
.footer-bottom {
    text-align: center;
    padding-top: 40px;
    margin-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: #777;
    font-size: 0.85rem;
    position: relative;
    z-index: 2;
}
.mrbox-support {
    position: absolute;
    bottom: -5px;
    right: 5%;
    width: 150px;
    z-index: 1;
    opacity: 0.8;
}
@media (max-width: 900px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    .footer-logos {
        justify-content: center;
    }
    .footer-desc {
        margin: 0 auto 20px;
    }
    .social-icons {
        justify-content: center;
    }
    .mrbox-support { display: none; }
}
.wa-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    transition: all 0.3s ease;
}
.wa-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37,211,102,0.4);
}
.wa-float img {
    width: 35px;
    height: 35px;
}
@media (max-width: 768px) {
    .wa-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }
    .wa-float img {
        width: 30px;
        height: 30px;
    }
}

/* Fix for huge SVGs */
.site-footer svg { max-width: 20px; max-height: 20px; display: inline-block; vertical-align: middle; }
