:root {
  /* Canva export uses ~1024.5px page width */
  --container: 1280px;
  --blue-900: #003575;
  --blue-800: #103a6a;
  --blue-700: #15508f;
  --blue-500: #1f6fd1;
  --gray-50: #f6f8fb;
  --gray-100: #eef2f7;
  --gray-200: #e4eaf2;
  --gray-400: #414141;
  --gray-500: #667085;
  --gray-700: #344054;
  --text: #0b1220;
  --shadow: 0 10px 25px rgba(16, 24, 40, .12);
  --shadow-soft: 0 6px 18px rgba(16, 24, 40, .10)
  --radius: 14px;
  --recruit-red: #ee2d24;
  --recruit-red-dark: #c41e1a;
  --recruit-navy: #053b7c;
}

* {
  box-sizing: border-box
}

html {
  min-height: 100%;
}

body {
  min-height: 100%;
  margin: 0;
  font-family: "Noto Sans", sans-serif;
  color: var(--text);
  background: #fff;
}

a {
  color: inherit;
  text-decoration: none
}

img {
  max-width: 100%;
  display: block
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin-inline: auto;
}

/* Topbar */
.topbar {
  background: #053b7c;
  color: #fff;
  font-size: 14px;
}

.topbar__inner {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  padding: 6px 0;
}

.topbar__left {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap
}

.title__social {
  font-size: 14px;
  margin-right: 10px;
  font-weight: 500;
}

.topbar__left .pc a[title="facebook"] {
  font-size: 18px;
  margin-right: 10px;
}

.topbar__left .pc a[title="whatsapp"] {
  font-size: 22px;
}

.topbar__left img {
  width: 20px;
  margin-right: 10px;
}

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

.topbar__right .pc .topbar__item i {
  margin-right: 2px;
}

.topbar__right .pc .topbar__item .title__contact {
  font-weight: 500;
  font-size: 14px;
  margin-right: 5px;
}

.topbar__right .pc .topbar__sep {
  font-weight: 700;
  font-size: 14px;
  margin: 0 10px;
}

.lang {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 20px;
  opacity: .75;
}

.lang img {
  height: 22px;
  width: 30px;
}

.lang.is-active {
  opacity: 1
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #fff;
  border-bottom: 1px solid var(--gray-100);
  overflow: visible;
}

.header__inner {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 8px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  max-width: 80px;
}


.nav {
  display: flex;
  justify-content: space-around;
  gap: 16px;
  flex-wrap: wrap;
}

.nav__item {
  position: relative;
  display: flex;
  align-items: center
}

.nav__link {
  font-size: 16px;
  font-weight: 600;
  color: var(--gray-700);
  padding: 10px 6px;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.caret {
  font-size: 11px;
  color: #000;
}

.nav__link.is-active,
.nav__link.is-active .caret {
  color: #ff1033
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 12px
}

.icon-btn {
  border-radius: 10px;
  border: none;
  background: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
}

.icon {
  opacity: 1;
  color: #053b7c;
  font-size: 22px;
}

.icon-btn[aria-expanded="true"] {
  /* background: rgba(5, 59, 124, .08); */
}

.headerSearch {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  z-index: 60;
  background: #fff;
  border-bottom: 1px solid var(--gray-100);
  box-shadow: 0 14px 28px rgba(16, 24, 40, .1);
  padding: 14px 0 16px;
}

.headerSearch__form {
  display: flex;
  align-items: stretch;
  gap: 10px;
  max-width: 720px;
  margin: 0 auto;
}

.headerSearch__input {
  flex: 1;
  min-width: 0;
  border: 1px solid rgba(16, 24, 40, .14);
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 15px;
  font-family: inherit;
  color: var(--gray-700);
  background: #fff;
}

.headerSearch__input::placeholder {
  color: var(--gray-500);
}

.headerSearch__input:focus {
  outline: none;
  border-color: var(--blue-700);
  box-shadow: 0 0 0 3px rgba(31, 111, 209, .2);
}

.headerSearch__submit,
.headerSearch__close {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  border-radius: 10px;
  border: 1px solid rgba(16, 24, 40, .12);
  background: #fff;
  color: var(--blue-700);
  font-size: 16px;
  cursor: pointer;
  transition:
    color .2s ease,
    background .2s ease,
    border-color .2s ease;
}

.headerSearch__submit:hover {
  background: var(--blue-700);
  border-color: var(--blue-700);
  color: #fff;
}

.headerSearch__close {
  color: var(--gray-500);
}

.headerSearch__close:hover {
  background: var(--gray-100);
  color: var(--gray-700);
}

.headerSearch__submit:focus-visible,
.headerSearch__close:focus-visible,
.headerSearch__input:focus-visible {
  outline: 2px solid var(--blue-700);
  outline-offset: 2px;
}

.hotline__phone {
  display: flex;
  align-items: center;
}

.hotline__phone .icon__hotline {
  background: #053b7c;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  margin-right: 5px;
}

.hotline {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 6px 10px;
  border-radius: 10px;
  background: linear-gradient(#fff, #fbfdff);
}

.hotline__label {
  font-size: 14px;
  color: var(--gray-400);
  font-weight: 500
}

.hotline__value {
  font-size: 18px;
  color: var(--blue-900);
  font-weight: 600
}

.mobile-search-btn {
  display: none;
  width: 44px;
  height: 40px;
  border: 1px solid var(--gray-200);
}

.burger {
  display: none;
  width: 44px;
  height: 40px;
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  cursor: pointer;
}

.burger span {
  display: block;
  height: 2px;
  background: var(--gray-700);
  margin: 6px 10px;
  border-radius: 2px;
  opacity: .9
}

/* Desktop submenu */
.submenu {
  position: absolute;
  min-width: 220px;
  background: #fff;
  border: 1px solid var(--gray-100);
  border-radius: 12px;
  box-shadow: var(--shadow);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .16s ease, transform .16s ease, visibility .16s ease;
  z-index: 9999;
}

.nav__item.has-submenu>.submenu {
  top: calc(100% + 10px);
  left: -6px;
  transform: translateY(-6px);
}

.nav__item.has-submenu:hover>.submenu,
.nav__item.has-submenu:focus-within>.submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.submenu__item {
  position: relative;
}

.submenu__item.has-submenu>.submenu--nested {
  top: -10px;
  left: calc(100% + 8px);
  transform: translateX(-8px);
  z-index: 10000;
}

.submenu__item.has-submenu:hover>.submenu--nested,
.submenu__item.has-submenu:focus-within>.submenu--nested {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.submenu__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 10px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-700);
}

.submenu__link:not(.submenu__link--flyout) {
  display: block;
}

.submenu__chev {
  flex-shrink: 0;
  font-size: 10px;
  opacity: .55;
}

.submenu__link:hover {
  background: var(--gray-50);
  color: var(--blue-900)
}

.nav__item.has-submenu>.submenu::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 18px;
  width: 14px;
  height: 14px;
  background: #fff;
  border-left: 1px solid var(--gray-100);
  border-top: 1px solid var(--gray-100);
  transform: rotate(45deg);
}

.submenu--nested::before {
  display: none;
}

/* Hero */
.hero {
  position: relative;
  min-height: 570px;
  display: grid;
  align-items: center;
  overflow: hidden;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(9, 33, 66, .78) 0%, rgba(9, 33, 66, .55) 45%, rgba(9, 33, 66, .15) 100%);
}

.hero__content {
  position: relative;
  padding: 62px 0 58px;
}

.hero__title {
  margin: 0 0 14px;
  font-size: 37px;
  line-height: 44px;
  color: #fff;
  font-weight: 500;
}

.hero__desc {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, .86);
  font-size: 21px;
  line-height: 1.6;
  max-width: 550px;
}

.hero .btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 35px;
  border-radius: 10px;
  font-weight: 500;
  font-size: 32px;
  border: 1px solid transparent;
}

.hero .btn--primary {
  background: #ff1033;
  color: #fff;
  box-shadow: 0 10px 20px rgba(225, 29, 46, .35);
}

.hero .btn__arrow {
  font-weight: 900
}

/* Mobile nav (drawer) */
.mobileOverlay {
  position: fixed;
  inset: 0;
  background: rgba(11, 18, 32, .45);
  opacity: 0;
  transition: opacity .18s ease;
  z-index: 80;
}

.mobileOverlay.is-open {
  opacity: 1
}

.mobileNav {
  position: fixed;
  top: 0;
  right: 0;
  height: 100dvh;
  width: min(360px, 92vw);
  background: #fff;
  border-left: 1px solid var(--gray-100);
  box-shadow: -10px 0 30px rgba(16, 24, 40, .18);
  transform: translateX(100%);
  transition: transform .18s ease;
  z-index: 90;
  display: flex;
  flex-direction: column;
}

.mobileNav.is-open {
  transform: translateX(0)
}

.mobileNav__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 14px 14px;
  border-bottom: 1px solid var(--gray-100);
}

.mobileNav__brand {
  display: flex;
  align-items: center;
  gap: 10px
}

.mobileNav__title {
  font-weight: 900;
  letter-spacing: .06em;
  color: var(--blue-900)
}

.mobileNav__close {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  border: 1px solid var(--gray-200);
  background: #fff;
  cursor: pointer;
  font-size: 22px;
  line-height: 0;
  color: var(--gray-700);
}

.mobileNav__links {
  padding: 10px 10px 0;
  overflow: auto;
}

.mLink {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 12px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 14px;
  color: var(--blue-900);
}

.mLink.is-active {
  background: rgba(225, 29, 46, .08);
  color: #c91c1c
}

.mLink:hover {
  background: var(--gray-50)
}

.mNavRow {
  display: flex;
  align-items: center;
  gap: 6px;
}

.mNavRow .mLink,
.mNavRow .mSublink {
  flex: 1;
}

.mDisclosure {
  width: 38px;
  min-width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border-radius: 10px;
  border: 1px solid var(--gray-200);
  background: #fff;
  cursor: pointer;
  color: var(--blue-900);
}

.mDisclosure:hover {
  background: var(--gray-50)
}

.mDisclosure__caret {
  opacity: .75;
  transition: transform .16s ease;
  font-size: 13px;
}

.mDisclosure .screen-reader-text {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.mDisclosure[aria-expanded="true"] .mDisclosure__caret {
  transform: rotate(180deg)
}

.mPanel {
  margin: 0 6px 8px;
  padding: 6px;
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: 12px;
}

.mPanel--nested {
  margin: 4px 0 6px 8px;
  padding: 4px 6px;
  background: #fff;
  border-color: rgba(16, 24, 40, .08);
}

.mDisclosure--nested {
  width: 34px;
  min-width: 34px;
  height: 34px;
  color: var(--gray-700);
}

.mSublink {
  display: block;
  padding: 10px 10px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 13px;
  color: var(--gray-700);
}

.mSublink--deep {
  padding: 8px 10px;
  font-size: 12px;
  font-weight: 600;
}

.mSublink:hover {
  background: #fff
}

.mPanel--nested .mSublink:hover {
  background: var(--gray-50)
}

.mobileNav__footer {
  margin-top: auto;
  padding: 12px 14px 14px;
  border-top: 1px solid var(--gray-100);
  background: linear-gradient(#fff, #fbfdff);
}

.mHotline {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid var(--gray-200);
}

.mHotline__label {
  font-size: 11px;
  color: var(--gray-500);
  font-weight: 700
}

.mHotline__value {
  font-size: 14px;
  color: var(--blue-900);
  font-weight: 900
}

/* Sections */
.section {
  margin: 50px 0
}

.section--services::after {
  content: "";
  position: absolute;
  inset: 0;
  /* cách viết ngắn gọn hơn */
  z-index: 0;
  background: linear-gradient(180deg, transparent 45%, rgb(103 103 103 / 25%) 65%, rgb(206 206 206 / 65%) 80%, rgb(108 108 108 / 95%) 100%);
  pointer-events: none;
}

.section__eyebrow {
  text-align: center;
  font-size: 21px;
  letter-spacing: .12em;
  color: #ff1033;
  margin-bottom: 12px;
}

.section__title {
  text-align: center;
  margin: 0 0 35px;
  color: var(--blue-900);
  letter-spacing: .02em;
  font-size: 33px;
  font-weight: 600;
}

.section__title--light {
  color: #fff;
  text-align: left
}

/* Service cards */
.section--services .container {
  position: relative;
  z-index: 1;
}

.cardsWrap {
  margin-top: 6px;
  padding-bottom: 6px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 70px;
  padding: 4px 0 0;
  align-items: start;
  max-width: 800px;
  margin: 0 auto;
}

.card {
  position: relative;
  overflow: hidden;
}

.card__media {
  position: relative;
  z-index: 0;
  line-height: 0;
}

.card__media img {
  width: 100%;
  height: auto;
  display: block;
  filter: saturate(.98) contrast(1.03);
}

/* Lớp tối nhẹ phía dưới ảnh (như bản home.png), không phủ full thẻ */
.card::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 52%;
  pointer-events: none;
  z-index: 1;
  background: linear-gradient(180deg,
      rgba(0, 0, 0, 0) 0%,
      rgba(4, 12, 28, .15) 40%,
      rgba(4, 12, 28, .45) 100%);
}

.card__label {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 14px 12px 13px;
  color: #fff;
  font-weight: 500;
  font-size: 21px;
  line-height: 1.4;
  letter-spacing: .06em;
  text-transform: uppercase;
  text-align: center;
  z-index: 2;
  background-image: linear-gradient(to bottom, #00000005, #000000);
  height: 80px;
}

.card__labelText {
  display: inline-block;
  max-width: 100%;
  width: 100%;
  background-image: linear-gradient(to bottom, #00000005, #000000);
}

.section--services .card > a {
  display: block;
  position: relative;
  color: inherit;
  text-decoration: none;
}

/* Lớp phủ full thẻ khi hover — phủ cả ảnh và tên dịch vụ */
.section--services .card > a::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  background: linear-gradient(180deg,
      rgba(4, 12, 28, 0.72) 0%,
      rgba(4, 12, 28, 0.88) 55%,
      rgba(4, 12, 28, 0.94) 100%);
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.section--services .card::after {
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.section--services .card__label {
  z-index: 1;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.section--services .card__description {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 22px;
  color: #fff;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.55;
  letter-spacing: 0;
  text-transform: none;
  text-align: center;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.35s ease, transform 0.35s ease, visibility 0.35s;
  overflow: hidden;
}

.section--services .card__description h2{
	font-size: 26px !important;
}

@media screen and (max-width: 767px){
	.section--services .card__description h2{
		font-size: 26px !important;
	}
}

.section--services .card__description-inner {
  max-width: 100%;
  max-height: 100%;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.section--services .card__description h1,
.section--services .card__description h2,
.section--services .card__description h3,
.section--services .card__description h4 {
  margin: 0 0 10px;
  padding: 0;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.35;
  color: #fff;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.section--services .card__description p {
  margin: 0 0 8px;
}

.section--services .card__description p:last-child {
  margin-bottom: 0;
}

.section--services .card:hover > a::before,
.section--services .card:focus-within > a::before {
  opacity: 1;
  visibility: visible;
}

.section--services .card:hover::after,
.section--services .card:focus-within::after {
  opacity: 0;
  visibility: hidden;
}

.section--services .card:hover .card__label,
.section--services .card:focus-within .card__label {
  opacity: 0;
  visibility: hidden;
}

.section--services .card:hover .card__description,
.section--services .card:focus-within .card__description {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

@media (hover: none) {
  .section--services .card:hover > a::before,
  .section--services .card:focus-within > a::before {
    opacity: 0;
    visibility: hidden;
  }

  .section--services .card:hover::after,
  .section--services .card:focus-within::after {
    opacity: 1;
    visibility: visible;
  }

  .section--services .card:hover .card__label,
  .section--services .card:focus-within .card__label {
    opacity: 1;
    visibility: visible;
  }

  .section--services .card:hover .card__description,
  .section--services .card:focus-within .card__description {
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
  }
}

/* Partners */
.section--partners {
  background: #fff
}

.section--partners .partners {
  position: relative;
  margin-top: 8px;
}

.section--partners .partners__slider .slick-list {
  margin: 0 -8px;
}

.section--partners .partners__slider .slick-slide {
  padding: 0 8px;
}

.section--partners .partner {
  display: flex !important;
  align-items: center;
  justify-content: center;
  min-height: 68px;
}

.section--partners .partner img {
  display: block;
  width: 100%;
  max-width: 200px;
  height: auto;
  max-height: 87px;
  margin: 0 auto;
  object-fit: contain;
}

.section--partners .partners__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 40px;
  height: 40px;
  padding: 0;
  border-radius: 999px;
  border: 1px solid rgba(16, 24, 40, .12);
  background: #fff;
  color: var(--blue-700);
  font-size: 14px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 16px rgba(16, 24, 40, .08);
  transition:
    color .2s ease,
    background .2s ease,
    box-shadow .2s ease,
    border-color .2s ease;
}

.section--partners .partners__nav:hover {
  color: #fff;
  background: var(--blue-700);
  border-color: var(--blue-700);
  box-shadow: 0 8px 20px rgba(31, 111, 209, .25);
}

.section--partners .partners__nav:focus-visible {
  outline: 2px solid var(--blue-700);
  outline-offset: 2px;
}

.section--partners .partners__nav--prev {
  left: 0;
}

.section--partners .partners__nav--next {
  right: 0;
}

.section--partners .slick-prev:before,
.section--partners .slick-next:before {
  display: none !important;
}

.section--partners .slick-arrow.slick-disabled {
  opacity: .35;
  cursor: not-allowed;
}

/* Experts */
.section--experts {
  position: relative;
  padding: 52px 0;
  overflow: hidden;
}

.section--experts .section__overlay {
  position: absolute;
  inset: 0;
  background-size: cover;
  background: #053b7c8f;
}

.experts {
  position: relative;
  display: grid;
/*   grid-template-columns: 1.2fr .8fr; */
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  align-items: center;
}

.experts__desc {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, .84);
  font-size: 18px;
  line-height: 1.5;
  max-width: 560px;
}

.section--experts .section__title--light {
  margin: 0 0 35px;
}

.experts__card {
  border-radius: 14px;
  box-shadow: var(--shadow);
  justify-self: end;
/*   width: min(430px, 100%); */
  position: relative;
}

.experts__cardInner {
  overflow: hidden;
  border-radius: 14px;
}

.experts__cardInner>div {
  display: flex;
  transition: transform .35s ease;
  will-change: transform;
}

.experts__cardInner .item {
  position: relative;
  flex: 0 0 100%;
}

.experts__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px;
  padding: 5px;
}

.experts__name {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 14px 12px 13px;
  color: #fff;
  font-weight: 500;
  font-size: 21px;
  line-height: 1.4;
  letter-spacing: .06em;
  text-align: center;
  z-index: 2;
  background-image: linear-gradient(to bottom, #00000000, #00000099, #000000);
  height: 80px;
  border-radius: 14px;
}

.experts__nav {
  position: absolute;
  right: -106px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  gap: 8px;
  cursor: pointer;
}

.experts__nav svg {
  stroke: #fff;
}

.experts__nav svg path {
  stroke: #fff;
}

.experts__chev {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: rgba(255, 255, 255, .86);
  border: 1px solid rgba(16, 24, 40, .10);
  font-weight: 900;
  color: var(--blue-900);
}



/* News */
.section--news {
  padding: 46px 0 56px;
  background: linear-gradient(#fff, #f7f9fc);
  border-top: 1px solid var(--gray-100);
}

.news__tabs {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-bottom: 8px;
  font-size: 12px;
  color: var(--gray-500);
}

.tab {
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid transparent
}

.tab.is-active {
  color: var(--blue-900);
  font-weight: 700;
  border-color: var(--gray-200);
  background: #fff
}

.sub__title {
  font-size: 18px;
  color: var(--blue-900);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
}

.sub__title i {
  font-size: 14px;
}

.section--news .news-grid {
  position: relative;
  margin-top: 16px;
  /* padding: 0 48px; */
}

.section--news .news-grid__slider .slick-list {
  margin: 0 -9px;
}

.section--news .news-grid__slider .slick-slide {
  padding: 0 15px;
  height: auto;
}

.section--news .news-grid__slider .slick-track {
  display: flex !important;
}

.section--news .news-grid__slider .slick-slide>article {
  height: 100%;
}

.section--news .news-grid__slider .news-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.section--news .news-card__body {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.section--news .news-card__content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.section--news .news-card__more {
  margin-top: auto;
}

.section--news .news-grid__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 40px;
  height: 40px;
  padding: 0;
  border-radius: 999px;
  border: 1px solid rgba(16, 24, 40, .12);
  background: #fff;
  color: var(--blue-700);
  font-size: 14px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 16px rgba(16, 24, 40, .08);
  transition:
    color .2s ease,
    background .2s ease,
    box-shadow .2s ease,
    border-color .2s ease;
}

.section--news .news-grid__nav:hover {
  color: #fff;
  background: var(--blue-700);
  border-color: var(--blue-700);
  box-shadow: 0 8px 20px rgba(31, 111, 209, .25);
}

.section--news .news-grid__nav:focus-visible {
  outline: 2px solid var(--blue-700);
  outline-offset: 2px;
}

.section--news .news-grid__nav--prev {
  left: 0;
}

.section--news .news-grid__nav--next {
  right: 0;
}

.section--news .news-grid .slick-prev:before,
.section--news .news-grid .slick-next:before {
  display: none !important;
}

.section--news .news-grid .slick-arrow.slick-disabled {
  opacity: .35;
  cursor: not-allowed;
}

.news-card {
  background: #fff;
  border: 1px solid var(--gray-100);
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 10px 18px rgba(16, 24, 40, .06);
  position: relative;
}

.news-card__flag {
  position: absolute;
  left: 12px;
  top: 12px;
  display: flex;
  gap: 8px;
  z-index: 2;
}

.flag {
  width: 22px;
  height: 14px;
  border-radius: 3px;
  border: 1px solid rgba(0, 0, 0, .10);
  box-shadow: 0 6px 14px rgba(16, 24, 40, .14);
}

.flag--cn {
  background: linear-gradient(#d72b2b, #c11212)
}

.flag--kr {
  background: linear-gradient(#ffffff, #f2f4f7)
}

.news-card__thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--gray-100);
  overflow: hidden;
}

.news-card__thumb a {
  display: block;
  position: absolute;
  inset: 0;
}

.news-card__thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* .news-card__body {
    padding: 12px 14px 14px;
  } */

.news-card__meta {
  display: flex;
  gap: 8px;
  align-items: center;
  color: var(--gray-500);
  padding: 12px 14px 14px;
  border-bottom: 1px solid #ddd;
  justify-content: space-between;
  font-size: 16px;
  font-weight: 500;
}

.section--news .tag {
  font-weight: 500;
  color: var(--blue-700);
  font-size: 14px;
}

.dot {
  opacity: .6
}

.news-card__content {
  padding: 12px 14px 14px;
}

.news-card__title {
  margin: 10px 0 8px;
  font-size: 16px;
  font-weight: 500;
  color: #000;
  display: -webkit-box;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  min-height: 43.2px;
}

.news-card__desc {
  margin: 0 0 10px;
  font-size: 14px;
  line-height: 1.6;
  color: #575859;
  display: -webkit-box;
  line-clamp: 3;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.news-card__more {
  font-weight: 500;
  font-size: 14px;
  color: var(--blue-700);
}

/* Footer */
.footer {
  position: relative;
  color: #eaf2ff;
  overflow: hidden;
}

.footer__overlay {
  position: absolute;
  inset: 0;
  background-size: cover;
  background: #053b7cc4;
}

.footer__inner {
  position: relative;
  display: grid;
/*   grid-template-columns: 1.2fr .8fr 1fr; */
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 24px;
  padding: 170px 0 150px;
}

.footer__brand {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-direction: column;
}

.footer__brand .brand__mark.brand__mark--footer img {
  max-width: 200px;
}

.brand__mark--footer {
  border-radius: 50%;
  font-size: 14px;
}

.footer__brandName {
  font-weight: 700;
  font-size: 16px;
  letter-spacing: .02em;
  text-align: center;
}

.footer__title {
  font-weight: 700;
  letter-spacing: .12em;
  font-size: 26px;
  margin-bottom: 40px;
}

.footer__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
  color: #fff;
  font-size: 18px;
  line-height: 1.6;
}

.footer__list--services li {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.footer__list--services li svg {
  margin-right: 7px;
}

.footer__list a {
  opacity: .92
}

.footer__list a:hover {
  opacity: 1;
}

.footer__list--icons li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer__list--icons li.footer__hotline {
  flex-wrap: nowrap;
}

.footer__list--icons li.footer__hotline .footer__hotline__text,
.footer__list--icons li.footer__hotline .footer__hotline__text * {
  white-space: nowrap;
  word-wrap: normal;
  overflow-wrap: normal;
}

.footer__list--icons li.footer__hotline .footer__hotline__text p {
  display: inline;
  margin: 0;
}

.footer__list--icons i {
  padding: 10px;
  background: #f00;
  border-radius: 50%;
  min-width: 38px;
  justify-content: center;
  display: flex;
  align-items: center;
}

.footer__bottom {
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, .12);
  padding: 10px 0;
  font-size: 12px;
  color: rgba(234, 242, 255, .85);
}

.footer__bottomInner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.footer__links {
  display: flex;
  gap: 10px;
  align-items: center
}

.footer__links a {
  opacity: .9
}

.footer__links a:hover {
  opacity: 1;
  text-decoration: underline
}

.pc {
  display: flex;
  align-items: center;
}


/* Responsive */
@media (max-width: 980px) {
  .header__inner {
    grid-template-columns: 80px 1fr auto
  }

  .nav {
    gap: 10px
  }

  .experts {
    grid-template-columns: 1fr;
  }

  .experts__card {
    justify-self: start
  }

  .section--news .news-grid {
    /* padding: 0 40px; */
  }

  .section--news .news-grid__nav {
    width: 36px;
    height: 36px;
    font-size: 12px;
  }

  .footer__inner {
    grid-template-columns: 1fr;
    padding: 90px 0 70px;
  }

  .hero__content {
    padding: 56px 0 58px
  }
}

@media (min-width: 761px) {
  .mobile {
    display: none;
  }
}

@media (max-width: 760px) {
  .nav {
    display: none
  }

  .header__actions {
    display: none
  }

  .mobile-search-btn {
    display: grid;
    place-items: center;
    margin: 0;
    justify-self: end;
  }

  .burger {
    display: block;
    justify-self: end;
  }

  .hero {
    min-height: 380px
  }

  .hero__title {
    font-size: 22px
  }

  .hero__desc {
    font-size: 14px;
  }

  .hero .btn {
    font-size: 16px;
    padding: 5px 20px;
  }

  .section--partners .partners {
    /* padding: 0 40px; */
  }

  .section--partners .partners__nav {
    width: 36px;
    height: 36px;
    font-size: 12px;
  }

  .pc {
    display: none;
  }

  .topbar__item {
    display: block;
  }

  .header__inner {
    grid-template-columns: 80px 1fr auto;
    align-items: center;
    gap: 8px;
  }

  .cards {
    grid-template-columns: 1fr;
  }

  .section__eyebrow {
    font-size: 14px;
  }

  .section__title {
    margin: 0 0 30px;
    font-size: 22px;
  }

  .card__label {
    font-size: 14px;
    height: 60px;
  }

  .section--services .card__description {
    padding: 18px 16px;
    font-size: 16px;
  }

  .section--experts .section__title--light {
    margin: 0 0 20px;
  }

  .experts__desc {
    font-size: 14px;
  }

  .experts__nav {
    right: -95px;
  }

  .footer__brandName {
    font-size: 16px;
  }

  .footer__title {
    font-size: 22px;
    margin-bottom: 30px;
  }

  .footer__list a {
    font-size: 16px;
  }

  .footer__list--services li a {
    font-size: 16px;
  }

  .footer__list--services li svg {
    width: 25px;
  }

  .footer__list--icons i {
    width: 30px;
    height: 30px;
    min-width: 30px;
    font-size: 14px;
  }
}

/* —— Tuyển dụng (tuyendung.html) —— */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.recruitment-hero {
  background: #f3f5f8;
}

.recruitment-hero__top {
  position: relative;
  min-height: 220px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 28px;
}

@media (min-width: 761px) {
  .recruitment-hero__top {
    min-height: 280px;
    padding-bottom: 36px;
  }
}

.recruitment-hero__toolbar-wrap {
  position: relative;
  z-index: 2;
}

.recruitment-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px 18px;
  margin-top: 20px;
}

.recruitment-toolbar__filters {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
}

.recruitment-field {
  min-width: min(420px, 100%);
  position: relative;
}

@media (min-width: 762px) and (max-width: 1023px) {
  .recruitment-field {
    min-width: min(305px, 100%);
  }
}

/* Hiển thị nhãn trên mobile, ẩn trực quan trên desktop (vẫn dùng cho screen reader) */
.recruitment-field__label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 8px;
  line-height: 1.2;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.35);
}

@media (min-width: 761px) {
  .recruitment-field__label {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }
}

.recruitment-select {
  width: 100%;
  min-width: 180px;
  max-width: 420px;
  appearance: none;
  border: 1px solid rgba(255, 255, 255, .35);
  background: rgba(255, 255, 255, .92);
  border-radius: 10px;
  padding: 25px 40px 15px 14px;
  font-size: 16px;
  font-weight: 600;
  color: var(--gray-700);
  font-family: inherit;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(0, 0, 0, .12);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23344054' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
}

.recruitment-select:focus {
  outline: none;
  border-color: #fff;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, .35);
}

.recruitment-search-btn {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border: none;
  border-radius: 50%;
  background: var(--recruit-red);
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  box-shadow: 0 6px 18px rgba(238, 45, 36, .45);
  transition: background .2s ease, transform .15s ease, box-shadow .2s ease;
}

.recruitment-search-btn__label {
  display: none;
}

.recruitment-search-btn:hover {
  background: var(--recruit-red-dark);
}

.recruitment-search-btn:active {
  transform: scale(.96);
}

.recruitment-search-btn:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

@media (max-width: 760px) {
  .recruitment-hero__top {
    min-height: 200px;
    padding-bottom: 20px;
  }

  .recruitment-toolbar {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }

  .recruitment-toolbar__filters {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
    padding: 18px 16px 20px;
    gap: 14px;
    background: linear-gradient(155deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.08) 55%, rgba(5, 59, 124, 0.15) 100%);
    border: 1px solid rgba(255, 255, 255, 0.32);
    border-radius: 18px;
    box-shadow:
      0 10px 36px rgba(0, 18, 45, 0.38),
      inset 0 1px 0 rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }

  .recruitment-field {
    min-width: 0;
    width: 100%;
  }

  .recruitment-select {
    max-width: none;
    min-width: 0;
    min-height: 50px;
    border-radius: 12px;
    padding: 14px 44px 14px 16px;
    font-size: 15px;
    border: 1px solid rgba(255, 255, 255, 0.55);
    background: rgba(255, 255, 255, 0.97);
    box-shadow:
      0 4px 20px rgba(0, 0, 0, 0.12),
      inset 0 1px 0 rgba(255, 255, 255, 0.85);
  }

  .recruitment-select:focus {
    box-shadow:
      0 0 0 3px rgba(255, 255, 255, 0.4),
      0 4px 20px rgba(0, 0, 0, 0.1);
  }

  .recruitment-search-btn {
    width: 100%;
    height: 52px;
    border-radius: 12px;
    margin-top: 2px;
    gap: 10px;
    box-shadow: 0 8px 28px rgba(238, 45, 36, 0.48);
  }

  .recruitment-search-btn__label {
    display: inline;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.03em;
  }

  .recruitment-toolbar .btn-ung-tuyen {
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
    border-radius: 12px;
    min-height: 52px;
  }
}

.btn-ung-tuyen {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 36px;
  border-radius: 10px;
  background: var(--recruit-red);
  color: #fff !important;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: .02em;
  box-shadow: 0 8px 22px rgba(238, 45, 36, .4);
  transition: background .2s ease, transform .15s ease;
}

.btn-ung-tuyen:hover {
  background: var(--recruit-red-dark);
}

.btn-ung-tuyen:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

.recruitment-hero__body {
  padding: 28px 0 56px;
}

.recruitment-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: start;
}

@media (min-width: 1024px) {
  .recruitment-layout {
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 32px;
  }

  .recruitment-layout>.consultation-panel {
    position: sticky;
    top: 100px;
    align-self: start;
  }
}

.job-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  position: relative;
  min-height: 100px;
}

.job-cards.is-loading {
  pointer-events: none;
  opacity: 0.78;
  transition: opacity 0.2s ease;
}

.job-cards.is-loading::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 4;
  background: rgba(255, 255, 255, 0.55);
  border-radius: 12px;
}

.job-cards.is-loading::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 36px;
  height: 36px;
  margin: -18px 0 0 -18px;
  z-index: 5;
  border: 3px solid rgba(10, 83, 161, 0.2);
  border-top-color: #0a53a1;
  border-radius: 50%;
  animation: halink-recruit-spin 0.65s linear infinite;
}

@keyframes halink-recruit-spin {
  to {
    transform: rotate(360deg);
  }
}

#recruit-job-list-wrap {
  min-width: 0;
}

.recruit-pagination {
  margin-top: 24px;
  padding-top: 8px;
}

.recruit-pagination .page-numbers,
.recruit-pagination ul.page-numbers {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.recruit-pagination .page-numbers li,
.recruit-pagination ul.page-numbers li {
  margin: 0;
  padding: 0;
  list-style: none;
}

.recruit-pagination .page-numbers a,
.recruit-pagination .page-numbers span,
.recruit-pagination ul.page-numbers a,
.recruit-pagination ul.page-numbers span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  min-height: 40px;
  padding: 0 12px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  color: var(--text);
  background: #fff;
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-soft);
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.recruit-pagination .page-numbers a:hover,
.recruit-pagination ul.page-numbers a:hover {
  border-color: #0a53a1;
  color: #0a53a1;
  background: rgba(10, 83, 161, 0.06);
}

.recruit-pagination .page-numbers span.current,
.recruit-pagination ul.page-numbers span.current {
  background: linear-gradient(180deg, #0a53a1 0%, #05407c 100%);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 4px 12px rgba(10, 83, 161, 0.25);
}

.recruit-pagination .page-numbers span.dots,
.recruit-pagination ul.page-numbers span.dots {
  background: transparent;
  border: none;
  box-shadow: none;
  min-width: auto;
  color: var(--gray-700);
}

.recruit-pagination .recruit-page-link,
.recruit-pagination button.recruit-page-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  min-height: 40px;
  padding: 0 12px;
  margin: 0;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  color: var(--text);
  background: #fff;
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-soft);
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.recruit-pagination .recruit-page-link:hover {
  border-color: #0a53a1;
  color: #0a53a1;
  background: rgba(10, 83, 161, 0.06);
}

.recruit-pagination .recruit-page-link--prev,
.recruit-pagination .recruit-page-link--next {
  min-width: auto;
  padding: 0 14px;
}

/* 1 cột trên mobile + tablet; 2 cột từ desktop (tránh 2 cột chật hẹp ~640–1023px) */
@media (min-width: 1024px) {
  .job-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.job-card {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 0;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-soft);
}

.job-card__photo {
  flex: 0 0 38%;
  max-width: 200px;
  min-height: 140px;
  background: var(--gray-100);
}

.job-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.job-card__info {
  flex: 1;
  min-width: 0;
  padding: 14px 14px 12px;
  display: flex;
  flex-direction: column;
}

.job-card__title {
  margin: 0 0 8px;
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.35;
}

.job-card__label {
  font-weight: 700;
}

.job-card__info p {
  margin: 0 0 4px;
  font-size: 14px;
  color: var(--gray-700);
  line-height: 1.45;
}

.job-card__k {
  font-weight: 700;
  color: var(--gray-700);
}

.job-card__contact {
  margin-top: auto;
  padding-top: 10px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 10px 12px;
}

.job-card__phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.4;
  color: var(--recruit-red) !important;
  word-break: break-word;
}

.job-card__contact .btn-tim-hieu {
  white-space: nowrap;
}

/* —— Chi tiết tuyển dụng (chitiet-tuyen-dung.html) —— */
.jobDetailPage {
  background: #f3f5f8;
}

.jobDetailHero {
  position: relative;
  padding: 18px 0 26px;
}

@media (min-width: 761px) {
  .jobDetailHero {
    padding: 26px 0 34px;
  }
}

.jobDetailHero__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 35, 70, .58) 0%, rgba(5, 35, 70, .84) 100%),
    url("./banner_td.jpg");
  background-size: cover;
  background-position: center;
}

.jobDetailHero__inner {
  position: relative;
  z-index: 1;
  color: #fff;
}

.jobDetailBreadcrumb {
  font-size: 13px;
  margin-bottom: 14px;
  line-height: 1.5;
}

.jobDetailBreadcrumb a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.jobDetailBreadcrumb a:hover {
  opacity: .9;
}

.jobDetailBreadcrumb__sep {
  margin: 0 8px;
  opacity: .7;
}

.jobDetailBreadcrumb [aria-current="page"] {
  font-weight: 600;
}

.jobDetailHero__title {
  margin: 0 0 8px;
  font-size: clamp(22px, 3.5vw, 32px);
  font-weight: 800;
  line-height: 1.2;
  text-shadow: 0 2px 14px rgba(0, 0, 0, .22);
}

.jobDetailHero__subtitle {
  margin: 0;
  font-size: 15px;
  opacity: .93;
}

.jobDetailBody {
  padding: 0 0 52px;
  margin-top: 10px;
}

.jobDetailLayout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  align-items: start;
}

@media (min-width: 1024px) {
  .jobDetailLayout {
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 28px;
  }

  .jobDetailSidebar {
    position: sticky;
    top: 100px;
    align-self: start;
  }
}

.jobDetailArticle {
  background: #fff;
  border: 1px solid var(--gray-100);
  border-radius: 14px;
  padding: 22px 20px 26px;
  box-shadow: var(--shadow-soft);
}

.jobDetailMeta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}

.jobDetailChip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-700);
}

.jobDetailChip i {
  color: var(--recruit-navy);
  font-size: 14px;
}

.jobDetailBlock {
  margin-bottom: 22px;
}

.jobDetailBlock:last-child {
  margin-bottom: 0;
}

.jobDetailBlock h2 {
  margin: 0 0 12px;
  font-size: 18px;
  font-weight: 800;
  color: var(--recruit-navy);
}

.jobDetailBlock p {
  margin: 0 0 10px;
  font-size: 15px;
  line-height: 1.65;
  color: var(--gray-700);
}

.jobDetailBlock p:last-child {
  margin-bottom: 0;
}

.jobDetailBlock ul {
  margin: 0;
  padding-left: 22px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--gray-700);
}

.jobDetailBlock li+li {
  margin-top: 6px;
}

.jobDetailSidebar {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.jobDetailCard {
  background: #fff;
  border: 1px solid var(--gray-100);
  border-radius: 14px;
  padding: 18px;
  box-shadow: var(--shadow-soft);
}

.jobDetailCard__photo {
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 14px;
  line-height: 0;
  border: 1px solid var(--gray-100);
}

.jobDetailCard__photo img {
  width: 100%;
  height: auto;
  min-height: 160px;
  object-fit: cover;
  display: block;
}

.jobDetailCard__title {
  margin: 0 0 6px;
  font-size: 16px;
  font-weight: 800;
  color: var(--recruit-navy);
}

.jobDetailCard__hint {
  margin: 0 0 12px;
  font-size: 13px;
  line-height: 1.45;
  color: var(--gray-500);
}

.jobDetailCard__contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.jobDetailCard__phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: 10px;
  background: rgba(238, 45, 36, .08);
  color: var(--recruit-red) !important;
  font-weight: 700;
  font-size: 15px;
}

.btn-job-apply {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 12px 16px;
  border: none;
  border-radius: 10px;
  background: var(--recruit-red);
  color: #fff !important;
  font-size: 15px;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(238, 45, 36, .3);
  transition: background .2s ease;
  text-align: center;
}

.btn-job-apply:hover {
  background: var(--recruit-red-dark);
}

.btn-job-apply:focus-visible {
  outline: 2px solid var(--recruit-navy);
  outline-offset: 2px;
}

.jobDetailBack {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  font-size: 14px;
  font-weight: 600;
  color: var(--recruit-navy);
}

.jobDetailBack:hover {
  color: var(--recruit-red);
}

.jobDetailShare {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--gray-100);
  font-size: 13px;
  color: var(--gray-500);
}

.jobDetailShare__links {
  display: flex;
  gap: 8px;
}

.jobDetailShare a {
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--gray-50);
  color: var(--recruit-navy);
}

.jobDetailShare a:hover {
  background: var(--gray-200);
}

#job-apply-form {
  scroll-margin-top: 100px;
}

/* —— Chi tiết tin tức (chitiet-tin-tuc.html) —— */
.newsPost {
  background: #fff;
  border: 1px solid #e4e4e4;
  border-radius: 14px;
  padding: 22px 20px 26px;
  box-shadow: var(--shadow-soft);
}

.newsPostBreadcrumb {
  font-size: 13px;
  margin-bottom: 14px;
  line-height: 1.5;
  color: var(--gray-500);
}

.newsPostBreadcrumb a {
  color: var(--recruit-navy);
  font-weight: 600;
}

.newsPostBreadcrumb a:hover {
  color: var(--recruit-red);
}

.newsPostBreadcrumb__sep {
  margin: 0 8px;
  opacity: .6;
}

.newsPost__title {
  margin: 0 0 10px;
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 800;
  line-height: 1.25;
  color: var(--text);
}

.newsPost__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 16px;
  margin-bottom: 18px;
  font-size: 13px;
  color: var(--gray-500);
}

.newsPost__meta i {
  margin-right: 4px;
}

.newsPost__figure {
  margin: 0 0 20px;
  border-radius: 12px;
  overflow: hidden;
  line-height: 0;
  border: 1px solid var(--gray-100);
}

.newsPost__figure img {
  width: 100%;
  height: auto;
  display: block;
  max-height: 420px;
  object-fit: cover;
}

.newsPost__lead {
  margin: 0 0 18px;
  font-size: 17px;
  line-height: 1.55;
  font-weight: 600;
  color: var(--gray-700);
}

.newsPost__body {
  font-size: 15px;
  line-height: 1.7;
  color: var(--gray-700);
}

.newsPost__body p {
  margin: 0 0 14px;
}

.newsPost__body p:last-child {
  margin-bottom: 0;
}

.newsPost__body h2 {
  margin: 22px 0 10px;
  font-size: 18px;
  font-weight: 800;
  color: var(--recruit-navy);
}

.newsPost__body ul {
  margin: 0 0 14px;
  padding-left: 22px;
}

.newsPost__body li+li {
  margin-top: 6px;
}

.relatedNews {
  background: #fff;
  border: 1px solid #e4e4e4;
  border-radius: 14px;
  padding: 18px 16px 20px;
  box-shadow: var(--shadow-soft);
}

.relatedNews__title {
  margin: 0 0 14px;
  font-size: 15px;
  font-weight: 800;
  color: var(--recruit-navy);
  letter-spacing: .04em;
  text-transform: uppercase;
}

.relatedNews__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.relatedNews__list li {
  border-bottom: 1px solid var(--gray-100);
}

.relatedNews__list li:last-child {
  border-bottom: none;
}

.relatedNews__list a {
  display: block;
  padding: 10px 0;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--text);
}

.relatedNews__list a:hover {
  color: var(--recruit-red);
}

.relatedNews__date {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  font-weight: 500;
  color: var(--gray-500);
}

.newsDetailAside {
  display: flex;
  flex-direction: column;
  gap: 22px;
  min-width: 0;
}

.mDisclosure.is-active {
  background: rgba(225, 29, 46, .08);
  color: #c91c1c;
}

#service-consult-form,
#news-consult-form {
  scroll-margin-top: 100px;
}

/* —— Chi tiết dịch vụ (chitiet-dich-vu.html) —— */
.serviceDetailHead {
  position: relative;
  padding: 22px 0 30px;
  color: #fff;
}

@media (min-width: 761px) {
  .serviceDetailHead {
    padding: 28px 0 38px;
  }
}

.serviceDetailHead__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 64, 124, .78) 0%, rgba(9, 86, 168, .72) 100%),
    url("./banner_td.jpg");
  background-size: cover;
  background-position: center;
}

.serviceDetailHead__inner {
  position: relative;
  z-index: 1;
}

.serviceDetailBreadcrumb {
  font-size: 13px;
  margin-bottom: 14px;
  opacity: .95;
  line-height: 1.5;
}

.serviceDetailBreadcrumb a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.serviceDetailBreadcrumb__sep {
  margin: 0 8px;
  opacity: .75;
}

.serviceDetailHead__title {
  margin: 0 0 8px;
  font-size: clamp(22px, 3.5vw, 32px);
  font-weight: 800;
  line-height: 1.2;
  text-shadow: 0 2px 14px rgba(0, 0, 0, .2);
}

.serviceDetailHead__lead {
  margin: 0;
  font-size: 15px;
  line-height: 1.5;
  opacity: .93;
  max-width: 720px;
}

.serviceDetailMain {
  background: #fff;
  border: 1px solid #cfcfcf;
  border-radius: 14px;
  padding: 22px 20px 26px;
  box-shadow: var(--shadow-soft);
}

.serviceDetailMain__figure {
  margin: 0 0 20px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #d9d9d9;
  line-height: 0;
}

.serviceDetailMain__figure img {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.serviceDetailMain__block {
  margin-bottom: 22px;
}

.serviceDetailMain__block:last-child {
  margin-bottom: 0;
}

.serviceDetailMain__block h2 {
  margin: 0 0 12px;
  font-size: 18px;
  font-weight: 800;
  color: var(--recruit-navy);
}

.serviceDetailMain__block p {
  margin: 0 0 12px;
  font-size: 15px;
  line-height: 1.65;
  color: var(--gray-700);
}

.serviceDetailMain__block ul {
  margin: 0;
  padding-left: 22px;
  font-size: 15px;
  line-height: 1.65;
  color: var(--gray-700);
}

.serviceDetailMain__block li+li {
  margin-top: 6px;
}

.serviceDetailCta {
  margin-top: 20px;
  padding: 16px 18px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(5, 59, 124, .08) 0%, rgba(238, 45, 36, .06) 100%);
  border: 1px solid var(--gray-200);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.serviceDetailCta__text {
  margin: 0;
  font-size: 15px;
  font-weight: 600;
  color: var(--recruit-navy);
}

.serviceDetailCta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 22px;
  border-radius: 10px;
  background: var(--recruit-red);
  color: #fff !important;
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 6px 18px rgba(238, 45, 36, .3);
  transition: background .2s ease;
}

.serviceDetailCta__btn:hover {
  background: var(--recruit-red-dark);
}

/* —— Dịch vụ (service.html) —— */
.servicePage {
  background: #efefef;
}

.serviceHero {
  position: relative;
  min-height: 245px;
  display: flex;
  align-items: center;
}

.serviceHero__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 64, 124, .78) 0%, rgba(9, 86, 168, .72) 100%),
    url("./banner_td.jpg");
  background-size: cover;
  background-position: center;
}

.serviceHero .container {
  position: relative;
  z-index: 1;
}

.serviceHero__tabs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.serviceHero__tab {
  min-height: 78px;
  border-radius: 10px;
  background: rgba(232, 238, 245, .95);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 12px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  color: #2f3f57 !important;
  text-transform: capitalize;
}

.serviceHero__tab.is-active {
  color: #e31c2e !important;
}

.serviceBody {
  padding: 46px 0 58px;
}

.serviceBody__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 26px;
  align-items: start;
}

.serviceCards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.serviceCard {
  background: #fff;
  border: 1px solid #cfcfcf;
  padding: 8px;
}

.serviceCard__thumb {
  border: 1px solid #d9d9d9;
  background: #fff;
}

.serviceCard__thumb img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.serviceCard__title {
  margin: 12px 4px 10px;
  font-size: 18px;
  text-align: center;
  font-weight: 700;
  color: #313a46;
}

.serviceCard__cta {
  display: block;
  text-align: center;
  background: #0f4a91;
  color: #fff !important;
  font-size: 15px;
  font-weight: 600;
  line-height: 38px;
  min-height: 38px;
}

/* Quản lý tàu — phân trang AJAX (loading) */
.serviceCards.ship-management-ajax__cards {
  position: relative;
  min-height: 100px;
}

.serviceCards.ship-management-ajax__cards.is-loading {
  pointer-events: none;
  opacity: 0.78;
  transition: opacity 0.2s ease;
}

.serviceCards.ship-management-ajax__cards.is-loading::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 4;
  background: rgba(255, 255, 255, 0.55);
  border-radius: 4px;
}

.serviceCards.ship-management-ajax__cards.is-loading::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 45%;
  width: 36px;
  height: 36px;
  margin: -18px 0 0 -18px;
  z-index: 5;
  border: 3px solid rgba(10, 83, 161, 0.2);
  border-top-color: #0a53a1;
  border-radius: 50%;
  animation: halink-recruit-spin 0.65s linear infinite;
}

/* Phân trang danh sách dịch vụ + tin tức (the_posts_pagination) */
.serviceCards .navigation.pagination,
.newsListing__grid .navigation.pagination {
  grid-column: 1 / -1;
  margin-top: 8px;
  padding-top: 15px;
  /* border-top: 1px solid #d8d8d8; */
}

.servicePage .navigation.pagination .nav-links,
.newsPage .navigation.pagination .nav-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px 10px;
}

.servicePage .navigation.pagination .nav-links a.page-numbers,
.servicePage .navigation.pagination .nav-links span.page-numbers,
.newsPage .navigation.pagination .nav-links a.page-numbers,
.newsPage .navigation.pagination .nav-links span.page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  min-height: 42px;
  padding: 0 12px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  color: #2f3f57;
  background: #fff;
  border: 1px solid #cfcfcf;
  box-shadow: 0 2px 8px rgba(15, 74, 145, 0.06);
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
}

.servicePage .navigation.pagination .nav-links a.page-numbers:hover,
.servicePage .navigation.pagination .nav-links a.page-numbers:focus-visible,
.newsPage .navigation.pagination .nav-links a.page-numbers:hover,
.newsPage .navigation.pagination .nav-links a.page-numbers:focus-visible {
  outline: none;
  border-color: #0f4a91;
  color: #0f4a91;
  background: rgba(15, 74, 145, 0.08);
  box-shadow: 0 4px 14px rgba(15, 74, 145, 0.12);
}

.servicePage .navigation.pagination .nav-links span.page-numbers.current,
.newsPage .navigation.pagination .nav-links span.page-numbers.current {
  background: linear-gradient(180deg, #1260b8 0%, #0f4a91 100%);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 6px 18px rgba(15, 74, 145, 0.35);
  cursor: default;
}

.servicePage .navigation.pagination .nav-links span.page-numbers.dots,
.newsPage .navigation.pagination .nav-links span.page-numbers.dots {
  min-width: auto;
  padding: 0 6px;
  background: transparent;
  border: none;
  box-shadow: none;
  color: #6b7788;
  font-weight: 500;
}

.servicePage .navigation.pagination .nav-links a.prev.page-numbers,
.servicePage .navigation.pagination .nav-links a.next.page-numbers,
.newsPage .navigation.pagination .nav-links a.prev.page-numbers,
.newsPage .navigation.pagination .nav-links a.next.page-numbers {
  min-width: 44px;
  padding: 0 14px;
  gap: 6px;
}

.servicePage .navigation.pagination .nav-links a.prev.page-numbers .fa,
.servicePage .navigation.pagination .nav-links a.next.page-numbers .fa,
.newsPage .navigation.pagination .nav-links a.prev.page-numbers .fa,
.newsPage .navigation.pagination .nav-links a.next.page-numbers .fa {
  font-size: 13px;
}

.serviceCards__empty {
  grid-column: 1 / -1;
  margin: 0;
  padding: 36px 16px;
  text-align: center;
  font-size: 16px;
  color: #5a6570;
  background: #fff;
  border: 1px dashed #cfcfcf;
  border-radius: 10px;
}

.serviceFormWrap {
  min-width: 0;
}

.serviceForm {
  background:
    linear-gradient(180deg, rgba(14, 44, 92, .84) 0%, rgba(6, 32, 74, .9) 100%),
    url("./service.png");
  background-size: cover;
  background-position: center;
  padding: 18px 16px 20px;
  color: #fff;
}

.serviceForm__title {
  margin: 0 0 14px;
  text-transform: uppercase;
  font-size: 20px;
  letter-spacing: .02em;
}

.serviceForm__field {
  display: block;
  margin-bottom: 10px;
}

.serviceForm__field span {
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 5px;
}

.serviceForm__field input {
  width: 100%;
  min-height: 34px;
  border: none;
  border-radius: 999px;
  padding: 0 12px;
  font-size: 14px;
  color: #1b2a43;
  font-family: inherit;
}

.serviceForm__field input::placeholder {
  color: #de2737;
  font-size: 12px;
  font-weight: 600;
}

@media (max-width: 1200px) {
  .serviceHero__tabs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .serviceBody__layout {
    grid-template-columns: 1fr;
  }

  .serviceFormWrap {
    max-width: 420px;
  }
}

@media (max-width: 760px) {
  .serviceHero {
    min-height: 280px;
    padding: 26px 0;
  }

  .serviceHero__tabs {
    grid-template-columns: 1fr;
  }

  .serviceCards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 520px) {
  .serviceCards {
    grid-template-columns: 1fr;
  }
}

/* —— Tin tức + trang nội dung (news, giới thiệu, liên hệ) —— */
.newsPage,
.innerPage {
  background: #efefef;
}

.newsHero,
.pageHero {
  position: relative;
  min-height: 310px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.newsHero .container,
.pageHero .container {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
}

.newsHero__badge,
.pageHero__badge {
  min-width: 230px;
  min-height: 78px;
  border-radius: 10px;
  background: rgba(232, 238, 245, .95);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  color: #df202e;
  font-size: 39px;
  font-weight: 700;
  text-transform: capitalize;
}

.newsListing {
  padding: 30px 0 56px;
}

.newsListing__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 22px;
  align-items: start;
}

.newsListing__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.newsItem {
  background: #fff;
  border: 1px solid #e4e4e4;
  padding: 6px;
}

.newsItem__thumb {
  display: block;
  line-height: 0;
  margin-bottom: 8px;
}

.newsItem__thumb img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.newsItem__meta {
  font-size: 11px;
  color: #9a9a9a;
  margin-bottom: 6px;
}

.newsItem__title {
  margin: 0 0 6px;
  font-size: 17px;
  line-height: 1.3;
  font-weight: 700;
}

.newsItem__title a {
  color: #111 !important;
}

.newsItem__desc {
  margin: 0;
  font-size: 12px;
  color: #3e3e3e;
  line-height: 1.45;
}

.newsListing__form .consultation-panel__inner {
  padding: 18px 16px 20px;
}

.newsListing__form .consultation-panel__title {
  text-align: left;
  margin-bottom: 12px;
  letter-spacing: .02em;
}

.newsListing__form .consultation-form__group {
  margin-bottom: 10px;
}

.newsListing__form .consultation-form__input {
  border-radius: 999px;
  padding: 9px 12px;
  font-size: 13px;
}

.newsListing__form .consultation-form__input::placeholder {
  color: #de2737;
  font-size: 12px;
  font-weight: 600;
}

@media (max-width: 1200px) {
  .newsListing__layout {
    grid-template-columns: 1fr;
  }

  .newsListing__form {
    max-width: 420px;
  }
}

@media (max-width: 920px) {
  .newsListing__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {

  .newsHero,
  .pageHero {
    min-height: 260px;
  }

  .newsHero__badge,
  .pageHero__badge {
    min-width: 180px;
    min-height: 62px;
    font-size: 28px;
  }
}

@media (max-width: 560px) {
  .newsListing__grid {
    grid-template-columns: 1fr;
  }
}

.job-card__phone i {
  font-size: 14px;
}

.btn-tim-hieu {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 18px;
  border-radius: 8px;
  background: var(--recruit-red);
  color: #fff !important;
  font-size: 13px;
  font-weight: 700;
  transition: background .2s ease;
}

.btn-tim-hieu:hover {
  background: var(--recruit-red-dark);
}

.consultation-panel {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

@media (min-width: 1024px) {
  .consultation-panel {
    position: sticky;
    top: 100px;
  }
}

.consultation-panel__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 59, 124, .88) 0%, rgb(3 28 58 / 30%) 100%), url('../images/bgform.jpg');
  background-size: cover;
  background-position: center;
}

.consultation-panel__inner {
  position: relative;
  z-index: 1;
  padding: 22px 20px 24px;
}

.consultation-panel__title {
  margin: 0 0 18px;
  text-align: center;
  font-size: 27px;
  font-weight: 700;
  letter-spacing: .06em;
  color: #fff;
}

.consultation-form__group {
  margin-bottom: 14px;
}

.consultation-form__label {
  display: block;
  margin-bottom: 6px;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
}

.consultation-form__req {
  color: var(--recruit-red);
}

.consultation-form__input {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, .35);
  border-radius: 10px;
  padding: 11px 14px;
  font-size: 14px;
  font-family: inherit;
  color: var(--gray-700);
  background: #fff;
}

.consultation-form__input::placeholder {
  color: var(--gray-500);
}

.consultation-form__input:focus {
  outline: none;
  border-color: rgba(255, 255, 255, .85);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, .2);
}

.consultation-form__submit {
  width: 100%;
  margin-top: 6px;
  padding: 12px 16px;
  border: none;
  border-radius: 10px;
  background: var(--recruit-red);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(238, 45, 36, .35);
  transition: background .2s ease;
}

.consultation-form__submit:hover {
  background: var(--recruit-red-dark);
}

.consultation-form__submit:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

@media (max-width: 639px) {
  .job-card {
    flex-direction: column;
  }

  .job-card__photo {
    flex: none;
    max-width: none;
    width: 100%;
    min-height: 180px;
  }
}

/* —— Trang Giới thiệu —— */
.sectionTitle {
  margin: 0 0 22px;
  font-size: 26px;
  font-weight: 800;
  color: var(--recruit-navy);
  text-align: center;
  letter-spacing: .02em;
}

.aboutLead {
  padding: 40px 0 28px;
}

.aboutLead__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 36px;
  align-items: center;
}

.aboutLead__kicker {
  margin: 0 0 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--recruit-red);
}

.aboutLead__title {
  margin: 0 0 16px;
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 800;
  line-height: 1.25;
  color: var(--recruit-navy);
}

.aboutLead__desc {
  margin: 0 0 12px;
  font-size: 15px;
  line-height: 1.65;
  color: var(--gray-700);
}

.aboutLead__desc:last-of-type {
  margin-bottom: 0;
}

.aboutLead__media {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  line-height: 0;
  border: 1px solid #e4e4e4;
}

.aboutLead__media img {
  width: 100%;
  height: auto;
  min-height: 280px;
  object-fit: cover;
}

.aboutPillars {
  padding: 8px 0 36px;
}

.aboutPillars__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.pillarCard {
  background: #fff;
  border: 1px solid #e4e4e4;
  border-radius: var(--radius);
  padding: 22px 20px;
  box-shadow: var(--shadow-soft);
}

.pillarCard__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  background: linear-gradient(135deg, rgba(5, 59, 124, .12) 0%, rgba(238, 45, 36, .1) 100%);
  color: var(--recruit-navy);
  font-size: 20px;
}

.pillarCard__title {
  margin: 0 0 10px;
  font-size: 17px;
  font-weight: 800;
  color: var(--recruit-navy);
}

.pillarCard__text {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--gray-700);
}

.aboutStats {
  padding: 0 0 40px;
}

.aboutStats__bar {
  border-radius: var(--radius);
  overflow: hidden;
  background: linear-gradient(90deg, var(--recruit-navy) 0%, #0a4a96 50%, #0d5cb8 100%);
  box-shadow: var(--shadow);
}

.aboutStats__inner {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
}

.statItem {
  padding: 28px 18px;
  text-align: center;
  color: #fff;
  border-right: 1px solid rgba(255, 255, 255, .18);
}

.statItem:last-child {
  border-right: none;
}

.statItem__value {
  display: block;
  font-size: clamp(26px, 4vw, 36px);
  font-weight: 800;
  letter-spacing: .02em;
  margin-bottom: 6px;
}

.statItem__label {
  font-size: 13px;
  font-weight: 600;
  opacity: .92;
  line-height: 1.35;
}

.aboutWhy {
  padding: 0 0 52px;
}

.aboutWhy__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  max-width: 920px;
  margin-inline: auto;
}

.aboutWhy__item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: #fff;
  border: 1px solid #e4e4e4;
  border-radius: 12px;
  padding: 16px 18px;
  box-shadow: var(--shadow-soft);
}

.aboutWhy__check {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--recruit-red);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  margin-top: 2px;
}

.aboutWhy__text {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: var(--gray-700);
}

@media (max-width: 980px) {
  .aboutLead__layout {
    grid-template-columns: 1fr;
  }

  .aboutLead__media img {
    min-height: 220px;
  }

  .aboutPillars__grid {
    grid-template-columns: 1fr;
  }

  .aboutStats__inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .statItem:nth-child(2) {
    border-right: none;
  }

  .statItem:nth-child(1),
  .statItem:nth-child(2) {
    border-bottom: 1px solid rgba(255, 255, 255, .18);
  }

  .aboutWhy__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .aboutStats__inner {
    grid-template-columns: 1fr;
  }

  .statItem {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, .18);
  }

  .statItem:last-child {
    border-bottom: none;
  }
}

/* —— Trang Liên hệ —— */
.contactWrap {
  padding: 36px 0 52px;
  padding-bottom: 0;
}

.contactLayout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 28px;
  align-items: start;
}

.contactAside__kicker {
  margin: 0 0 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--recruit-red);
}

.contactAside__title {
  margin: 0 0 12px;
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 800;
  line-height: 1.25;
  color: var(--recruit-navy);
}

.contactAside__lead {
  margin: 0 0 22px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--gray-700);
}

.contactMiniGrid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contactMini {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 18px;
  background: #fff;
  border: 1px solid #e4e4e4;
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
  transition: border-color .2s ease, box-shadow .2s ease;
}

.contactMini:hover {
  border-color: rgba(5, 59, 124, .35);
  box-shadow: var(--shadow);
}

.contactMini__icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(5, 59, 124, .12), rgba(238, 45, 36, .1));
  color: var(--recruit-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.contactMini__body {
  min-width: 0;
}

.contactMini__label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--gray-500);
  margin-bottom: 4px;
}

.contactMini__value {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.4;
}

.contactMini__sub {
  display: block;
  margin-top: 4px;
  font-size: 13px;
  font-weight: 500;
  color: var(--gray-500);
  line-height: 1.45;
}

.contactPanel {
  background: #fff;
  border: 1px solid #e4e4e4;
  border-radius: var(--radius);
  padding: 26px 24px 28px;
  box-shadow: var(--shadow-soft);
}

.contactPanel__title {
  margin: 0 0 6px;
  font-size: 20px;
  font-weight: 800;
  color: var(--recruit-navy);
}

.contactPanel__hint {
  margin: 0 0 20px;
  font-size: 13px;
  color: var(--gray-500);
  line-height: 1.45;
}

.contactForm__group {
  /* margin-bottom: 14px; */
}

.contactForm__row p{
  margin-bottom: 0;
}

.contactForm__label {
  display: block;
  margin-bottom: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-700);
}

.contactForm__req {
  color: var(--recruit-red);
}

.contactForm__input,
.contactForm__textarea {
  width: 100%;
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  padding: 11px 14px;
  font-size: 14px;
  font-family: inherit;
  color: var(--text);
  background: var(--gray-50);
  transition: border-color .2s ease, box-shadow .2s ease;
}

.contactForm__textarea {
  min-height: 120px;
  resize: vertical;
}

.contactForm__input::placeholder,
.contactForm__textarea::placeholder {
  color: var(--gray-500);
}

.contactForm__input:focus,
.contactForm__textarea:focus {
  outline: none;
  border-color: var(--blue-500);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(31, 111, 209, .15);
}

.contactForm__row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.contactForm__submit {
  width: 100%;
  margin-top: 6px;
  padding: 13px 18px;
  border: none;
  border-radius: 10px;
  background: var(--recruit-red);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(238, 45, 36, .3);
  transition: background .2s ease;
}

.contactForm__submit:hover {
  background: var(--recruit-red-dark);
}

.contactForm__submit:focus-visible {
  outline: 2px solid var(--recruit-navy);
  outline-offset: 2px;
}

.contactMap {
  overflow: hidden;
  border: 1px solid #e4e4e4;
  box-shadow: var(--shadow-soft);
  line-height: 0;
  background: #ddd;
  margin: 0;
  margin-top: 28px;
  width: 100%;
}

.contactMap iframe {
  width: 100%;
  height: 450px;
  border: 0;
  display: block;
}

.recruit-pagination__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.recruit-pagination__list li {
  margin: 0;
  padding: 0;
  list-style: none;
}

.recruit-pagination__list .page-numbers.current {
  background: #053b7c;
  border-color: transparent;
  color: #fff;
  box-shadow: 0 4px 12px rgba(10, 83, 161, 0.25);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  min-height: 40px;
  padding: 0 12px;
  margin: 0;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
  border-color: #ffb900;
  color: #fff;
}

.wpcf7-not-valid-tip {
  font-size: 13px;
  margin-top: 5px;
}

.wpcf7 form .wpcf7-response-output {
  margin-top: 5px;
}

@media (max-width: 920px) {
  .contactLayout {
    grid-template-columns: 1fr;
  }

  .contactForm__row {
    grid-template-columns: 1fr;
  }

  .contactMap iframe {
    height: 300px;
  }
}


/* —— Preloader: logo + nhịp opacity —— */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

#preloader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: min(280px, 80vw);
}

/* Lớp trắng cùng nền preloader, thu theo trục dọc từ dưới lên → logo lộ từ trên xuống giống “tải” */
.preloader__reveal {
  position: relative;
  display: inline-block;
  line-height: 0;
  vertical-align: middle;
  max-width: 100%;
}

.preloader__reveal::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 1;
  background: #fff;
  transform: scaleY(1);
  transform-origin: bottom center;
  pointer-events: none;
  will-change: transform;
  animation: preloaderCoverReveal 1.15s cubic-bezier(0.33, 0.8, 0.26, 1) forwards;
}

.preloader__logo {
  position: relative;
  z-index: 0;
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100px;
  object-fit: contain;
  animation: preloaderLogoPulse 1.3s ease-in-out 1.2s infinite;
}

.preloader__fallback {
  position: relative;
  z-index: 0;
  display: block;
  padding: 0.35em 0.15em;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.2;
  color: #0b407c;
  letter-spacing: 0.02em;
  animation: preloaderLogoPulse 1.3s ease-in-out 1.2s infinite;
}

@keyframes preloaderCoverReveal {
  0% {
    transform: scaleY(1);
  }

  100% {
    transform: scaleY(0);
  }
}

@keyframes preloaderLogoPulse {
  0%,
  100% {
    opacity: 0.6;
  }

  50% {
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .preloader__reveal::after {
    display: none;
  }

  .preloader__logo,
  .preloader__fallback {
    animation: none;
    opacity: 1;
  }
}

html.no-js #preloader {
  display: none !important;
}

.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output, .wpcf7 form.payment-required .wpcf7-response-output {
  border-color: #ffb900;
  color: #000;
}