@media screen and (max-width: 768px) {
      .mobile-button-bar1 {
        position: fixed;
        bottom: 0;
        left: 0px;
        width: 100%;
        height: 48px;
        display: flex;
        justify-content: space-between;
        z-index: 9999;
      }

      .mobile-button-bar1 a {
        flex: 1;
        padding: 6px 2px;
        font-size: 10px;
        color: white;
        text-align: center;
        text-decoration: none;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 4px;
        font-weight: 500;
        border: none;
        outline: none;
        border-radius: 0;
      }

      .mobile-button-bar1 i {
        font-size: 13px;
      }
    }

    /* Desktop View */
    @media screen and (min-width: 769px) {
      .mobile-button-bar1 {
        position: fixed;
        top: 50%;
        right: 0;
        transform: translateY(-50%);
        width: 50px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        z-index: 9999;
      }

      .mobile-button-bar1 a {
        padding: 12px;
        font-size: 0;
        color: white;
        text-align: center;
        text-decoration: none;
        display: flex;
        align-items: center;
        justify-content: center;
        border: none;
        outline: none;
        border-radius: 0;
        position: relative;
      }

      .mobile-button-bar1 i {
        font-size: 18px;
      }

      /* Tooltip */
      .mobile-button-bar1 a::after {
        content: attr(data-tooltip);
        position: absolute;
        right: 110%;
        top: 50%;
        transform: translateY(-50%);
        background-color: #333;
        color: white;
        padding: 4px 8px;
        border-radius: 4px;
        font-size: 12px;
        white-space: nowrap;
        opacity: 0;
        transition: opacity 0.3s ease;
        pointer-events: none;
      }

      .mobile-button-bar1 a:hover::after {
        opacity: 1;
      }
    }

    /* Button background colors */
    .btn-enquire {
      background-color: #f57c00 !important;
    }

    .btn-call {
      background-color: #ffaa00 !important;
    }

    .btn-whatsapp {
      background-color: #25d366 !important;
    }

    .btn-chat {
      background-color: #007bff !important;
    }

    .mobile-button-bar1 a:hover,
    .mobile-button-bar1 a:focus,
    .mobile-button-bar1 a:active {
      color: white;
    }