.fcw-container {
    position: fixed;
    right: 20px;
    bottom: 80px;
    z-index: 9999;
    display: flex;
    flex-direction: column-reverse;
    align-items: flex-end;
}

.fcw-button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-top: 10px;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 22px;
    transition: all 0.3s ease;
}

.fcw-main-button {
    background-color: #0d3b66;
    color: #fff;
    position: relative;
}

.fcw-tooltip {
    position: absolute;
    right: 60px;
    background: white;
    color: #333;
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 13px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    white-space: nowrap;
    display: none;
}

.fcw-phone   { background-color: #28c76f; color: white; }
.fcw-email   { background-color: #ea5455; color: white; }
.fcw-whatsapp{ background-color: #25D366; color: white; }
.fcw-close   { background-color: #0d3b66; color: white; }

.fcw-hidden {
    display: none;
}
