﻿.social-floating-icons {
    position: fixed;
    right: 18px;
    bottom: 55px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    z-index: 999999;
}

    .social-floating-icons .icon {
        width: 52px;
        height: 52px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 26px;
        color: #fff;
        text-decoration: none;
        cursor: pointer;
        transition: 0.25s ease-in-out;
        box-shadow: 0px 0px 10px rgba(0,0,0,0.25);
    }

/* Colors */
.whatsapp {
    background: #25D366;
}

.facebook {
    background: #1877F2;
}

.instagram {
    background: linear-gradient(45deg,#feda75,#fa7e1e,#d62976,#962fbf,#4f5bd5);
}

.phone {
    background: #1cb0f6;
}

/* Hover Effects */
.social-floating-icons .icon:hover {
    transform: scale(1.18);
    box-shadow: 0px 0px 18px rgba(0,0,0,0.35);
}
