.lang-switcher {
  position: fixed;
  top: 16px;
  right: 16px;
  z-index: 1000;
  font-family:
    Montserrat,
    system-ui,
    -apple-system,
    Segoe UI,
    Roboto,
    Helvetica,
    Arial,
    sans-serif;
}

html[lang="en"] [data-lang="vi"] {
  display: none !important;
}

html[lang="vi"] [data-lang="en"] {
  display: none !important;
}

.lang-switcher .lang-btn {
  width: 52px;
  height: 52px;
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(8px);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
}

.lang-switcher .lang-emoji {
  font-size: 18px;
  line-height: 1;
}

.lang-switcher .lang-code {
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.6px;
}

.lang-switcher .lang-menu {
  position: absolute;
  top: 64px;
  right: 0;
  width: 220px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(20, 20, 20, 0.92);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.55);
  overflow: hidden;
  display: none;
}

.lang-switcher.is-open .lang-menu {
  display: block;
}

.lang-switcher .lang-item {
  width: 100%;
  padding: 14px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: transparent;
  border: 0;
  color: #fff;
  cursor: pointer;
  font-size: 16px;
  text-align: left;
}

.lang-switcher .lang-item:hover {
  background: rgba(255, 255, 255, 0.06);
}

.lang-switcher .lang-item.is-active .lang-name {
  color: #f1c40f;
  font-weight: 700;
}

.site-footer {
  position: relative;
}

.site-footer .footer-inner {
  max-width: 980px;
  margin: 0 auto;
  padding: 24px 18px 14px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 26px;
  position: relative;
  z-index: 2;
}

.site-footer .footer-brand {
  min-width: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.site-footer .footer-logo img {
  width: 130px;
  height: auto;
  display: block;
}

.site-footer .footer-follow-title {
  font-weight: 700;
  color: #fff;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 8px;
}

.site-footer .footer-follow-icons {
  display: flex;
  gap: 12px;
  justify-content: center;
  align-items: center;
}

.site-footer .footer-support {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 999px;
  background: linear-gradient(180deg, #ffdd7b 0%, #b67a1e 100%);
  color: #2a1500;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
}

.site-footer .footer-links {
  flex: 1;
  display: flex;
  gap: 34px;
  justify-content: center;
}

.site-footer .footer-links-col {
  min-width: 240px;
}

.site-footer .footer-heading {
  font-weight: 800;
  color: #d6c26a;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin: 6px 0 12px;
}

.site-footer .footer-links-col a {
  display: block;
  color: #c9c9c9;
  text-decoration: none;
  font-size: 12px;
  line-height: 1.5;
  margin: 8px 0;
}

.site-footer .footer-links-col a:hover {
  color: #fff;
}

.site-footer .footer-cert {
  min-width: 190px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.site-footer .footer-cert-badge img {
  width: 160px;
  height: auto;
  display: block;
}

.site-footer .footer-bottom {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 18px 26px;
  position: relative;
  z-index: 2;
  text-align: center;
  color: #737371;
  font-style: italic;
  font-size: 11.5px;
}

@media (max-width: 980px) {
  .site-footer .footer-inner {
    flex-wrap: wrap;
    justify-content: center;
  }
  .site-footer .footer-links {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 820px) {
  .site-footer .footer-inner {
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 18px;
  }
  .site-footer .footer-brand,
  .site-footer .footer-cert {
    width: 100%;
    max-width: 320px;
    min-width: 0;
  }
  .site-footer .footer-links {
    width: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 18px;
  }
  .site-footer .footer-links-col {
    width: 100%;
    max-width: 320px;
    min-width: 0;
    text-align: center;
  }
  .site-footer .footer-heading {
    text-align: center;
  }
  .site-footer .footer-links-col a {
    text-align: center;
  }
}

@media (max-width: 680px) {
  .site-footer .footer-inner {
    padding-top: 18px;
  }
  .site-footer .footer-links {
    flex-direction: column;
    gap: 18px;
    align-items: center;
  }
  .site-footer .footer-links-col {
    min-width: 0;
    width: 100%;
    max-width: 320px;
  }
  .site-footer .footer-cert {
    width: 100%;
  }
  .lang-switcher {
    top: 10px;
    right: 10px;
  }
  .lang-switcher .lang-btn {
    width: 46px;
    height: 46px;
  }
}

.legal-page {
  max-width: 980px;
  margin: 0 auto;
  padding: 110px 18px 50px;
  position: relative;
  z-index: 2;
  color: #fff;
}

.legal-page h1 {
  font-size: 28px;
  line-height: 1.25;
  margin: 0 0 14px;
  font-weight: 800;
}

.legal-page p {
  color: #c9c9c9;
  line-height: 1.7;
  margin: 0 0 12px;
}

.legal-page ul,
.legal-page ol {
  margin: 0 0 14px 22px;
  padding: 0;
  color: #c9c9c9;
}

.legal-page ul {
  list-style: disc;
}

.legal-page ol {
  list-style: decimal;
}

.legal-page li {
  margin: 0 0 8px;
  line-height: 1.7;
}

.legal-page li:last-child {
  margin-bottom: 0;
}

@media (max-width: 680px) {
  .legal-page {
    padding-top: 95px;
  }
  .legal-page h1 {
    font-size: 22px;
  }
}

.page-brand {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 70px 18px 0;
  position: relative;
  z-index: 2;
}

.page-brand-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.page-brand-logo {
  width: 180px;
  height: auto;
  display: block;
}

.page-brand + .legal-page {
  padding-top: 26px;
}

@media (max-width: 680px) {
  .page-brand {
    padding-top: 58px;
  }
  .page-brand-logo {
    width: 150px;
  }
  .page-brand + .legal-page {
    padding-top: 22px;
  }
}

.scroll-top {
  position: fixed;
  right: 16px;
  bottom: 16px;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(20, 20, 20, 0.82);
  backdrop-filter: blur(10px);
  color: #fff;
  font-weight: 800;
  font-size: 18px;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
  z-index: 999;
}

.scroll-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.scroll-top:hover {
  background: rgba(0, 0, 0, 0.9);
}

@media (max-width: 680px) {
  .scroll-top {
    right: 10px;
    bottom: 10px;
  }
}

.content-center {
  max-height: none !important;
  overflow: visible !important;
}

.view-more {
  display: none !important;
}

@media (max-width: 1024px) {
  a.icon-livechat-load {
    position: fixed;
    top: 8%;
    right: 1.5%;
    left: unset;
    margin-top: 0;
  }
}

@media (max-width: 1024px) {
  .btnsocial {
    position: fixed;
    width: 60px;
    height: 60px;
    margin: 0;
    top: 8%;
    left: 1.5%;
    z-index: 99;
  }
  .btnfb {
    top: calc(8% + 70px);
  }
  .btnchat {
    right: 1.5%;
    left: auto;
  }
  .btnphone {
    top: calc(8% + 70px);
    right: 1.5%;
    left: auto;
  }
}
.homepage-content {
  position: relative;
  z-index: 999;
  width: 90%;
  max-width: 1140px;
  margin: 40px auto 0;
  padding: 15px;
  font-size: 18px;
  color: white;
  letter-spacing: 1px;
}

.homepage-content .sub-title01 {
  font-size: 22px;
  color: #ffe5b7;
  margin-block: 15px;
  text-transform: uppercase;
  font-weight: 700;
  text-align: center;
}

.homepage-content .sub-title02 {
  font-size: 18px;
  color: #ffe5b7;
  margin-block: 5px;
  text-transform: uppercase;
  font-weight: 700;
}
.homepage-content .sub-list {
  padding-left: 30px;
  margin-bottom: 10px;
}

.homepage-content .sub-list li {
  line-height: 1.5;
  color: white;
  list-style: disc;
}

.homepage-content p,
.homepage-content i {
  margin-bottom: 12px;
  color: white;
  line-height: 1.5;
  font-size: 16px;
}
.homepage-img {
  text-align: center;
}
footer {
  position: relative;
  z-index: 9999;
}