/* Mobile Fixed Footer Styles */
.fixed-footer-mobile {
    display: none;
    position: fixed;
    bottom: 20px;
    left: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 12px;
    border-radius: 25px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.footer-btn {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 15px 5px;
    border-radius: 20px;
    color: #fff !important;
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-align: center;
    line-height: 1.2;
}

.footer-btn i {
    font-size: 22px;
    margin-bottom: 6px;
}

.footer-btn.call-now {
    background: linear-gradient(135deg, #FF6B6B 0%, #EE5253 100%);
}

.footer-btn.book-now {
    background: linear-gradient(135deg, #51b9a3 0%, #3e907d 100%); /* Matching teal in image */
}

.footer-btn.whatsapp {
    background: linear-gradient(135deg, #2ECC71 0%, #27AE60 100%);
}

.footer-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.footer-btn:active {
    transform: scale(0.95);
}

@media (max-width: 767px) {
    .fixed-footer-mobile {
        display: flex;
    }
    
    /* Adjust scroll to top button if it overlaps */
    .scroll-to-top {
        bottom: 120px !important;
    }
}
