.footer {
    background: var(--dark);
    border-top: 1px solid var(--glass-border);
    padding: 2rem 0;
    margin-top: 4rem;
}

.footer-section {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
}

.footer-section h3 {
    color: var(--light);
    margin-bottom: 1rem;
    font-weight: 700;
}

.footer-links {
    list-style: none;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--gray);
    text-decoration: none;
    margin-bottom: 0.5rem;
    display: inline-block;
    transition: color 0.3s;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 1rem;
    color: var(--gray);
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-nav-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    text-align: left;
    padding: 10px 16px;
    background: var(--glass);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    color: var(--light);
    border-radius: 12px;
    cursor: pointer;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.footer-nav-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(108, 92, 231, 0.12), transparent);
    transition: left 0.6s;
}

.footer-nav-btn:hover::before {
    left: 100%;
}

.footer-nav-btn:hover {
    background: rgba(108, 92, 231, 0.15);
    border-color: var(--primary);
    transform: translateY(-2px);
}

.footer-nav-btn.active {
    background: rgba(108, 92, 231, 0.15);
    border-color: var(--primary);
    color: #fff;
}

.footer-nav-btn i {
    width: 16px;
    text-align: center;
}

.mail_link {
    color: #fff;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.sect_police {
    padding: 1rem 0;
    position: relative;
}

.sect_police::after {
    content: '';
    width: 100%;
    height: 1px;
    display: inline-block;
    position: absolute;
    bottom: 0;
    left: 0;
    background: RGBA(0, 0, 0, 0.1);
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .2) 50%, rgba(255, 255, 255, 0) 100%);
}

.footer-contact p:last-child {
    white-space: nowrap;
}

.footer-contact p:first-child {
    margin-bottom: 1rem;
}

.sect_police::before {
    content: '';
    width: 100%;
    height: 1px;
    display: inline-block;
    position: absolute;
    top: 0;
    left: 0;
    background: RGBA(0, 0, 0, 0.1);
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .2) 50%, rgba(255, 255, 255, 0) 100%);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.chanale__item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.chanale__item a {
    max-width: 24px;
    width: 100%;
    height: 100%;
}

.chanale__item a img {
    width: 100%;
    height: 100%;
}


@media (max-width: 768px) {
    .footer-nav {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 4px;
    }

    .footer-nav-btn {
        flex: 1;
        min-width: 120px;
        justify-content: center;
        text-align: center;
        font-size: 0.8rem;
        padding: 6px 8px;
    }

    .footer-section {
        flex-direction: column;
        gap: 1rem;
    }

    .footer_info {
        padding: 0px 0px 1rem 0px;
        position: relative;
    }

    .footer_info::before {
        content: '';
        width: 100%;
        height: 1px;
        display: inline-block;
        position: absolute;
        bottom: 0;
        left: 0;
        background: RGBA(0, 0, 0, 0.1);
        background: linear-gradient(90deg, rgba(255, 255, 255, 0.2) 0%, rgba(0, 0, 0, 0) 100%);
    }

    .footer-links {
        flex-direction: column;
    }

    .sect_police::before {
        content: '';
        width: 100%;
        height: 1px;
        display: inline-block;
        position: absolute;
        top: 0;
        left: 0;
        background: RGBA(0, 0, 0, 0.1);
        background: linear-gradient(90deg, rgba(255, 255, 255, .2) 0%, rgba(255, 255, 255, 0) 100%);
    }

    .sect_police::after {
        content: '';
        width: 100%;
        height: 1px;
        display: inline-block;
        position: absolute;
        bottom: 0;
        left: 0;
        background: RGBA(0, 0, 0, 0.1);
        background: linear-gradient(90deg, rgba(255, 255, 255, .2) 0%, rgba(255, 255, 255, 0) 100%);
    }

    .footer-bottom p {
        font-size: 12px;
    }
}