/* ============================================ */
/* Footer */
/* ============================================ */

.main-footer {
    background: #1a1d23;
    color: #fff;
    padding: 60px 0 20px;
    margin-top: 0;
    width: 100%;
    position: relative;
    z-index: 10;
    border-top: 4px solid var(--accent-color);
}

.footer-wrap {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-col {
    flex: 1;
    min-width: 250px;
}

.footer-logo {
    max-width: 180px;
    margin-bottom: 25px;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.1));
}

.footer-desc {
    color: #b0b0b0;
    font-size: 15px;
    line-height: 1.6;
    font-family: 'Open Sans', sans-serif;
}

.footer-col h3 {
    font-family: 'PT Sans Narrow', sans-serif;
    font-size: 20px;
    color: var(--accent-color);
    margin-bottom: 25px;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--accent-color);
}

.footer-nav,
.footer-contacts {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav li,
.footer-contacts li {
    margin-bottom: 15px;
}

.footer-nav a {
    color: #e0e0e0;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 16px;
    display: inline-block;
}

.footer-nav a:hover {
    color: var(--accent-color);
    transform: translateX(5px);
}

.footer-contacts li {
    color: #e0e0e0;
    font-size: 15px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    line-height: 1.5;
}

.footer-contacts a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-contacts a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    padding-top: 25px;
    text-align: center;
    color: #666;
    font-size: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media screen and (max-width: 768px) {
    .footer-wrap {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }

    .footer-col h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-col {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-logo {
        margin: 0 auto 20px;
    }

    .footer-contacts li {
        justify-content: center;
    }
}