
    /* Base: hide by default */
.mobile-booknow-btn {
    display: none;
}

/* Show only on screens below 1200px */
@media (max-width: 1199px) {
    .mobile-booknow-btn {
        display: inline-block;
        position: fixed;
        bottom: 20px; /* distance from bottom */
        left: 50%;
        transform: translateX(-50%);
        z-index: 1050; /* above other elements */
        padding: 18px 28px;
        font-size: 18px;
        font-weight: 600;
        color: #fff;
        background: linear-gradient(45deg, #ff4d6d, #ff7a45);
        border-radius: 50px;
        box-shadow: 0 4px 15px rgba(255, 77, 109, 0.4);
        transition: all 0.3s ease;
        text-align: center;
    }

    .mobile-booknow-btn:hover {
        box-shadow: 0 0 20px rgba(255, 77, 109, 0.7), 0 0 40px rgba(255, 122, 69, 0.5);
        transform: translateX(-50%) translateY(-3px) scale(1.05);
    }
}





.floating-contact-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999;
    animation: slideIn 1s ease-out forwards;
    transform: translateX(100%);
}

/* Slide-in animation */
@keyframes slideIn {
    0% { transform: translateX(100%); opacity: 0; }
    100% { transform: translateX(0); opacity: 1; }
}

/* Button Base */
.contact-btn {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 28px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 50px;
    color: #fff;
    text-decoration: none;
    overflow: hidden;
    box-shadow: 0 6px 25px rgba(0,0,0,0.3);
    transform: translateY(0);
    animation: float 3s ease-in-out infinite, wiggle 5s infinite;
    transition: all 0.3s ease;
}

/* Floating animation */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

/* Subtle wiggle */
@keyframes wiggle {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-2px); }
    50% { transform: translateX(2px); }
    75% { transform: translateX(-2px); }
}

/* Call and WhatsApp Colors */
.call-btn { background: #2e8b57; }
.whatsapp-btn { background: #25d366; }

/* Hover effect */
.contact-btn:hover {
    transform: translateY(-6px) scale(1.1);
    box-shadow: 0 8px 30px rgba(0,0,0,0.5);
}

/* Ripple effect */
.contact-btn .ripple {
    position: absolute;
    border-radius: 50%;
    width: 0;
    height: 0;
    background: rgba(255,255,255,0.3);
    animation: ripple 1.5s infinite;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

@keyframes ripple {
    0% { width: 0; height: 0; opacity: 0.5; }
    50% { width: 120%; height: 120%; opacity: 0.2; }
    100% { width: 0; height: 0; opacity: 0; }
}

/* Icon size */
.contact-btn i { font-size: 20px; }

/* Mobile adjustments */
@media (max-width: 767px) {
    .floating-contact-buttons { bottom: 15px; right: 15px; gap: 10px; }
}
