.floating-contact {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999; /* مقدار بیشتر برای نمایش بالاتر */
    background: linear-gradient(45deg, #0073aa, #00bfff);
    box-shadow: 0px 4px 10px rgba(0,0,0,0.3);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    cursor: pointer;
    transition: transform 0.2s ease-in-out;
}

.floating-contact:hover {
    transform: scale(1.1);
}

.contact-icon-svg {
    width: 30px;
    height: 30px;
    fill: white;
}

.contact-icon {
    background: #0073aa;
    color: white;
    padding: 15px;
    border-radius: 50%;
    cursor: pointer;
}

.contact-menu {
    display: none;
    position: absolute;
    bottom: 50px;
    right: 0;
    background: white;
    padding: 10px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
}
@media (max-width: 768px) {
    .floating-contact {
        position: fixed;
        bottom: 60px;
        right: 10px;
        width: 50px;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background: linear-gradient(45deg, #0073aa, #00bfff);
        box-shadow: 0px 4px 10px rgba(0,0,0,0.3);
        cursor: pointer;
    }

    .contact-icon-svg {
        width: 25px;
        height: 25px;
    }
}

