/* PTY Residence Contact Bubbles - Based on Skypark Styles */
.floating-menu.pty-contact-bubble {
    position: fixed;
    bottom: 40px;
    right: 40px;
    z-index: 50;
    display: flex;
    flex-direction: column-reverse;
    gap: 10px;
    align-items: center;
}

.floating-menu.pty-contact-bubble .select-button {
    position: relative;
    background: #EE8012;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    font-size: 40px;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    overflow: visible;
}

.floating-menu.pty-contact-bubble .select-button::before,
.floating-menu.pty-contact-bubble .select-button::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: -1;
}

.floating-menu.pty-contact-bubble .select-button::before {
    background-color: rgba(215, 110, 5, .6);
    animation: pty-wave1 2s linear infinite;
}

.floating-menu.pty-contact-bubble .select-button::after {
    background-color: rgba(215, 110, 5, .4);
    animation: pty-wave2 2s linear infinite;
}

.floating-menu.pty-contact-bubble.open .select-button::before,
.floating-menu.pty-contact-bubble.open .select-button::after {
    display: none;
}

@keyframes pty-wave1 {
    0% {
        opacity: 1;
        width: 80px;
        height: 80px;
    }
    50% {
        width: 110px;
        height: 110px;
    }
    100% {
        width: 140px;
        height: 140px;
        opacity: 0;
    }
}

@keyframes pty-wave2 {
    0% {
        opacity: 1;
        width: 80px;
        height: 80px;
    }
    50% {
        width: 140px;
        height: 140px;
    }
    100% {
        width: 200px;
        height: 200px;
        opacity: 0;
    }
}

.floating-menu.pty-contact-bubble .submenu {
    background: #fff;
    border-radius: 50%;
    width: 70px;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all .3s ease;
}

.floating-menu.pty-contact-bubble .submenu.whatsapp {
    background: #25d366;
    transform: translate(0, 90px);
}

.floating-menu.pty-contact-bubble .submenu.telegram {
    background: #29b6f6;
    transform: translate(0, 120px);
}

.floating-menu.pty-contact-bubble .submenu.viber {
    background: #7b519d;
    transform: translate(0, 150px);
}

.floating-menu.pty-contact-bubble .submenu.line {
    background: #00b900;
    transform: translate(0, 180px);
}

.floating-menu.pty-contact-bubble .submenu.call {
    background: #0c0c0c;
    color: #fff;
    transform: translate(0, 210px);
}

.floating-menu.pty-contact-bubble.open .submenu {
    opacity: 1;
    visibility: visible;
}

.floating-menu.pty-contact-bubble .submenu i {
    font-size: 40px;
    color: #fff;
}

.floating-menu.pty-contact-bubble .submenu i.large-text {
        font-size: 45px;
}

/* Base Contact Bubbles - Universal Template */
.floating-menu.contact-bubble {
    position: fixed;
    bottom: 40px;
    right: 40px;
    z-index: 50;
    display: flex;
    flex-direction: column-reverse;
    gap: 10px;
    align-items: center;
}

.floating-menu.contact-bubble .select-button {
    position: relative;
    background: #EE8012;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    font-size: 40px;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    overflow: visible;
    transition: transform 0.3s ease;
}

.floating-menu.contact-bubble .select-button:hover {
    transform: scale(1.05);
}

.floating-menu.contact-bubble .select-button::before,
.floating-menu.contact-bubble .select-button::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: -1;
}

.floating-menu.contact-bubble .select-button::before {
    background-color: rgba(238, 128, 18, 0.6);
    animation: contact-wave1 2s linear infinite;
}

.floating-menu.contact-bubble .select-button::after {
    background-color: rgba(238, 128, 18, 0.4);
    animation: contact-wave2 2s linear infinite;
}

.floating-menu.contact-bubble.open .select-button::before,
.floating-menu.contact-bubble.open .select-button::after {
    display: none;
}

@keyframes contact-wave1 {
    0% {
        opacity: 1;
        width: 80px;
        height: 80px;
    }
    50% {
        width: 110px;
        height: 110px;
    }
    100% {
        width: 140px;
        height: 140px;
        opacity: 0;
    }
}

@keyframes contact-wave2 {
    0% {
        opacity: 1;
        width: 80px;
        height: 80px;
    }
    50% {
        width: 140px;
        height: 140px;
    }
    100% {
        width: 200px;
        height: 200px;
        opacity: 0;
    }
}

.floating-menu.contact-bubble .submenu {
    background: #fff;
    border-radius: 50%;
    width: 70px;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    position: absolute;
    pointer-events: none;
}

.floating-menu.contact-bubble .submenu.whatsapp {
    background: #25d366;
}

.floating-menu.contact-bubble .submenu.telegram {
    background: #29b6f6;
}

.floating-menu.contact-bubble .submenu.viber {
    background: #7b519d;
}

.floating-menu.contact-bubble .submenu.line {
    background: #00b900;
}

.floating-menu.contact-bubble .submenu.call {
    background: #0c0c0c;
    color: #fff;
}

.floating-menu.contact-bubble.open .submenu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.floating-menu.contact-bubble .submenu i {
    font-size: 40px;
    color: #fff;
}

@media (max-width: 768px) {
    .floating-menu.contact-bubble {
        bottom: 20px;
        right: 20px;
    }

    .floating-menu.contact-bubble .select-button {
        width: 70px;
        height: 70px;
        font-size: 35px;
    }

    .floating-menu.contact-bubble .submenu {
        width: 60px;
        height: 60px;
    }

    .floating-menu.contact-bubble .submenu i {
        font-size: 35px;
    }

    .floating-menu.pty-contact-bubble {
        bottom: 20px;
        right: 20px;
    }

    .floating-menu.pty-contact-bubble .select-button {
        width: 70px;
        height: 70px;
    }

    .floating-menu.pty-contact-bubble .submenu {
        width: 60px;
        height: 60px;
    }

    .floating-menu.pty-contact-bubble .submenu i {
        font-size: 35px;
    }

    .floating-menu.pty-contact-bubble .submenu i.large-text {
        font-size: 45px;
    }
}