.fcw-floating {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 99999;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.fcw-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.2s ease;
}

/* CALL BUTTON – RED CIRCLE */
.fcw-btn.call {
    background: #ff0010;
    box-shadow: 0 5px 12px rgba(0,0,0,0.3);
}

/* WHATSAPP – NO BACKGROUND */
.fcw-btn.whatsapp {
    background: transparent !important;
    box-shadow: none !important;
}

/* HOVER */
.fcw-btn:hover {
    transform: scale(1.1);
}

/* SVG SIZE */
.fcw-btn svg {
    width: 28px;
    height: 28px;
}

.whatsapp svg {
    height: 56px;
    width: 56px;
}
.call {
    border: 3px solid #fff;
}