/* ===========================================
   SITE FOOTER (Fixed Layout)
=========================================== */
.site-footer {
    background-color: #131313; /* Deep Black/Grey */
    color: #ffffff;
    padding: 70px 0 30px;
    font-size: 0.9rem;
    width: 100%;
}

/* FIX: Force the container to center on ALL pages */
.site-footer .container {
    max-width: 1200px; /* Matches your main site width */
    width: 100%;
    margin: 0 auto;    /* Centers the box */
    padding-left: 40px; /* Safety padding from edges */
    padding-right: 40px;
    box-sizing: border-box;
}

.footer-top {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    padding-bottom: 50px;
    border-bottom: 1px solid #333;
}

/* Footer Column Styling */
.footer-col h4 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #fff;
}

.footer-group {
    margin-bottom: 30px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: #b0b0b0; /* Light Grey Text */
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-block;
}

.footer-col ul li a:hover {
    color: #fff;
    transform: translateX(5px);
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 12px; /* Adjusted gap */
    margin-bottom: 40px;
}

.social-icons a {
    width: 36px;
    height: 36px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Removed the transform/yellow hover effects */
    transition: opacity 0.2s ease;
    text-decoration: none;
}

.social-icons a svg {
    /* Exact size for crisp look inside 36px circle */
    width: 20px; 
    height: 20px;
    fill: #000; /* Sharp Black Icon */
    display: block;
}

/* Simple Opacity Hover only */
.social-icons a:hover {
    opacity: 0.8;
}

/* World Map */
.footer-map-wrapper {
    margin-top: 20px;
}

.footer-map {
    width: 100%;
    max-width: 180px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
    cursor: pointer;
}

.footer-map:hover {
    opacity: 1;
}

/* Footer Bottom Bar */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    font-size: 0.85rem;
    color: #888;
}

.footer-review {
    display: flex;
    align-items: center;
    gap: 15px;
}

.trustpilot-link img {
    height: 25px;
    width: auto;
    filter: none; /* Shows original colors */
    transition: transform 0.3s ease;
}

.trustpilot-link:hover img {
    transform: scale(1.05);
}

/* Responsive Footer */
@media (max-width: 1024px) {
    .footer-top {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .site-footer .container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}