.plus-widget {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 64px;
    height: 64px;
    background: #007bff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.4);
    z-index: 9999;
    transition: all 0.3s ease;
}

.plus-widget:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 123, 255, 0.6);
}

.plus-widget i {
    color: white;
    font-size: 28px;
    transition: transform 0.3s ease;
}

.plus-widget.active i {
    transform: rotate(45deg);
}

.plus-menu {
    position: fixed;
    bottom: 100px;
    right: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 9998;
}

.plus-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.plus-menu-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: white;
    padding: 12px 16px;
    border-radius: 28px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.plus-menu-item:hover {
    transform: translateX(-8px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.plus-menu-item i {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.plus-menu-item.whatsapp i { color: #25d366; }
.plus-menu-item.phone i { color: #007bff; }
.plus-menu-item.email i { color: #dc3545; }
.plus-menu-item.livecall i { color: #28a745; }

@media (max-width: 768px) {
    .plus-widget {
        width: 56px;
        height: 56px;
        bottom: 20px;
        right: 20px;
    }
    
    .plus-widget i {
        font-size: 24px;
    }
    
    .plus-menu {
        bottom: 86px;
        right: 20px;
    }
    
    .plus-menu-item {
        padding: 10px 14px;
        font-size: 13px;
    }
}