/* ─── FOOTER ─── */
footer {
    background: var(--gray-50);
    border-top: 1px solid var(--card-border);
    padding: 5rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.5fr;
    gap: 4rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid var(--card-border);
}

.footer-brand p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-top: 1rem;
    max-width: 320px;
}

.footer-socials {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.social-btn {
    width: 38px;
    height: 38px;
    background: #ffffff;
    border: 1px solid var(--card-border);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: all 0.2s;
}

.social-btn:hover {
    background: var(--blue-50);
    border-color: var(--blue-200);
    color: var(--blue-500);
    transform: translateY(-2px);
}

.footer-col h4 {
    font-family: 'Manrope', sans-serif;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--gray-900);
    margin-bottom: 1.5rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.75rem;
}

.footer-col ul li a {
    text-decoration: none;
    color: var(--text-muted);
    font-size: 0.9rem;
    transition: color 0.2s;
}

.footer-col ul li a:hover {
    color: var(--blue-500);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-item .material-symbols-rounded {
    font-size: 1.25rem;
    color: var(--blue-500);
    width: 24px;
    display: flex;
    justify-content: center;
}

.contact-item a,
.contact-item span {
    font-size: 0.95rem;
    color: var(--text-muted);
    text-decoration: none;
    line-height: 1;
}

.contact-item a:hover {
    color: var(--blue-500);
}

.footer-newsletter {
    margin-top: 2rem;
}

.footer-newsletter h5 {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.mini-newsletter {
    display: flex;
    gap: 0.5rem;
    background: #fff;
    border: 1px solid var(--card-border);
    padding: 0.35rem;
    border-radius: 10px;
    max-width: 300px;
}

.mini-newsletter input {
    flex: 1;
    border: none;
    outline: none;
    padding: 0.5rem;
    font-size: 0.85rem;
    width: 100%;
}

.mini-newsletter button {
    background: var(--blue-500);
    color: #fff;
    border: none;
    border-radius: 6px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s;
}

.mini-newsletter button:hover {
    background: var(--blue-700);
}

.mini-newsletter button .material-symbols-rounded {
    font-size: 1.1rem;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 2rem;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: var(--text-dim);
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-legal a {
    font-size: 0.85rem;
    color: var(--text-dim);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-legal a:hover {
    color: var(--blue-500);
}

.footer-legal .sep {
    color: var(--gray-200);
    font-size: 0.8rem;
}

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

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