
.site-header {
  background: #ffffff;
  position: sticky;
  top: 0;
  z-index: 1000;
  padding:70px 0px 57px 0px;
}
.mobile-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: calc(100% - 48px);
  height: 100vh;
  background: #ffffff;
  border-top: 1px solid #eaeaea;

  display: none;
  flex-direction: column;
  gap: 24px;
  padding: 32px 24px;

  z-index: 999;
}


.header-container {
  max-width: 1400px;
  margin: auto;
  padding: 0px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.header-logo {
  font-size: 22px;
  letter-spacing: 1px;
}

.logo-bold {
  font-weight: 800;
  color: #000;
}

.logo-divider {
  color: #00b386;
  margin: 0 6px;
}

.logo-light {
  font-weight: 500;
  color: #000;
}

/* Navigation */
.header-nav {
  display: flex;
  gap: 32px;
  justify-content: center;
  align-items: center;
}
.menu-items {
   display: flex;
  gap: 28px;
  justify-content: center;
  align-items: center;
}

.header-nav a:hover {
  opacity: 0.7;
}

/* CTA Button */
.header-cta {
  border-radius: 28px;
  background-color: #00b189;
  padding: 15px 40px;
  font-size: 20px;
  color: #fff;
  font-weight: bold;
  font-family: "Open Sans";
  text-decoration: none;
}

@media (max-width: 991px) {
  .header-container {
    padding: 16px 24px;
  }

  .header-nav {
    display: none;
  }
}
/* Hide hamburger on desktop */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}

.hamburger span {
  width: 26px;
  height: 2px;
  background: #000;
  transition: 0.3s ease;
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 24px;
  padding: 32px 24px;
  background: #ffffff;
  border-top: 1px solid #eaeaea;
}

.mobile-menu a {
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  color: #000;
}

.mobile-cta {
  background: #00b386;
  color: #fff !important;
  padding: 14px 24px;
  border-radius: 30px;
  width: fit-content;
  font-family: "Open Sans";
  font-size: 20px !important;
}

@media (max-width: 991px) {

  .desktop-menu {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .mobile-menu.active {
    display: flex;
  }
}
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}
@media (max-width: 390px){
  .header-logo a img {
    width: 215px !important;
  }
}
@media (max-width: 991px) {
  .desktop-menu {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .mobile-menu.active {
    display: flex;
  }
  .site-header {
   padding:20px 0 !Important;
  }
  .mobile-menu.active ul {
   padding:0;
    margin:0;
    gap:32px;
    display: flex;
    flex-direction: column;
  }
   .mobile-menu.active ul li a{
    color: #2c2e35;
    font-family: Montserrat;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0;
    text-decoration: none;
    text-transform: uppercase;
  }
  .mobile-menu{
    gap:32px;
  }
  .header-logo a img {
    max-width:150px;
    width:100% !important;
  }
}
.menu-items .header-cta:hover {
  background:#aba1cf;
}
.header-nav ul {
    display: flex;
    gap: 50px;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin:0;
}
.header-nav ul li {
  list-style-type: none;
}
.header-nav ul li a {
 font-size: 20px;
letter-spacing: 0px;
color: #2c2e35;
font-family: "Open Sans";
  text-decoration: none;
  font-weight: bold;
  text-transform: uppercase;
  padding: 15px 0;
}
.mobile-menu ul li {
 list-style-type:none;
}
.header-logo a {
 display:flex;
}



/* Parent must be relative */
.header-nav .hs-item-has-children {
  position: relative;
}

/* Hide dropdown initially */
.header-nav .hs-menu-children-wrapper {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  min-width: 115px;
  padding: 20px 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  z-index: 99;
}

/* Show on hover */
.header-nav .hs-item-has-children:hover > .hs-menu-children-wrapper {
  display: block;
}
.header-nav .hs-item-has-children:hover > .hs-menu-children-wrapper li {
 margin-bottom:15px;
}
/* Desktop */
@media (min-width: 992px) {

  .header-nav .hs-item-has-children {
    position: relative;
  }

  .header-nav .hs-menu-children-wrapper {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    display: none;
    background: #fff;
    min-width: 200px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  }

  .header-nav .hs-item-has-children:hover > .hs-menu-children-wrapper {
    display: block;
  }

}


@media (max-width: 991px) {

  .header-nav .hs-menu-children-wrapper {
    position: relative;   /* 🔥 important */
    top: 0;
    left: 0;
    transform: none;
    display: none;
    width: 100%;
    box-shadow: none;
    padding-left: 15px;
  }

  .header-nav .hs-item-has-children.active > .hs-menu-children-wrapper {
    display: block;
  }
}

.header-nav .hs-menu-children-wrapper {
  display: none;
}

.header-nav .hs-menu-children-wrapper.open-menu {
  display: block;
}
.mobile-menu .hs-item-has-children .hs-menu-children-wrapper {
 display:none;
  padding: 20px;
}
.mobile-menu .open-menu li {
    margin-bottom: 32px !important;
}
.mobile-menu .open-menu li {
 margin-bottom:15px;
}

@media (min-width: 992px) {
    .header-nav .hs-menu-children-wrapper {
    top: 150%;
    left: 100%;
}
