/* BDA Social Icons Styles */
.bda-social-icons {
    position: fixed;
    bottom: 95px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 998;
}

.bda-social-icons .bda-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.2s ease;
    text-decoration: none;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.bda-social-icons .bda-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.bda-social-icons .bda-icon img {
    border-radius: 50%;
}

/* Responsive */
@media (max-width: 768px) {
    .bda-social-icons {
        bottom: 80px;
        right: 15px;
    }
    
    .bda-social-icons .bda-icon {
        width: 35px;
        height: 35px;
    }
    
    .bda-social-icons .bda-icon img {
        width: 35px !important;
        height: 35px !important;
    }
}

/* Animation cho icon khi load */
.bda-social-icons .bda-icon {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
    transform: translateY(20px);
}

.bda-social-icons .bda-icon:nth-child(1) {
    animation-delay: 0.1s;
}

.bda-social-icons .bda-icon:nth-child(2) {
    animation-delay: 0.2s;
}

.bda-social-icons .bda-icon:nth-child(3) {
    animation-delay: 0.3s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}