/* Hide by default */
.desktop-booknow-btn {
    display: none;
}



/* Show only on desktop (1200px and above) */
@media (min-width: 1200px) {
    .desktop-booknow-btn {
        display: block;
        position: fixed;
        top: 50%;
        right: 30px; /* start hidden off-screen */
        transform: translateY(-50%) rotate(-90deg); /* rotate for vertical text */
        transform-origin: right center;
        z-index: 2000;
        padding: 14px 28px;
        font-size: 18px;
        font-weight: 700;
        color: #fff;
        background: linear-gradient(135deg, var(--theam-color), #ff6600);
        border-radius: 10px 10px 0 0;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
        text-decoration: none;
        text-align: center;
        letter-spacing: 1px;
        transition: all 0.5s ease;
    }

    /* Slide in effect */
    .desktop-booknow-btn.show {
        right: -10px; /* visible */
    }

    /* Hover effect */
    .desktop-booknow-btn:hover {
        background: linear-gradient(135deg, #ff6600, var(--theam-color));
        box-shadow: 0px 0px 20px rgba(255, 102, 0, 0.6);
        transform: translateY(-50%) rotate(-90deg) scale(1.05);
    }
}


/* Hover effect */
.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;
        left: 50%;
        transform: translateX(-50%);
        z-index: 1050;
        padding: 18px 28px;
        font-size: 18px;
        font-weight: 600;
        color: #fff;
        background: linear-gradient(45deg, #faf7f2, #c19a6b);
        border-radius: 0 1rem;
        box-shadow: 0 4px 15px rgba(255, 77, 109, 0.4);
        transition: all 0.3s 
ease;
        text-decoration: none;
        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);
       
    }
}





.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: 14px 0;
    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: var(--theam-color); }
.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; }
}
