    /* CSS cho Box Liên Lạc Nổi - Floating Action Button */
    .contact-fab-container {
        position: fixed;
        bottom: 20px; /* Vị trí dưới cùng */
        right: 20px; /* Vị trí bên phải */
        z-index: 10000;
    }

    /* Định dạng nút chính và các liên kết */
    .contact-fab-main-btn,
    .contact-fab-links a {
        width: 55px;
        height: 55px;
        border-radius: 50%;
        text-align: center;
        line-height: 55px;
        color: white;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
        cursor: pointer;
        transition: all 0.3s ease;
        margin-top: 10px;
    }

    /* Định dạng nút chính */
    .contact-fab-main-btn {
        background-color: #5a8d5c; /* Màu xanh lá nổi bật */
        font-size: 24px;
        position: relative;
    }
    
    .contact-fab-main-btn:hover {
        background-color: #4a754c;
    }

    /* Hiệu ứng xoay khi mở */
    .contact-fab-main-btn.open {
        transform: rotate(45deg);
        background-color: #d9534f; /* Đổi màu khi mở (thành màu đỏ) */
    }

    /* Định dạng các liên kết ẩn */
    .contact-fab-links {
        display: flex;
        flex-direction: column;
        align-items: center;
        transition: opacity 0.3s ease, transform 0.3s ease;
        position: absolute;
        bottom: 0px; /* Bắt đầu từ vị trí nút chính */
        right: 0px;
        opacity: 0;
        pointer-events: none; /* Không thể click khi đang ẩn */
        transform: translateY(0);
    }
    
    /* Trạng thái mở */
    .contact-fab-container.active .contact-fab-links {
        opacity: 1;
        pointer-events: auto; /* Có thể click khi mở */
    }

    /* Điều chỉnh vị trí của các nút con khi mở */
 /* Điều chỉnh vị trí của các nút con khi mở */
.contact-fab-container.active .contact-fab-links a:nth-child(1) { 
    transform: translateY(-1px); 
}
.contact-fab-container.active .contact-fab-links a:nth-child(2) { 
    transform: translateY(-1px); /* Đã sửa: 75px + 75px = 150px */
}
.contact-fab-container.active .contact-fab-links a:nth-child(3) { 
    transform: translateY(-5px); /* Đã sửa: 75px + 75px + 75px = 225px */
}
    /* Màu sắc riêng cho từng nút */
    .btn-call { background-color: #5a8d5c; }
    .btn-messenger { background-color: #ffffff2b; }
    .btn-zalo { background-color: #ffffff; }
