/* Same rules as index landings (css/style.css) — used on service pages without full style.css */
.mobile-bottom-nav {
  display: none;
}

@media screen and (max-width: 1368px) {
  #mobile-bottom-nav .fas,
  #mobile-bottom-nav .far,
  #mobile-bottom-nav .fab {
    display: inline-block;
    min-width: 1.1em;
    text-align: center;
  }

  .mobile-bottom-nav {
    display: -webkit-flex;
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    padding: 12px 16px;
    padding-bottom: calc(24px + constant(safe-area-inset-bottom, 0px));
    padding-bottom: calc(24px + env(safe-area-inset-bottom, 0px));
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    gap: 12px;
    background: #fff;
    box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.12);
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    -webkit-transition: -webkit-transform 0.25s ease-out;
    transition: transform 0.25s ease-out;
    pointer-events: none;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
  }

  .mobile-bottom-nav.mobile-bottom-nav-visible {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    pointer-events: auto;
  }

  .mobile-bottom-nav-btn {
    -webkit-flex: 1;
    flex: 1;
    display: -webkit-inline-flex;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: clamp(4px, 0.04em + 0.8vw, 0.6em);
    text-align: center;
    padding: 12px clamp(6px, 1.8vw, 20px);
    min-height: 48px;
    min-width: 0;
    white-space: nowrap;
    line-height: 1.15;
    font-size: clamp(12px, 0.25rem + 3.2vw, 1.55rem);
    font-weight: 700;
    text-decoration: none;
    border-radius: 28px;
    -webkit-transition: box-shadow 0.2s ease, -webkit-transform 0.15s ease, background 0.2s ease;
    transition: box-shadow 0.2s ease, transform 0.15s ease, background 0.2s ease;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    touch-action: manipulation;
    cursor: pointer;
    position: relative;
    z-index: 1;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }

  .mobile-bottom-nav-call {
    background: linear-gradient(145deg, #9a94eb 0%, #7a74d4 50%, #6b65c9 100%);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 14px rgba(106, 100, 201, 0.4), 0 1px 3px rgba(0, 0, 0, 0.08);
  }

  .mobile-bottom-nav-call:hover,
  .mobile-bottom-nav-call:focus {
    color: #fff;
    box-shadow: 0 6px 20px rgba(106, 100, 201, 0.5), 0 2px 6px rgba(0, 0, 0, 0.1);
  }

  .mobile-bottom-nav-call:active {
    transform: scale(0.98);
    box-shadow: 0 2px 8px rgba(106, 100, 201, 0.35);
  }

  .mobile-bottom-nav-call .fas.fa-phone {
    font-size: 1.15em;
    flex-shrink: 0;
  }

  .mobile-bottom-nav-rdv {
    background: linear-gradient(145deg, #38bdf8 0%, #0ea5e9 50%, #0284c7 100%);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 4px 14px rgba(2, 132, 199, 0.35), 0 1px 3px rgba(0, 0, 0, 0.08);
  }

  .mobile-bottom-nav-rdv:hover,
  .mobile-bottom-nav-rdv:focus {
    color: #fff;
    box-shadow: 0 6px 20px rgba(2, 132, 199, 0.45), 0 2px 6px rgba(0, 0, 0, 0.1);
  }

  .mobile-bottom-nav-rdv:active {
    transform: scale(0.98);
    box-shadow: 0 2px 8px rgba(2, 132, 199, 0.3);
  }

  .mobile-bottom-nav-rdv .fas.fa-calendar-check {
    font-size: 1.15em;
    flex-shrink: 0;
  }

  @media screen and (max-width: 360px) {
    .mobile-bottom-nav {
      gap: 6px;
      padding-left: 8px;
      padding-right: 8px;
    }
    .mobile-bottom-nav-btn {
      padding-left: 5px;
      padding-right: 5px;
      letter-spacing: -0.02em;
    }
  }
}
