/* Container for floating buttons */
.langoor-floating-buttons {
    position: fixed;
    right: 20px;
    bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 9999;
}

/* Base button */
.langoor-btn-floating {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 49px;
    height: 49px;
    border-radius: 50px;
    overflow: hidden;
    text-decoration: none;
    transition: all 0.3s ease;
}

/* Icon image */
.langoor-btn-floating img {
    width: 26px;
    height: 26px;
    object-fit: contain;
}

/* Text */
.langoor-btn-floating span {
    display: none;
    white-space: nowrap;
    font-size: 14px;
    margin-left: 10px;
    color: #fff;
    font-weight: 500;
}

/* Expand on hover */
.langoor-btn-floating:hover {
    width: auto;
    padding: 0 18px;
    text-decoration: none;
}

/* Show text on hover */
.langoor-btn-floating:hover span {
    display: inline-block;
}

/* Phone button */
.langoor-btn-floating.phone {
    background: #760f10;
}

.langoor-btn-floating.phone:hover {
    background: #c03421;
}

/* WhatsApp button */
.langoor-btn-floating.whatsapp {
    background: #34af23;
}

.langoor-btn-floating.whatsapp:hover {
    background: #1f7a12;
}

/* Facebook button */
.langoor-btn-floating.fb {
    background: #2b3a72;
}

.langoor-btn-floating.fb:hover {
    background: #3b4a8a;
}

/* Instagram button */
.langoor-btn-floating.instagram {
    background: #833ab4;
    background: linear-gradient(45deg, #405de6, #5851db, #833ab4, #c13584, #e1306c, #fd1d1d);
}

.langoor-btn-floating.instagram:hover {
    background: linear-gradient(45deg, #4c6ef5, #6c63ff, #9b4d96, #d14a96, #e84a7a, #fe4a4a);
}

/* Email button */
.langoor-btn-floating.mail {
    background: #2b3a72;
}

.langoor-btn-floating.mail:hover {
    background: #3b4a8a;
}