.floating-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 999999;
}

.floating-buttons a {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    animation: pulse 1.8s infinite;
    color: #ffffff;
    font-size: 24px;
}

.whatsapp-icon {
    background-color: #25D366;
}

.call-icon {
    background-color: #EFB000;
    color: #552266 !important;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.2);
    }
    70% {
        box-shadow: 0 0 0 12px rgba(0, 0, 0, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    }
}

#bookPopup .popup-btn {
    background-color: #552266 !important;
    color: #ffffff !important;
    border: 2px solid #552266 !important;
    border-radius: 12px !important;
    padding: 12px 20px;
    font-weight: 500;
    transition: all 0.2s ease-in-out;
}

#bookPopup .popup-btn:hover,
#bookPopup .popup-btn:focus {
    background-color: #efb018 !important;
    border-color: #efb018 !important;
    color: #ffffff !important;
}

.custom-close-btn {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 40px;
    height: 40px;
    background: #ffffff;
    border: 2px solid #552266;
    color: #552266;
    border-radius: 50%;
    font-size: 20px;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 2000;
    transition: 0.2s ease-in-out;
}

.custom-close-btn:hover {
    background: #552266;
    color: #ffffff;
    transform: scale(1.08);
}
