/* Floating Social Contact Widget */
.floating-social-widget {
    position: fixed;
    right: 25px;
    bottom: 100px;
    z-index: 999999;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.floating-social-widget .social-item {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff !important;
    font-size: 20px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.28);
    text-decoration: none;
    transform: scale(0) translateY(20px);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s ease, opacity 0.3s ease, background 0.3s ease;
}

.floating-social-widget.active .social-item {
    transform: scale(1) translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.floating-social-widget.active .social-item.item-linkedin { transition-delay: 0.05s; }
.floating-social-widget.active .social-item.item-facebook { transition-delay: 0.1s; }
.floating-social-widget.active .social-item.item-instagram { transition-delay: 0.15s; }
.floating-social-widget.active .social-item.item-whatsapp { transition-delay: 0.2s; }
.floating-social-widget.active .social-item.item-call { transition-delay: 0.25s; }

.social-item.item-call {
    background: #4CAF50;
}

.social-item.item-whatsapp {
    background: #25D366;
}

.social-item.item-instagram {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

.social-item.item-linkedin {
    background: #0A66C2;
}

.social-item.item-facebook {
    background: #1877F2;
}

.social-item:hover {
    filter: brightness(1.08);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
}

.floating-social-toggle {
    position: fixed;
    right: 25px;
    bottom: 25px;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #25D366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    border: none;
    outline: none;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.35);
    transition: transform 0.3s ease, background 0.3s ease;
    z-index: 999999;
}

.floating-social-toggle i {
    transition: transform 0.3s ease;
}

.floating-social-toggle.active {
    background: #8e44ad;
}

.floating-social-toggle.active i {
    transform: rotate(135deg);
}

@media (max-width: 575px) {
    .floating-social-widget {
        right: 15px;
        bottom: 15px;
        gap: 10px;
    }
    .social-item {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }
    .floating-social-toggle {
        width: 52px;
        height: 52px;
        font-size: 20px;
    }
}
