/* ===== FOOTER STYLES ===== */
/* Стили футера */
.footer {
    background: var(--bg-dark);
    border-top: 1px solid var(--border);
    padding: 2rem 0 1rem 0;
}

.footer-brand {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    background: linear-gradient(120deg, var(--primary) 0%, var(--secondary) 50%, var(--secondary-alt) 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: subtle-gradient 6s ease-in-out infinite;
}

.footer-brand .fa-cube {
    background: linear-gradient(120deg, var(--primary) 0%, var(--secondary) 50%, var(--secondary-alt) 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: subtle-gradient 6s ease-in-out infinite;
}

.footer-tagline {
    font-size: 0.9rem;
    color: var(--text-light-gray);
}

.footer-section-title {
    color: var(--text-primary);
    font-weight: 500;
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.contact-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact-link {
    display: flex;
    align-items: center;
    color: var(--text-light-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: var(--primary);
}

.contact-link i {
    margin-right: 0.5rem;
    width: 16px;
}

.company-details {
    color: var(--text-light-gray);
    font-size: 0.85rem;
    line-height: 1.5;
}

.company-name {
    color: var(--text-primary);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.footer-divider {
    border: 0;
    height: 1px;
    background: var(--border);
    margin: 1.5rem 0 1rem 0;
}

.copyright-text {
    color: #888;
    font-size: 0.8rem;
}

.main-content {
    min-height: calc(100vh - 56px - 60px);
}

@media (max-width: 768px) {
    .footer {
        padding: 1.5rem 0 1rem 0;
    }
}