/* Menu dolne w stopce */
.footer-menu {
    padding: 40px 0 30px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    margin-top: 50px;
    position: relative;
}

.footer-menu .row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.footer-menu .footer-col {
    flex: 0 0 25%;
    max-width: 25%;
    width: 25%;
    padding: 0 15px;
    margin-bottom: 20px;
    box-sizing: border-box;
}

.footer-menu ul {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.footer-menu ul li {
    list-style: none !important;
    list-style-type: none !important;
    margin-bottom: 10px;
    padding-left: 0 !important;
    margin-left: 0 !important;
}

.footer-menu ul li::before,
.footer-menu ul li::marker {
    display: none !important;
    content: none !important;
}

.footer-menu ul li a {
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    line-height: 1.4;
}

/* Kolumny po lewej stronie - ciemny tekst (białe tło) */
.footer-menu .left-side ul li a {
    color: #282c38;
}

.footer-menu .left-side ul li a:hover {
    color: #d32f2f;
    padding-left: 10px;
}

.footer-menu .left-side ul li a::before {
    content: '›';
    position: absolute;
    left: -15px;
    opacity: 0;
    transition: all 0.3s ease;
    color: #d32f2f;
    font-weight: bold;
}

.footer-menu .left-side ul li a:hover::before {
    left: -5px;
    opacity: 1;
}

/* Kolumny po prawej stronie - biały tekst (czarne tło) */
.footer-menu .right-side ul li a {
    color: rgba(255, 255, 255, 0.8);
}

.footer-menu .right-side ul li a:hover {
    color: #fff;
    padding-left: 10px;
}

.footer-menu .right-side ul li a::before {
    content: '›';
    position: absolute;
    left: -15px;
    opacity: 0;
    transition: all 0.3s ease;
    color: #d32f2f;
    font-weight: bold;
}

.footer-menu .right-side ul li a:hover::before {
    left: -5px;
    opacity: 1;
}

/* ODSTĘP dla pierwszej kolumny na czarnym tle - POWYŻEJ 800px */
@media (min-width: 801px) {
    .footer-menu .right-side:first-of-type {
        padding-left: 45px !important;
    }
    
    /* Jeśli są 2 kolumny w rzędzie, kolumna 3 też dostaje odstęp */
    .footer-menu .footer-col.right-side:nth-child(3) {
        padding-left: 45px !important;
    }
}

/* Responsive - 2 kolumny na tablecie */
@media (max-width: 800px) {
    .footer-menu {
        padding: 0;
        margin-top: -1px;
        border-top: none;
    }
    
    .footer-menu .footer-col {
        flex: 0 0 50%;
        max-width: 50%;
        width: 50%;
        margin-bottom: 25px;
    }
    
    /* Usuń dodatkowy odstęp poniżej 800px */
    .footer-menu .right-side:first-of-type {
        padding-left: 15px !important;
    }
    
    /* Na czarnym tle wszystkie linki białe */
    .footer-menu .left-side ul li a,
    .footer-menu .right-side ul li a {
        color: rgba(255, 255, 255, 0.8);
    }
    
    .footer-menu .left-side ul li a:hover,
    .footer-menu .right-side ul li a:hover {
        color: #fff;
    }
    
    .footer-menu ul li {
        margin-bottom: 8px;
    }
    
    .footer-menu ul li a {
        font-size: 13px;
    }
    .footer-menu > div.row {
        padding-top: 10px;
        padding-bottom: 10px;
    }
}

/* Responsive - 1 kolumna na mobile */
@media (max-width: 480px) {
    .footer-menu {
        padding: 0;
        margin-top: -1px;
    }
    
    .footer-menu .footer-col {
        flex: 0 0 100%;
        max-width: 100%;
        width: 100%;
        margin-bottom: 20px;
    }
    
    .footer-menu ul li {
        margin-bottom: 6px;
        text-align: center;
    }
    
    .footer-menu ul li a {
        font-size: 14px;
    }
}
