@charset "utf-8";

/* Mobile fixed bottom bar — Contact / Inquiry */

@media screen and (min-width: 768px) {
  .footer_m {
    display: none !important;
  }
}

@media screen and (max-width: 767px) {
  body {
    overflow-x: hidden;
  }

  .footer_m {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.18);
    z-index: 99;
    background: linear-gradient(180deg, #3a3a3a 0%, #1f1f1f 100%);
    border-radius: 16px 16px 0 0;
    overflow: hidden;
  }

  .footer_m div a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 10px;
    color: #fff;
    height: 3.25rem;
    font-size: 15px;
    letter-spacing: 0.02em;
    transition: background 0.25s ease, color 0.25s ease;
  }

  .footer_m div a:active {
    background: rgba(255, 114, 29, 0.25);
  }

  .footer_m div:first-child {
    border-right: 1px solid rgba(255, 255, 255, 0.15);
  }

  .footer_m div a span:first-child {
    margin-right: 0;
    font-size: 18px;
  }

  .footer_m div .flientfpb {
    margin: 0;
    background: none;
    border: none;
    padding: 0;
    align-items: center;
    height: auto;
    color: #fff;
    font-weight: 500;
    font-size: 15px;
  }

  /* Space for fixed mobile bar */
  .zw {
    height: 3.5rem;
  }
}
