/* Mobile Menu Overlay */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(43,45,66,.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 24px 40px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
}

.mobile-menu.open {
  opacity: 1;
  pointer-events: all;
}

.mobile-nav-list {
  list-style: none;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 100%;
  max-width: 320px;
}

.mobile-nav-list li a {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: rgba(255,255,255,.8);
  padding: 10px 24px;
  border-radius: 10px;
  transition: color .2s, background .2s;
}

.mobile-nav-list li a:hover {
  color: #8BC34A;
  background: rgba(255,255,255,.06);
}

/* CTA button in mobile menu */
.mobile-nav-list li a.btn {
  display: inline-flex;
  margin-top: 16px;
  background: #558B2F;
  color: #fff;
  width: 100%;
  justify-content: center;
  font-size: 1rem;
  padding: 14px 28px;
  border-radius: 10px;
}

.mobile-nav-list li a.btn:hover {
  background: #33691E;
  color: #fff;
}

/* Navbar toggle open state */
.navbar-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.navbar-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.navbar-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.navbar-toggle span {
  transition: all .3s ease;
  transform-origin: center;
}
