/* =========================================
   FOOTER (MINIMALIST DARK)
   ========================================= */
footer {
    background: #0F1210;
    color: #fff;
    padding: 100px 0 40px;
    font-weight: 300;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand h2 {
    color: #fff;
    margin-bottom: 20px;
}

.footer-brand p {
    opacity: 0.6;
    max-width: 300px;
}

.footer-links h4 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 25px;
    letter-spacing: 1px;
}

.footer-links ul li {
    margin-bottom: 15px;
}

.footer-links a {
    opacity: 0.6;
    font-size: 0.95rem;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--color-accent);
}

.footer-bottom {
    padding-top: 40px;
    display: flex;
    justify-content: space-between;
    opacity: 0.4;
    font-size: 0.85rem;
}

/* Floating Actions */
.floating-actions {
    position: fixed;
    bottom: 40px;
    right: 40px;
    /* RTL switch handled by doc direction usually, but let's keep it right for now for consistency */
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 990;
}

.float-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #fff;
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    font-size: 1.5rem;
}

.float-btn-whatsapp {
    background: #25D366;
    color: #fff;
}

@media (max-width: 900px) {
    .footer-top {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}