/* Floating Contact Actions */
.floating-actions {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999;
}

.fab {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    /* color: white; */
    text-decoration: none;
    /* box-shadow: 0 4px 15px rgba(0,0,0,0.2); */
    transition: var(--transition-smooth);
}

.fab:hover {
    transform: scale(1.1);
}

.fab-whatsapp {
    background-color: #25D366;
}

.fab-phone {
    background-color: var(--color-gold);
}

.fab-icon {
    font-size: 24px;
    font-style: normal;
}

@media (max-width: 768px) {
    .floating-actions {
        bottom: 20px;
        right: 20px;
        gap: 10px;
    }

    .fab {
        width: 50px;
        height: 50px;
    }
}