/* ===== Footer ===== */
.main-footer {
    margin-top: 120px;
    background: rgba(10, 10, 15, 0.8);
    backdrop-filter: blur(20px);
    border-top: 1px solid var(--border);
    position: relative;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 64px 32px 32px;
}

/* ===== Footer Top ===== */
.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 2.5fr;
    gap: 80px;
    margin-bottom: 48px;
}

/* ===== Footer Brand ===== */
.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-logo {
    width: 48px;
    height: 48px;
    filter: drop-shadow(0 0 12px rgba(102, 126, 234, 0.6));
}

.footer-brand-text {
    font-size: 1.75rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
    font-family: 'Cinzel', serif;
}

.footer-tagline {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    max-width: 280px;
}

/* ===== Footer Links ===== */
.footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer-column h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
}

.footer-column a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    padding: 8px 0;
    transition: var(--transition);
}

.footer-column a:hover {
    color: var(--primary);
    transform: translateX(4px);
}

.footer-column a svg {
    transition: var(--transition);
}

.footer-column a:hover svg {
    transform: scale(1.1);
}

/* ===== Footer Divider ===== */
.footer-divider {
    height: 1px;
    background: linear-gradient(90deg,
    transparent 0%,
    var(--border) 20%,
    var(--border) 80%,
    transparent 100%
    );
    margin: 48px 0 32px;
}

/* ===== Footer Bottom ===== */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}

.footer-copyright,
.footer-disclaimer {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.footer-disclaimer {
    text-align: right;
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .footer-top {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .footer-container {
        padding: 48px 20px 24px;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }

    .footer-disclaimer {
        text-align: center;
    }
}