/* Sticky Mobile Action Bar */
.mobile-action-bar {
    display: none; /* Hidden by default on desktop */
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 70px;
    background-color: #ffffff;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    justify-content: space-around;
    align-items: center;
    padding: 0 10px;
    box-sizing: border-box;
}

.mobile-action-btn {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50px;
    margin: 0 5px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: background-color 0.3s ease;
    text-align: center;
}

.mobile-action-btn.call-now {
    background-color: #1e2a5e; /* Primary Brand Color */
    color: #ffffff;
    border: 2px solid #1e2a5e;
}

.mobile-action-btn.book-online {
    background-color: #4ecdc4; /* Secondary Brand Color */
    color: #1e2a5e;
    border: 2px solid #4ecdc4;
}

.mobile-action-btn:hover {
    opacity: 0.9;
}

.mobile-action-icon {
    margin-right: 8px;
    font-size: 18px;
}

/* Show only on mobile devices */
@media (max-width: 768px) {
    .mobile-action-bar {
        display: flex;
    }
}
