/* =========================
   MOBILE MENU + OVERLAY
   ========================= */

/* Dark click-off area */
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.45);
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
  z-index: 999; /* below the menu */
}

.mobile-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

/* Slide-out panel */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: min(86vw, 340px);
  height: 100vh;
  background: #0f0f0f;
  color: #ffffff;

  transform: translateX(100%);
  transition: transform .25s ease;
  z-index: 1000; /* above overlay */

  padding: 5.2rem 1.25rem 1.25rem; /* leave room for header height */
  display: flex;
  flex-direction: column;
}

.mobile-menu.is-open {
  transform: translateX(0);
}

/* Menu list (remove bullets + spacing) */
.mobile-menu .mobile-nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Links */
.mobile-menu .mobile-nav-link {
  display: block;
  padding: 0.95rem 0;
  font-size: 1.05rem;
  color: #ffffff;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.10);
}

.mobile-menu .mobile-nav-link:hover {
  color: var(--brand-accent);
}

/* Bottom CTA */
.mobile-menu .mobile-menu-bottom {
  margin-top: auto;
  padding-top: 1rem;
}

.mobile-menu .mobile-call-btn {
  display: block;
  width: 100%;
  text-align: center;
  padding: 0.95rem 1rem;
  border-radius: 999px;
  background: var(--brand-accent);
  color: #111111;
  font-weight: 600;
  text-decoration: none;
}
