/* .main-header {
  width: 100%;
  background-color: #ffffff;
  position: relative;
  z-index: 999;
  box-sizing: border-box;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
}

.menu {
  display: flex;
  gap: 35px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.menu li {
  list-style: none;
}

.menu a {
  color: #222;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: 0.3s;
}

.menu a:hover {
  color: #0d6b3c;
}

.logo img,
.custom-logo {
  height: 42px;
  width: auto;
  display: block;
}

.contact-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #005c3e;
  color: #ffffff;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
}

.contact-btn:hover {
  background-color: #0c5943;
}

@media (max-width: 992px) {
  .nav-links {
    display: none;
  }

  .navbar {
    padding: 14px 20px;
  }

  .logo img,
  .custom-logo {
    height: 36px;
  }

  .contact-btn {
    padding: 10px 18px;
    font-size: 13px;
  }
} */

/* ==========================================================================
   MAIN STICKY HEADER STYLES (Desktop First)
   ========================================================================== */

.main-header {
  width: 100%;
  background-color: #ffffff;
  position: sticky; /* Turns on your sticky functionality rule */
  top: 0;
  z-index: 9999;
  box-sizing: border-box;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0px 24px;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  box-sizing: border-box;
}

.menu {
  display: flex;
  gap: 35px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.menu li {
  list-style: none;
}

.menu a {
  color: #222;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: 0.3s;
}

.menu a:hover {
  color: #0d6b3c;
}

.logo img,
.custom-logo {
  height: 42px;
  width: auto;
  display: block;
}

.contact-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #005c3e;
  color: #ffffff;
  padding: 8px 24px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
}

.contact-btn:hover {
  background-color: #0c5943;
}

/* Hide mobile components completely on widescreen desktops */
.mobile-menu-drawer,
.hamburger-toggle {
  display: none;
}

/* ==========================================================================
   MOBILE INTERFACE RESPONSIVE MEDIA QUERIES (Under 992px)
   ========================================================================== */

@media (max-width: 992px) {
  /* Hides standard desktop link rows and floating header button */
  .nav-links,
  .navbar > .contact-btn {
    display: none !important;
  }

  .navbar {
    padding: 0px 20px;
  }

  .logo img,
  .custom-logo {
    height: 36px;
  }

  /* --- HAMBURGER ICON BUTTON --- */
  .hamburger-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10001;
  }

  .hamburger-toggle span {
    width: 100%;
    height: 2.5px;
    background-color: #222222;
    border-radius: 2px;
    transition: all 0.3s ease-in-out;
    transform-origin: left center;
  }

  /* Hamburger Anim to X */
  .hamburger-toggle.open span:nth-child(1) {
    transform: rotate(45deg);
    position: relative;
    top: -1px;
  }

  .hamburger-toggle.open span:nth-child(2) {
    width: 0%;
    opacity: 0;
  }

  .hamburger-toggle.open span:nth-child(3) {
    transform: rotate(-45deg);
    position: relative;
    top: 1px;
  }

  /* --- DRAWER SLIDE OUT DROPDOWN MENU --- */
  .mobile-menu-drawer {
    display: block;
    position: fixed;
    top: 64px; /* Sits perfectly underneath the sticky navigation bar */
    left: 0;
    width: 100%;
    height: calc(100vh - 64px);
    background-color: #ffffff;
    z-index: 10000;
    transform: translateX(100%); /* Hidden off-screen to the right */
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-sizing: border-box;
    overflow-y: auto;
  }

  .mobile-menu-drawer.open {
    transform: translateX(0); /* Slides onto the screen smoothly */
  }

  .mobile-nav {
    display: flex;
    flex-direction: column;
    padding: 40px 24px;
    gap: 32px;
  }

  .mobile-menu-links {
    display: flex;
    flex-direction: column;
    gap: 24px;
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .mobile-menu-links li {
    list-style: none;
  }

  .mobile-menu-links a {
    color: #222222;
    font-size: 18px;
    font-weight: 500;
    text-decoration: none;
    display: block;
  }

  .mobile-menu-links a:hover {
    color: #0d6b3c;
  }

  .mobile-contact-btn {
    width: 100%;
    padding: 16px;
    font-size: 16px;
    margin-top: 12px;
    text-align: center;
    box-sizing: border-box;
  }
}
