/* Mobil naviqasiya — tam ekran overlay (Bootstrap collapse yox) */

.site-menu-toggle {
  display: none;
}

.site-mobile-menu {
  display: none;
}

@media (max-width: 991.98px) {
  .site-menu-toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    gap: 5px;
    width: 44px;
    height: 44px;
    margin-left: auto;
    padding: 0.35rem 0.25rem;
    border: none;
    background: transparent;
    cursor: pointer;
    flex-shrink: 0;
  }

  .site-menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: #0f1c2e;
    border-radius: 1px;
    transition: transform 0.2s ease, opacity 0.2s ease;
  }

  .site-menu-toggle:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 193, 106, 0.25);
    border-radius: 6px;
  }

  .site-navbar .navbar-brand img {
    height: 36px;
  }

  .site-mobile-menu {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 1080;
    background: #fff;
    padding: 0.85rem 1.15rem 2rem;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.22s ease, visibility 0.22s ease;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .site-mobile-menu.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  body.site-menu-open {
    overflow: hidden;
    touch-action: none;
  }

  .site-mobile-menu-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.75rem;
    padding-bottom: 0.85rem;
    border-bottom: 1px solid #e6ebf2;
  }

  .site-mobile-menu-top .navbar-brand {
    margin: 0;
  }

  .site-menu-close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: none;
    background: transparent;
    color: #0f1c2e;
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
    padding: 0;
    flex-shrink: 0;
  }

  .site-menu-close:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 193, 106, 0.25);
    border-radius: 6px;
  }

  .site-mobile-nav {
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .site-mobile-nav li {
    margin: 0;
  }

  .site-mobile-nav-link {
    display: block;
    padding: 0.9rem 0;
    font-size: 1.05rem;
    font-weight: 600;
    line-height: 1.35;
    color: #0f1c2e;
    text-decoration: none;
    -webkit-tap-highlight-color: transparent;
  }

  .site-mobile-nav-link.is-active {
    color: #00c16a;
  }

  .site-mobile-nav-link:active {
    opacity: 0.75;
  }
}

@media (min-width: 992px) {
  .site-navbar .navbar-collapse {
    align-items: center;
  }

  .site-navbar .navbar-collapse .header-social {
    flex-shrink: 0;
  }
}
