.footer {
    padding: 64px 0;
    background-color: oklch(0.208 0.042 265.755);
    color: var(--color-background);
}

.footer-logo-text {
    font-size: 16px;
}

.footer-top {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-bottom: 48px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer .h5 {
    margin: 0 0 16px;
}

.footer-brand p,
.footer-links a,
.footer-services a,
.footer-bottom p,
.footer-bottom-links a {
    font-size: 14px;
    color: var(--color-background);
}

.footer-links-nav {
    display: flex;
    flex-wrap: wrap;
}

.footer-links ul,
.footer-services ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li,
.footer-services li,
.footer-contact .contact-item {
    font-size: 14px;
    margin-bottom: 8px;
}

.footer-links a,
.footer-services a {
    text-decoration: none;
    transition: color 0.3s;
}

.footer-contact .contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: var(--color-background);
    transition: color 0.3s;
}

.footer-links a:hover,
.footer-links li.current-menu-item a,
.footer-services a:hover,
.footer-contact .contact-item:hover,
.footer-bottom-links a:hover {
    color: var(--color-primary);
}

.footer-contact .contact-item .icon svg {
    width: 20px;
    height: 20px;
}

.footer-socials {
    display: flex;
    gap: 16px;
    margin-top: 8px;
}

.footer-socials a svg {
    width: 20px;
    height: 20px;
    transition: opacity 0.3s;
}

.footer-socials a:hover {
    opacity: 0.8;
}

.footer-bottom {
    border-top: 1px solid #FFFFFF33;
    padding-top: 32px;
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    align-items: start;
}

.footer-bottom p {
    margin: 0 !important;
}

.footer-bottom-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
    flex-wrap: wrap;
    grid-column-gap: 20px;
    grid-row-gap: 10px;
}

.footer-bottom-links a {
    color: var(--color-background);
    text-decoration: none;
    transition: color 0.3s;
}

@media (max-width: 768px) {
    .footer-top {
        grid-template-columns: 1fr;
    }
}
