/*
 * Footer Styles
 */

.site-footer {
    background: var(--secondary-bg);
    padding: 60px 0 0;
    border-top: 1px solid var(--border-color);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 32px;
    margin-bottom: 40px;
    align-items: start;
}

.footer-widget h4 {
    font-size: 16px;
    color: var(--text-primary);
    margin-bottom: 20px;
    text-transform: uppercase;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-logo img {
    max-height: 40px;
}

.footer-logo-text {
    font-family: 'Orbitron', sans-serif;
    font-size: 20px;
    color: var(--text-primary);
    font-weight: 700;
    display: inline-block;
    margin-bottom: 20px;
}

.footer-brand p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-menu,
.footer-widget ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-menu li,
.footer-widget ul li {
    margin-bottom: 12px;
}

.footer-menu a,
.footer-widget ul li a {
    font-size: 14px;
    color: var(--text-muted);
}

.footer-menu a:hover,
.footer-widget ul li a:hover {
    color: var(--accent-cyan);
}

.footer-contact {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-contact li {
    margin-bottom: 14px;
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.4;
}

.footer-contact li:last-child {
    margin-bottom: 0;
}

.footer-contact li a,
.footer-contact li {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-contact__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 22px;
    width: 22px;
    height: 22px;
    color: var(--accent-cyan);
}

.footer-contact__icon svg {
    width: 16px;
    height: 16px;
}

.footer-contact__text,
.footer-contact li a {
    color: var(--text-muted);
    word-break: break-word;
}

.footer-contact li a:hover {
    color: var(--accent-cyan);
}

.footer-contact__text {
    min-width: 0;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--accent-bg);
    border-radius: 50%;
    color: var(--text-secondary);
    transition: var(--transition-fast);
}

.footer-social a:hover {
    background: var(--accent-cyan);
    color: var(--primary-bg);
}

.footer-bottom {
    padding: 20px 0;
    border-top: 1px solid var(--border-color);
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: var(--text-muted);
    margin: 0;
}

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

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

    .footer-contact li a,
    .footer-contact li {
        align-items: flex-start;
    }
}