.contact-box-wrapper {
    position: fixed;
    bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 999999;
}

.contact-box-pos-right {
    right: 30px;
}

.contact-box-pos-left {
    left: 30px;
}

.contact-box-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff !important;
    text-decoration: none !important;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out, background-color 0.2s ease-in-out;
}

.contact-box-btn svg {
    width: 32px;
    height: 32px;
    fill: currentColor;
}

.contact-box-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 15px rgba(0,0,0,0.3);
}


