/* Base Styles */
.sv-footer-widget {
    padding: 4rem var(--sv-content-padding);
    background: var(--sv-bg);
    color: var(--sv-text);
    position: relative;
    z-index: 1;
}

.sv-footer-widget::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 100vw;
    height: 100%;
    transform: translateX(-50%);
    background: var(--sv-bg);
    z-index: -1;
}

.sv-footer-container {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
}

/* Left Column */
.sv-footer-left {
    flex: 1;
    min-width: 280px;
}

.sv-footer-logo {
    margin-bottom: 30px;
}

.sv-footer-logo-img {
    max-width: 265px !important;
}

.sv-branches {
    display: grid;
    /* grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); */
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 20px;
}

.sv-branch-country {
    margin: 0 0 .5rem;
    font-size: var(--sv-font-size-sm);
    font-weight: 600;
    color: var(--sv-text-light);
}

.sv-branch-address {
    margin: 0;
    font-size: .9rem;
    line-height: 1.4;
    color: var(--sv-text-light);
}

/* Right Column */
.sv-footer-right {
    flex: 1;
    min-width: 280px;
    display: flex;
    flex-direction: column;
}

/* Footer Menu */
.sv-footer-menu {
    margin-bottom: 30px;
}

.sv-footer-menu-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    flex-direction: column;
    align-items: flex-end;
}

.sv-footer-menu-list li {
    margin: 0;
    padding: 0;
}

.sv-footer-menu-list a {
    font-size: var(--sv-font-size-xl);
    font-weight: 300;
    text-align: end;
    text-decoration: none;
    transition: opacity 0.3s ease;
    color: var(--sv-text);
    text-transform: uppercase;
    line-height: 1;
    opacity: 0.7;
}

.sv-footer-menu-list a:hover {
    color: var(--sv-text);
    opacity: 1;
}

/* Social Icons */
.sv-social-icons {
    display: flex;
    justify-content: flex-end;
    gap: .25rem;
    margin-bottom: 2rem;
}

.sv-social-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
    font-size: 1.25rem;
    text-decoration: none;
    color: var(--sv-text-light);
    opacity: .7;
}

.sv-social-icon:hover {
    color: var(--sv-text-light);
    opacity: 1;
}

/* Footer Bottom */
.sv-footer-bottom {
    margin-top: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: center;
    padding-top: 1rem;
    text-align: end;
    gap: 2rem;
}

.sv-copyright {
    font-size: var(--sv-font-size-sm);
    opacity: .7;
}

.sv-privacy-policy a {
    text-decoration: none;
    transition: opacity 0.3s ease;
    opacity: .7;
}

.sv-privacy-policy a:hover {
    opacity: 1;
}

/* Responsive */
@media (max-width: 767px) {
    .sv-footer-widget {
        padding-top: 0;
    }

    .sv-footer-container {
        flex-direction: column;
        gap: 20px;
    }

    .sv-footer-left {
        flex: 0;
    }
    
    .sv-footer-menu {
        display: none;
    }
    
    .sv-footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 10px;
        align-items: flex-start;
    }
    
    .sv-social-icons {
        justify-content: flex-start;
        margin-left: -10px;
        margin-bottom: 10px;
    }

    .sv-branches {
        /* max-height: 180px; */
        max-width: 70vw;
    }
}

@media (max-width: 479px) {
    .sv-branches {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        max-width: none;
        gap: 15px;
    }
}