/* ==========================================
   nÕ>¤’Ô:#
   ========================================== */

/* nÕ:¹h - úš(óÒ */
.floating-social-icons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* ®:#P# */
.floating-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    overflow: hidden;
    text-decoration: none;
}

/* :g„G */
.floating-icon img {
    width: 36px;
    height: 36px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

/* Hover Hœ */
.floating-icon:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.floating-icon:hover img {
    transform: scale(1.1);
}

/* Facebook :yš# */
.facebook-icon:hover {
    background-color: #1877f2;
}

/* Instagram :yš# */
.instagram-icon:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

/* ÿÉ- - sÝn */
@media (max-width: 768px) {
    .floating-social-icons {
        bottom: 20px;
        right: 20px;
        gap: 12px;
    }

    .floating-icon {
        width: 50px;
        height: 50px;
    }

    .floating-icon img {
        width: 30px;
        height: 30px;
    }
}

/* ÿÉ- - K_Ýn */
@media (max-width: 480px) {
    .floating-social-icons {
        bottom: 15px;
        right: 15px;
        gap: 10px;
    }

    .floating-icon {
        width: 45px;
        height: 45px;
    }

    .floating-icon img {
        width: 26px;
        height: 26px;
    }
}

/* ÕkHœ - :2eÕk */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.floating-icon {
    animation: fadeInUp 0.6s ease-out;
}

.facebook-icon {
    animation-delay: 0.1s;
}

.instagram-icon {
    animation-delay: 0.2s;
}
