/* =========================
   MOBILE NAV STYLES
   ========================= */
.mobNavSection {
  display: none;
}

@media (max-width: 991px) {
  .mobNavSection {
    display: block;
    /* position: fixed; */
    /* top: 0; */
    width: 100%;
    z-index: 999;
    background: #ffffff;
  }

  .deskNavSection{
    display: none;
  }

  .mobNavTop {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 18px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  }

  .mobLogo img {
    height: 30px;
  }

  .mobMenuBtn,
  .mobCloseBtn {
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
  }

  /* Overlay */
  .mobNavOverlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    opacity: 0;
    pointer-events: none;
    z-index: 9998;
  }

  /* Drawer */
  .mobNavDrawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 88%;
    max-width: 360px;
    height: 100vh;
    background: #ffffff;
    padding: 30px 24px;
    transform: translateX(100%);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .mobNavLinks {
    list-style: none;
    padding: 80px 0 0;
  }

  .mobNavLinks li {
    margin-bottom: 22px;
  }

  .mobNavLinks a {
    font-size: 20px;
    font-weight: 500;
    color: #111;
    text-decoration: none;
  }

  .mobNavCta {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .mobCall,
  .mobWhatsapp {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
  }

  .mobCall {
    border: 1px solid #111;
    color: #111;
  }

  .mobWhatsapp {
    background: #1ab76f;
    color: #fff;
  }
}
