/* Header Styles */
.header_container {
  width: 100%;
  max-width: 100vw;
  position: fixed;
  top: 0;
  z-index: 1000;
  background: #f2f2f2;
  /* box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04); */
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.813em 0 1.75em;
}

.logo {
  width: 100%;
  height: 100%;
  max-width: 10.5em;
  max-height: fit-content;
  object-fit: contain;
}

nav ul {
  display: flex;
  list-style: none;
}

nav ul li {
  padding: 0 1.111em;
}

nav ul li a {
  display: block;
  font-size: 1.25em;
  line-height: 1.222em;
  text-decoration: none;
  color: var(--secondary-color);
  font-weight: 600;
}

.cta-button {
  background-color: var(--primary-color);
  color: white;
  padding: 8px 15px;
  border-radius: 20px;
  text-decoration: none;
  display: inline-block;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 6px;
  z-index: 10;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--181818);
  display: block;
  border-radius: 2px;
}

/* === Mobile Menu Overlay === */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 20;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  transition: left 0.4s ease;
}

.mobile-menu-overlay.active {
  left: 0;
}

.mobile-menu-overlay .close-btn {
  position: absolute;
  top: 5px;
  right: 16px;
  font-size: 3rem;
  color: var(--primary-color);
  cursor: pointer;
}

.mobile-nav {
  width: 100%;
  list-style: none;
  padding: 7.5em 0 0;
  margin: 0;
}

.mobile-nav li {
  width: 100%;
  display: block;
}

.mobile-nav a {
  display: block;
  text-decoration: none;
  font-size: 2.5em;
  color: var(--secondary-color);
  font-weight: 600;
  text-align: left;
  padding: 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.5);
}


.mobile-nav li:last-child a{
  border-bottom: 0;
}

.quick_links {
  width: 100%;
  border-top: 1px solid rgba(0, 0, 0, 0.5);
  padding: 40px 20px;
}

.quick_links .q_link {
  font-size: 2em;
  line-height: 1.318em;
  letter-spacing: 0;
  text-decoration: none;
  color: var(--black);
  font-weight: 300;
  margin: 0 0 0.75em;
}

.quick_links .q_link:last-child {
  margin: 0;
}

@media (max-width: 600px) {
  .hamburger {
    display: flex;
  }

  .mobile_none {
    display: none !important;
  }

  nav {
    display: none;
  }

  .anim_btn {
    display: none;
  }
}