.footer {
    background: #111827;
    color: #ffffff;
    padding: 3rem 5% 2rem;
    width: 100%;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    text-align: center;
    align-items: center;
    padding-bottom: 2.5rem;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    color: #ffffff;
}

.footer-tagline {
    font-size: 0.95rem;
    color: #9ca3af;
    text-align: center;
}

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

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: #d1d5db;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--color-primary);
    color: #ffffff;
    transform: translateY(-3px) scale(1.05);
}

.social-link svg {
    display: block;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 1.5rem;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.875rem;
    color: #6b7280;
}

@media (min-width: 769px) {
    .footer {
        padding: 4rem 15% 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 2rem;
    }

    .footer-logo {
        text-align: left;
    }

    .social-links {
        justify-content: flex-end;
    }


    .footer-bottom {
        text-align: left;
    }
}