.mobile-action-bar {
    display: none;
}

@media (max-width: 768px) {

    .mobile-action-bar {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 9999;
        background: #fff;
        box-shadow: 0 -6px 20px rgba(20, 20, 50, 0.1);
        height: 62px;
    }

    .mab-btn {
        flex: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 4px;
        padding: 10px 5px;
        color: #fff;
        text-decoration: none;
        font-size: 11px;
        font-weight: 600;
        transition: 0.3s;
    }

    .mab-btn:hover {
        opacity: 0.9;
    }

    .mab-btn i {
        font-size: 18px;
    }

    .mab-whatsapp {
        background: #25D366;
    }

    .mab-apply {
        background: var(--pink);
    }

    .mab-call {
        background: var(--navy);
    }

    /* Prevent content from hiding behind the bar */
    body {
        padding-bottom: 62px;
    }
}
