.bubble {
    position: fixed;
    right: 16px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background-color: #C4D62D;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 24px;
    z-index: 9999;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    overflow: visible;
}

.call-bubble {
    bottom: 16px;
}

.enquiry-bubble {
    bottom: 80px;
    background-color: #C4D62D;
}

.bubble-label {
    position: absolute;
    right: 56px;
    padding: 8px 16px;
    border-radius: 30px;
    background-color: inherit;
    color: #fff;
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.3s ease;
    pointer-events: none;
}

.bubble:hover .bubble-label {
    opacity: 1;
    transform: translateX(0);
}