/* ===================================
   FOOTER STYLES
   =================================== */

.global-footer {
    background-image: url('/media/gcgnplmm/footer.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #DCEDF4; /* Fallback color */
    color: var(--color-primary-workwear);
    padding: 3rem 0 2rem;
    position: relative;
}

/* Optional: Add overlay for better text readability */
/* .global-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(220, 237, 244, 0.85);
    pointer-events: none;
} */

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.footer-content {
    display: grid;
    grid-template-columns: auto auto 1fr;
    gap: 3rem;
    margin-bottom: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid rgba(37, 57, 72, 0.2);
}


.footer-title {
    font-family: 'AvertaStd', sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 130%;
    letter-spacing: 0;
    margin-bottom: 1rem;
    color: var(--color-primary-workwear);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links a {
    font-family: 'AvertaStd', sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 140%;
    letter-spacing: 0;
    color: var(--color-primary-workwear);
    transition: color var(--transition-speed);
}

.footer-links a:hover {
    color: var(--color-primary-gold);
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 1.5rem;
}

.footer-logo {
    height: 60px;
    width: auto;
}

.social-links {
    display: flex;
    gap: 0rem;
    align-items: center;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background-color: transparent;
    transition: all var(--transition-speed);
    flex-shrink: 0;
}

.social-links a svg {
    width: 24px;
    height: 24px;
    display: block;
}

.social-links a svg path {
    fill: var(--color-primary-workwear);
    transition: fill var(--transition-speed);
}

.social-links a:hover svg path {
    fill: var(--color-primary-gold);
}

/* Footer Bottom */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
}

.footer-legal {
    flex: 1;
    max-width: 60%;
}

.copyright {
    font-family: 'AvertaStd', sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 140%;
    letter-spacing: 0;
    color: var(--color-primary-workwear);
}

.footer-links-bottom {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    align-items: flex-start;
}

.footer-links-bottom a {
    font-family: 'AvertaStd', sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 140%;
    letter-spacing: 0;
    color: var(--color-primary-workwear);
    transition: color var(--transition-speed);
    white-space: nowrap;
}

.footer-links-bottom a:hover {
    color: var(--color-primary-gold);
}

/* ===================================
   FOOTER RESPONSIVE
   =================================== */

/* Mobile */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 2rem;
        padding-bottom: 2rem;
    }
    
    .footer-brand {
        align-items: flex-start;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .footer-legal {
        max-width: 100%;
    }
    
    .footer-links-bottom {
        flex-direction: column;
        gap: 0.75rem;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .footer-container {
        padding: 0 1rem;
    }
}