.floating-contact-container {
    position: fixed;
    z-index: 1050;
    pointer-events: none;
}

.floating-contact-left {
    bottom: 25px;
    left: 25px;
}

.floating-contact-right {
    bottom: 25px;
    right: 25px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.floating-btn {
    pointer-events: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease, filter 0.3s ease;
    outline: none;
}

/* Left Chat Icon - Transparent PNG-style with no background box */
.floating-btn-left {
    width: 60px;
    height: 60px;
    background: transparent !important;
    background-color: transparent !important;
    box-shadow: none !important;
    border-radius: 0;
    animation: floatSubtleLeft 3.5s ease-in-out infinite;
}

.floating-btn-left svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s ease, filter 0.3s ease;
}

.floating-btn-left:hover,
.floating-btn-left:focus-visible {
    transform: translateY(-4px) scale(1.12);
    background: transparent !important;
    box-shadow: none !important;
}

.floating-btn-left:hover svg {
    filter: drop-shadow(0 6px 14px rgba(123, 31, 38, 0.5));
}

/* Right Phone & WhatsApp Buttons */
.floating-btn-box {
    width: 52px;
    height: 52px;
    background-color: #7B1F26;
    color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
    animation: floatSubtleRight 3.5s ease-in-out infinite;
}

.floating-btn-phone {
    animation-delay: 0s;
}

.floating-btn-whatsapp {
    animation-delay: 0.6s;
}

.floating-btn-box svg {
    width: 34px;
    height: 34px;
    fill: #ffffff;
    transition: transform 0.3s ease;
}

.floating-btn-box:hover,
.floating-btn-box:focus-visible {
    transform: translateY(-4px) scale(1.08);
    box-shadow: 0 8px 22px rgba(123, 31, 38, 0.5);
    background-color: #92242c;
    color: #ffffff;
}

@keyframes floatSubtleLeft {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }
}

@keyframes floatSubtleRight {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

@media (prefers-reduced-motion: reduce) {

    .floating-btn-left,
    .floating-btn-box {
        animation: none;
        transition: none;
    }
}

@media (max-width: 575.98px) {
    .floating-contact-left {
        bottom: 18px;
        left: 18px;
    }

    .floating-contact-right {
        bottom: 18px;
        right: 18px;
        gap: 10px;
    }

    .floating-btn-left {
        width: 50px;
        height: 50px;
    }

    .floating-btn-box {
        width: 56px;
        height: 56px;
        border-radius: 10px;
    }

    .floating-btn-box svg {
        width: 21px;
        height: 21px;
    }
}