.header-bg {
  background-color: #fff;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 9999;
}

.header-bg.is-fixed {
  position: fixed;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

body {
  padding-top: 60px;
}

body.admin-bar {
  padding-top: 92px;
}

body.admin-bar .header-bg.is-fixed {
  top: 32px;
}

.app-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 60px;
  padding: 0 32px;
}

.header-menu,
.header-logo,
.header-right,
.header-lang {
  height: 60px;
}

.header-container {
  display: flex;
  align-items: center;
  width: 100%;
}

.header-menu {
  display: flex;
  align-items: center;
  list-style: none;
  margin-left: auto;
  margin-right: auto;
  gap: 32px;
}

.header-logo img {
  width: 80px;
  height: 60px;
}

.header-pc-item {
  color: #194185!important;
  font-size: var(--text-size-1);
  line-height: 20px;
  letter-spacing: -2%;
}
.header-pc-item a {
  text-decoration: none;
  color: #194185 !important;
}
.header-pc-item:hover a,
.header-pc-item.active a {
  font-weight: 600;
  color: #1570ef !important;
}
.header-right {
  display: flex;
  align-items: center;
  gap: 18px;
  color: #194185;
}

.header-lang {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header-lang > div {
  font-size: var(--text-size-1);
}
.lang-text {
  font-size: var(--text-size-1);
  font-family: "Public Sans";
  font-weight: 500;
  line-height: 14px;
  text-align: center;
}
.header-contact {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #194185 !important;
  line-height: 1;
}
.contact-icon{
  display: flex;
  align-items: center;
}
.contact-icon img {
  display: block;
}
.header-btn {
  border: 1px solid #194185;
  border-radius: 60px;
  padding: 8px 24px;
  display: flex;
  align-items: center;
}

.header-btn:hover {
  background-color: #194185;
}
.header-btn:hover span {
  color: #fff;
}
.header-btn:hover span img {
  filter: invert(1) sepia(1) saturate(0);
}

.contact-text {
  font-size: var(--text-size-1);
  font-weight: 500;
  text-align: center;
  white-space: nowrap;
}
.d-header{
  display: none ! important;
}
@media (max-width: 1024px) {
  .d-header{
  display: block ! important;
}
  .header-menu,
  .header-right {
    display: none;
  }

  .header-logo {
    position: relative;
    z-index: 1;
  }
  .header-logo img {
    width: 53px;
    height: 40px;
  }

  .header-mobile {
    display: block;
    position: relative;
    z-index: 1000;
  }

  .mobile-menu-icon i {
    font-size: 22px;
    color: #194185;
    cursor: pointer;
  }

  .mobile-menu-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 998;
  }

  /* Menu trượt */
  .mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: #fff;
    z-index: 999;
    padding: 24px;
    display: flex;
    flex-direction: column;
    transition: right 0.3s ease;
    box-shadow: -2px 0 8px rgba(0, 0, 0, 0.1);
  }
  .mobile-menu.open {
    right: 0;
  }

  /* Header menu trong mobile */
  .mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
  }

  .mobile-close i {
    font-size: 22px;
    color: #194185;
    cursor: pointer;
  }

  .mobile-contact .header-btn {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  /* List menu */
  .mobile-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex: 1;
  }

  .mobile-menu-list li {
    display: block;
    transition: 0.25s ease;
    border-radius: 8px;
    padding: 12px 24px;
    font-size: 18px;
    text-align: center;
  }
  .mobile-menu-list li:hover {
    background: #f0f4ff;
    padding-left: 8px;
  }
  .mobile-menu-list li:hover a {
    color: #1570ef;
  }

  /* Link item */
  .mobile-menu-list a {
    text-decoration: none;
    color: #194185;
    font-size: 16px;
    font-weight: 500;
  }
  .header-btn a {
    padding: 12px;
  }
 
  .mobile-contact .header-btn span {
    color: #194185 !important;
  }
  
  .mobile-contact .header-btn:hover span {
    color: #fff !important;
  }
}
@media screen and (max-width: 576px) {
  .app-header{
    padding: 0 !important;
  }
}