/* Floating Contact Box */
.floating-contact-box {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9999;
}

.floating-contact-item {
    width: 50px;
    height: 50px;
    background: #ffffff;
    border-radius: 50%;
    margin-bottom: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.floating-contact-item:hover {
    transform: scale(1.08);
}

.floating-contact-item img {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.floating-info {
    display: none;
    position: absolute;
    right: 65px;
    background: #ffffff;
    color: #333333;
    padding: 12px 16px;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.25);
    font-size: 14px;
    white-space: nowrap;
}

.floating-info img {
    width: 140px;
    height: auto;
}