/* Mobile Header & Navigation Styles for Haraka Solutions Limited */
@media (max-width: 767px) {
    /* Hide desktop header and sticky containers on mobile */
    .header-inner.hidden-md-down,
    .sticky-outer {
      display: none !important;
    }
    /* Hide the fixed navbar on mobile */
    .navbar {
      display: none !important;
    }
    /* Mobile header bar: logo left, heading center, hamburger right */
    .mobile-header-bar {
      display: flex !important;
      flex-direction: row;
      justify-content: space-between;
      align-items: center;
      position: fixed;
      top: 0;
      left: 0;
      width: 100vw;
      height: 44px;
      background: #faf8f8;
      z-index: 10001;
      box-shadow: 0 2px 8px rgba(0,0,0,0.08);
      padding: 0 8px;
    }
    .mobile-header-bar .main-logo {
      display: flex !important;
      flex-direction: row;
      align-items: center;
      gap: 8px;
    }
    .mobile-header-bar .main-logo img {
      width: 50px !important;
      height: 50px !important;
      object-fit: cover;
      margin-right: 0;
    }
    .mobile-header-bar .main-logo p {
      font-size: 1em !important;
      margin-left: 8px;
      font-weight: bold;
      color: #800020 !important;
    }
    .mobile-header-bar .hamburger {
      margin-left: 12px;
      background: none;
      border: none;
      outline: none;
      display: flex;
      flex-direction: column;
      justify-content: center;
      height: 32px;
      width: 32px;
      cursor: pointer;
    }
    .mobile-header-bar .hamburger span {
      display: block;
      width: 24px;
      height: 3px;
      background: #0a0909 !important;
      margin: 3px 0;
      border-radius: 2px;
      transition: all 0.3s;
      border: 1px solid #800020;
    }
    /* Overlay menu styles */
    .mobile-nav-overlay {
      display: none;
      position: fixed;
      top: 44px;
      left: 0;
      width: 100vw;
      height: auto !important;
      min-height: unset !important;
      max-height: 90vh;
      overflow-y: auto;
      background: #fed7d7 !important;
      z-index: 10002;
      flex-direction: column;
      padding-top: 24px;
      align-items: center;
      transition: opacity 0.3s;
    }
    .mobile-nav-overlay.open {
      display: flex;
      opacity: 1;
      pointer-events: auto;
    }
    .mobile-nav-menu {
      display: flex !important;
      flex-direction: column;
      align-items: flex-end !important;
      justify-content: flex-start;
      text-align: right !important;
      width: 100%;
    }
    .mobile-nav-menu li {
      width: 100%;
      display: flex !important;
      justify-content: flex-end !important;
      align-items: center !important;
    }
    .mobile-nav-menu a {
      display: inline-flex !important;
      justify-content: flex-end !important;
      align-items: center !important;
      text-align: center important;
      width: auto !important;
      min-width: 120px;
      max-width: 90vw;
      margin-right: 0 !important;
      margin-left: auto !important;
      padding-left: 0 !important;
      padding-right: 0 !important;
    }
    .mobile-nav-menu a i {
      margin-right: 8px;
      display: inline-block;
    }
    .mobile-nav-menu a:hover {
      background: #a96464;
      color: #050505 !important;
    }
    /* Prevent content from being hidden under header */
    .induzy-content-wrapper, .hero-static {
      margin-top: 44px !important;
    }
  }
  
  @media (min-width: 768px) {
    .mobile-header-bar,
    .mobile-nav-overlay {
      display: none !important;
    }
  } 