/* Header */
.site-header {
  position: fixed;
  top: 0;
  z-index: 101;
  width: 100%;
  background-color: #fff;
  background-color: var(--color-primary);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1920px;
  margin: auto;
  padding: 10px 30px;
}

.site-header .container .text-logo {
  color: #fff;
  font-family: var(--font-family-secondary);
  font-size: 14px;
  letter-spacing: 1px;
}

.site-header .container a img {
  max-width: 250px;
  height: auto;
  min-width: 150px;
  width: 100%;
  display: block;
}

.site-header .site-title {
  color: #fff;
  font-weight: 700;
  font-size: 24px;
}

.site-header .main-nav .page_item {
  color: #fff;
}

/* Page load */
.page-load {
  display: flex;
  height: 100%;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
}

.page-load .column {
  border-left: 1px solid rgba(106, 106, 106, 0.586);
  flex: 1;
  background-color: #1d1d1d;
  height: 100%;
}

/* Progress bar */
#progress-bar {
  width: 0;
  height: 3px;
  background-color: #f70;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  transition: width 0.1s ease-out;
}

/* Overlay */
.overlay {
  background-color: #0000008a;
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 2;
}

/* MENU NAV TRIGGER */
.site-header .group-nav {
  display: flex;
  gap: 5px 10px;
}
.site-header .trigger-menu-nav {
  cursor: pointer;
  color: #fff;
  font-weight: 500;
  font-size: 16px;
}

.group-nav .trigger-menu-nav {
  /* overflow: hidden; */
  position: relative;
}

.group-nav .group-line {
  display: none;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  row-gap: 5px;
}

.group-nav .line {
  width: 70px;
  height: 1px;
  background-color: #fff;
  right: 0;
}

.trigger-menu-nav .text-close {
  opacity: 0;
  transform: translateY(25px);
  position: absolute;
  bottom: 0;
  left: 0;
  transition: all 0.6s ease;
}

.trigger-menu-nav .text-close.active {
  opacity: 1;
  transform: translateY(0);
}

.trigger-menu-nav .text-menu {
  transition: all 0.6s ease;
  opacity: 1;
  display: inline-block;
}

.trigger-menu-nav .text-menu.active {
  opacity: 0;
  transform: translateY(-25px);
}

.nav-content {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  overflow: hidden;
  background: var(--color-primary);
  /* hoặc màu bạn muốn */
  z-index: 99;
  transition: height 0.5s ease;
}

.nav-content.active {
  height: 100vh;
}

.nav-content .main-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  height: 100%;
  flex-direction: column;
}

.nav-content .main-nav li {
  overflow: hidden;
  line-height: normal;
  text-align: center;
}

.nav-content .main-nav li a {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  font-size: 54px;
  font-weight: 500;
  margin-bottom: 15px;
  display: inline-block;
}

.nav-content .main-nav li a.active {
  opacity: 1;
  transform: translateY(0);
}
.nav-content .information {
  display: flex;
  border-top: 1px solid #3b3b3b;
  padding-top: 20px;
  gap: 15px 35px;
  opacity: 0;
  transform: translateY(-40px);
  transition: transform 0.6s ease;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  align-content: center;
}
.nav-content .contact-info-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.nav-content .information.active {
  transform: translateY(0);
  opacity: 1;
}
.nav-content .information .contact-info-item .label {
  color: #ccc;
  font-size: 14px;
  font-weight: 300;
}
.nav-content .information .contact-info-item .value {
  color: #eee;
}
.nav-content .information .contact-info-item:first-child .value {
  text-decoration: underline;
}
/* END MENU NAV TRIGGER */

/* Footer */
.site-footer {
  background-color: #11122a;
  color: #fff;
  position: relative;
}
.site-footer .logo {
  text-align: center;
  margin-bottom: 4rem;
}
.site-footer .logo a img {
  width: 100%;
  max-width: 735px;
}
.site-footer .container {
  max-width: 1440px;
  width: 100%;
  margin: auto;
  position: relative;
  padding: 6rem 1rem 2rem;
}
.site-footer .middle {
  display: flex;
  align-items: flex-start;
  justify-content: space-around;
  border-top: 1px solid #333;
  padding-top: 3rem;
  position: relative;
  flex-wrap: wrap;
}
.site-footer .middle::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 1px;
  background-color: #333;
  top: 50%;
  left: 70%;
  transform: translate(-50%, -50%);
}
.site-footer .middle .left {
  letter-spacing: 1px;
  font-size: 16px;
  width: 70%;
  padding-right: 5rem;
}
.site-footer .middle .right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 30%;
  text-align: center;
}

.site-footer .middle .right a {
  margin-bottom: 10px;
  transition: all 0.3s ease;
  text-transform: uppercase;
}
.site-footer .middle .right #menu-footer-menu li {
  margin-bottom: 10px;
}
.site-footer .middle .right a:hover {
  color: #f70;
}

.site-footer .bot {
  padding: 10px;
  color: #333;
  font-size: 14px;
  background-color: #fff;
  text-align: center;
}

/* Form */
.form {
  padding: 4rem;
}
.ct7 {
  display: flex;
  align-items: center;
  justify-content: center;
}

.ct7 .wpcf7 {
  width: 1200px;
  margin: auto;
}

.wpcf7-form-control-wrap {
  flex: 1;
}

/* Căn layout 2 cột */
.wpcf7 form .form-group {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 25px;
}

/* Input, Select, Textarea */
.wpcf7 form input,
.wpcf7 form select,
.wpcf7 form textarea {
  border: none;
  border-bottom: 1px solid #ccc;
  padding: 10px 5px;
  font-size: 14px;
  background: transparent;
  outline: none;
  width: 100%;
  font-family: "Inter Tight", sans-serif;
}

/* Submit button */
.wpcf7 form input[type="submit"] {
  margin: 30px auto 0;
  display: block;
  background: #0b0b2d;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 12px 30px;
  border: none;
  cursor: pointer;
  font-size: 14px;
  transition: all 0.5s ease;
  border: 1px solid transparent;
}

/* Optional: hover effect */
.wpcf7 form input[type="submit"]:hover {
  opacity: 0.9;
  background-color: transparent;
  border-color: var(--color-primary);
  color: var(--color-primary);
  font-weight: 700;
}

@media screen and (max-width: 1200px) {
  .site-header .container {
    padding: 5px 1rem;
  }
}
@media screen and (max-width: 992px) {
  .site-footer .logo {
    margin-bottom: 1rem;
  }
  .site-footer .middle {
    border-top: none;
    padding: initial;
  }
  .site-footer .middle .left {
    width: 100%;
    padding: 1rem 1rem 2rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid #333;
    font-size: 14px;
  }
  .site-footer .middle .right {
    width: fit-content;
    margin-top: 1rem;
  }
  .site-footer .middle::before {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  .site-header .container .text-logo {
    display: none;
  }
  .site-header .container a img {
    width: 200px;
  }

  /* FORM */
  .form {
    padding: 1rem;
  }
  .wpcf7 form .form-group {
    flex-direction: column;
  }
  .wpcf7 form input,
  .wpcf7 form select,
  .wpcf7 form textarea {
    font-size: 12px;
  }
  .wpcf7-not-valid-tip {
    font-size: 12px;
  }
}

@media screen and (max-width: 468px) {
  .site-header a img {
    width: 150px;
  }
  .site-footer .container {
    padding: 4rem 1rem 2rem;
  }
  .site-footer .logo {
    margin-bottom: 0rem;
  }
  .site-footer .middle {
    padding-top: 2rem;
  }
  .site-footer .middle h4 {
    font-size: 24px;
  }
  .site-footer .middle a {
    font-size: 12px;
  }
  .site-footer .middle::before {
    display: none;
  }
  .site-footer .bot {
    font-size: 12px;
  }
}
