/* WhatsApp Floating Button - Subtle & Elegant */
.floating-whatsapp-btn {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px !important;
    height: 48px !important;
    max-width: 48px !important;
    max-height: 48px !important;
    background-color: #25D366;
    color: #fff;
    border-radius: 50%;
    text-decoration: none;
    font-family: var(--font-body);
    font-weight: 600;
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
    transition: all 0.3s ease;
    opacity: 0.9;
    overflow: hidden;
}

.floating-whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
    background-color: #20BA56;
    color: #fff;
    opacity: 1;
}

.floating-whatsapp-btn svg {
    width: 24px !important;
    height: 24px !important;
    max-width: 24px !important;
    max-height: 24px !important;
    min-width: 24px !important;
    min-height: 24px !important;
    flex-shrink: 0;
    display: block !important;
}

.floating-whatsapp-btn span {
    display: none;
}

/* Adjust sticky booking button if present to avoid overlap */
.sticky-cta {
    bottom: 5rem;
}

@media (max-width: 768px) {
    .floating-whatsapp-btn {
        bottom: 1rem;
        right: 1rem;
        width: 44px !important;
        height: 44px !important;
        max-width: 44px !important;
        max-height: 44px !important;
    }

    .floating-whatsapp-btn svg {
        width: 20px !important;
        height: 20px !important;
        max-width: 20px !important;
        max-height: 20px !important;
        min-width: 20px !important;
        min-height: 20px !important;
    }

    .sticky-cta {
        bottom: 4.5rem;
        right: 1rem;
    }
}