.floating-contact {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 9999;
}
.floating-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 22px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
    text-decoration: none;
    transition: all 0.3s ease;
}
.whatsapp-btn { background: #25D366; }
.telegram-btn { background: #0088cc; }
.floating-btn:hover { transform: scale(1.1); }
