/* =========================================================
   Mobile Sticky CTA (Nelson Wash)
   - Mobile-only fixed footer bar with 2 CTAs
   - Includes iOS safe-area support
   ========================================================= */

.nw-mobile-cta{
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  background: #000;
  border-top: 1px solid rgba(255,255,255,.25);
  padding: 12px 16px;
  padding-bottom: calc(12px + env(safe-area-inset-bottom));
  display: none; /* hidden by default (desktop) */
}

.nw-mobile-cta__inner{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  align-items: center;
}

.nw-mobile-cta__call,
.nw-mobile-cta__quote{
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: .02em;
  white-space: nowrap;
}

.nw-mobile-cta__call{
  background: transparent;
  border: 1px solid rgba(255,255,255,.55);
  color: #fff;
}

.nw-mobile-cta__quote{
  /* Match your primary button colour */
  background: #2F80ED;
  color: #fff;
}

@media (max-width: 767px){
  .nw-mobile-cta{ display: block; }

  /* Prevent the sticky bar from covering page content */
  body{
    padding-bottom: calc(84px + env(safe-area-inset-bottom));
  }
}
