/* Fixed Mobile Navigation Bar */
@media (max-width: 767px) {
  body {
    padding-bottom: 60px; /* Prevents content from being hidden behind the bar */
  }

  .mobile-action-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background: #002D40; /* ServiceWorx Navy */
    display: flex;
    justify-content: space-around;
    align-items: center;
    z-index: 9999;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
  }

  .mobile-action-nav a {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
  }

  /* Style the "Consult" button with ActivIncite Green for contrast */
  .mobile-action-nav a.highlight {
    background: #1D9A44;
    height: 100%;
    justify-content: center;
  }
}

/* Hide on Desktop */
@media (min-width: 768px) {
  .mobile-action-nav {
    display: none;
  }
}