/* === FOOTER === */
.footer {
    background: #ffffff;
    color: #475569;
    padding: 2rem 6% 2.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    margin-top: 0rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
    text-align: left;
}

.footer-brand .logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 1.25rem;
    font-family: 'Outfit';
}

.footer-brand p {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: #64748b;
}

.footer-links h3 {
    color: #0f172a;
    font-size: 0.85rem;
    font-weight: 800;
    margin-bottom: 1.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

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

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

.footer-links a {
    color: #64748b;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.2s;
    display: inline-block;
}

.footer-links a:hover {
    color: #6366f1;
    transform: translateX(5px);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    font-size: 1.1rem;
    transition: all 0.3s;
}

.social-links a:hover {
    background: #6366f1;
    color: white;
    transform: translateY(-5px);
    border-color: #6366f1;
}

.footer-bottom {
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 2.5rem;
    margin-top: 4rem;
    text-align: center;
    font-size: 0.85rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.made-with {
    color: #64748b;
    font-size: 0.85rem;
}

.made-with i {
    color: #ef4444;
}

@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

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

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}