/* Floating contact icons CSS (WhatsApp/message launcher + social icon stack) */
/* File purpose: Footer floating action widget styles */

.footer-2__logo-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-2__logo-wrapper img {
    max-height: 60px;
}

.bc-float-contact {
    position: fixed;
    left: 20px;
    bottom: 20px;
    z-index: 999999;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.bc-float-contact__menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px) scale(0.96);
    pointer-events: none;
    transform-origin: bottom center;
    transition: opacity 0.36s cubic-bezier(0.22, 1, 0.36, 1), transform 0.36s cubic-bezier(0.22, 1, 0.36, 1), visibility 0.36s ease;
}

.bc-float-contact.is-open .bc-float-contact__menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.bc-float-contact__btn {
    width: 56px;
    height: 56px;
    min-width: 56px;
    min-height: 56px;
    border-radius: 50%;
    border: 0;
    padding: 0;
    line-height: 1;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
    font-size: 24px;
    transition: transform 0.26s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.26s cubic-bezier(0.22, 1, 0.36, 1);
}

.bc-float-contact__btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
}

.bc-float-contact__menu .bc-float-contact__btn {
    opacity: 0;
    transform: translateY(8px) scale(0.92);
    transition: opacity 0.3s cubic-bezier(0.22, 1, 0.36, 1), transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.26s cubic-bezier(0.22, 1, 0.36, 1);
}

.bc-float-contact.is-open .bc-float-contact__menu .bc-float-contact__btn {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.bc-float-contact.is-open .bc-float-contact__menu .bc-float-contact__btn:nth-child(1) {
    transition-delay: 0.03s;
}

.bc-float-contact.is-open .bc-float-contact__menu .bc-float-contact__btn:nth-child(2) {
    transition-delay: 0.06s;
}

.bc-float-contact.is-open .bc-float-contact__menu .bc-float-contact__btn:nth-child(3) {
    transition-delay: 0.09s;
}

.bc-float-contact.is-open .bc-float-contact__menu .bc-float-contact__btn:nth-child(4) {
    transition-delay: 0.12s;
}

.bc-float-contact.is-open .bc-float-contact__menu .bc-float-contact__btn:nth-child(5) {
    transition-delay: 0.15s;
}

.bc-float-contact__btn--launcher {
    background: #25D366;
    position: relative;
    overflow: hidden;
}

.bc-float-contact__btn--launcher i {
    position: absolute;
    left: 48%;
    top: 54%;
    width: 24px;
    height: 24px;
    line-height: 24px;
    text-align: center;
    display: inline-block;
    font-size: 21px;
    transition: opacity 0.28s cubic-bezier(0.22, 1, 0.36, 1), transform 0.34s cubic-bezier(0.22, 1, 0.36, 1);
    transform-origin: center;
}

.bc-float-contact__btn--wa {
    background: #44d97c;
}

.bc-float-contact__btn--mail {
    background: #ff4f74;
}

.bc-float-contact__btn--insta {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

.bc-float-contact__btn--facebook {
    background: #1877f2;
}

.bc-float-contact__btn--linkedin {
    background: #0a66c2;
}

.bc-float-contact__btn--launcher .bc-launcher-icon-close {
    opacity: 0;
    transform: translate(calc(-50% + 0.3px), -50%) rotate(-90deg) scale(0.7);
}

.bc-float-contact__btn--launcher .bc-launcher-icon-message {
    opacity: 1;
    transform: translate(calc(-50% + 1px), -50%) rotate(0deg) scale(1);
}

.bc-float-contact.is-open .bc-float-contact__btn--launcher {
    background: #d9dd62;
    color: #000000;
}

.bc-float-contact.is-open .bc-float-contact__btn--launcher .bc-launcher-icon-message {
    opacity: 0;
    transform: translate(calc(-50% + 1px), -50%) rotate(90deg) scale(0.7);
}

.bc-float-contact.is-open .bc-float-contact__btn--launcher .bc-launcher-icon-close {
    opacity: 1;
    transform: translate(calc(-50% + 0.3px), -50%) rotate(0deg) scale(1);
}

@media (max-width: 767px) {
    .bc-float-contact {
        left: 14px;
        bottom: 14px;
    }

    .bc-float-contact__btn {
        width: 52px;
        height: 52px;
        min-width: 52px;
        min-height: 52px;
        font-size: 22px;
    }
}
/* Floating contact icons CSS (WhatsApp/message launcher + social icon stack) */
/* File purpose: Footer floating action widget styles */




