.floating-icons {
    position: fixed;
    bottom: 30px;
    left: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    z-index: 1000;
}

.floating-icons a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: linear-gradient(145deg, #161c22, #0b0f12) !important;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
    z-index: 2;
}

/* Base Pulse Ring */
.floating-icons a::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
    animation: pulse-ring 2s infinite cubic-bezier(0.215, 0.61, 0.355, 1);
}


.floating-icons a:hover {
    transform: scale(1.15);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
}

.floating-icons svg {
    width: 24px;
    height: 24px;
    transition: all 0.3s ease;
}

.floating-icons a:hover svg {
    color: #ffffff !important;
    transform: scale(1.1);
}

/* Gmail */
.floating-icons .icon-mail svg {
    color: #EA4335;
}
.floating-icons .icon-mail:hover {
    background: #EA4335 !important;
}
.floating-icons .icon-mail::before {
    background: rgba(234, 67, 53, 0.6);
    animation-delay: 0s;
}

/* WhatsApp */
.floating-icons .icon-whatsapp svg {
    color: #25D366;
}
.floating-icons .icon-whatsapp:hover {
    background: #25D366 !important;
}
.floating-icons .icon-whatsapp::before {
    background: rgba(37, 211, 102, 0.6);
    animation-delay: 0.6s;
}

/* Call */
.floating-icons .icon-phone svg {
    color: #007BFF;
}
.floating-icons .icon-phone:hover {
    background: #007BFF !important;
}
.floating-icons .icon-phone::before {
    background: rgba(0, 123, 255, 0.6);
    animation-delay: 1.2s;
}

/* Keyframes for Pulse */
@keyframes pulse-ring {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    70% {
        transform: scale(1.6);
        opacity: 0;
    }
    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}
