/* ===== RESET & BASE ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: 'Inter', sans-serif;
  color: #000;
  font-size: 16px;
  line-height: 26px;
  overflow-x: hidden;
  text-align: justify;
}

h1, h2, h3, h4, h5, h6 {
  text-align: left;
}

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

ul {
  list-style: none;
}

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

.container {
  width: 1470px;
  max-width: 100%;
  padding: 0 15px;
  margin: 0 auto;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  text-align: center;
  transition: opacity 0.2s, transform 0.2s;
}

.btn:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.btn-primary {
  background: #FFD140;
  color: #000;
  border-radius: 10px;
  padding: 0 40px;
  font-size: 20px;
  min-width: 280px;
  height: 64px;
  line-height: 64px;
}

.btn-lg {
  padding: 0 48px;
}

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

/* Header mặc định (transparent) */
.header-default {
  z-index: 1001;
  opacity: 1;
  transform: translateY(0);
}

.header-default.hidden {
  opacity: 0;
  transform: translateY(-20px);
  pointer-events: none;
}

/* Header scroll (white background) */
.header-scroll {
  z-index: 1000;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.1);
  opacity: 0;
  transform: translateY(-100%);
}

.header-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

.header-scroll .nav-link {
  color: #000;
}

.header-scroll .nav-link::after {
  background: #000;
}

.header-scroll .nav-link:hover {
  color: #D4A017;
}

.header-scroll .nav-link:hover::after {
  background: #D4A017;
}

.header-scroll .hamburger span {
  background: #000;
}

.header-inner {
  width: 1470px;
  max-width: 100%;
  margin: 0 auto;
  height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 15px;
}

.logo img {
  height: 62px;
  width: auto;
}

.nav {
  display: flex;
  align-items: center;
  flex-direction: row;
}

.nav-link {
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  text-transform: uppercase;
  transition: color 0.3s;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 28px;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  right: 0;
  bottom: 5px;
  width: 100%;
  height: 2px;
  background: #fff;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.3s cubic-bezier(0.79, 0.01, 0.22, 0.99);
}

.nav-link:hover::after {
  transform: scaleX(1);
  transform-origin: right center;
}

.nav-link:hover {
  color: #FFD140;
}

.nav-link:hover::after {
  background: #FFD140;
}


.nav-link svg {
  width: 13px;
  height: 6px;
}

.hotline-btn {
  display: block;
  transition: opacity 0.2s;
}

.hotline-btn:hover {
  opacity: 0.9;
}

.hotline-img {
  height: 50px;
  width: auto;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.hamburger span {
  width: 28px;
  height: 3px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

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

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

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: flex-start;
  overflow: hidden;
  width: 100%;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.2) 60%, transparent 100%);
}

.hero-content {
  width: 1470px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 15px;
  padding-top: 280px;
}

.hero-h1 {
  font-size: 48px;
  font-weight: 700;
  color: #FFD140;
  text-transform: uppercase;
  margin-bottom: 20px;
  line-height: 1.15;
}

.hero-company {
  font-size: 35px;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-desc {
  font-size: 20px;
  font-weight: 400;
  color: #fff;
  margin-bottom: 80px;
  max-width: 850px;
  line-height: 1.5;
}

.hero .btn {
  font-size: 20px;
  font-weight: 700;
  min-width: 280px;
  height: 64px;
  line-height: 64px;
  padding: 0 40px;
  border-radius: 10px;
  text-align: center;
}

.hero-slider {
  position: absolute;
  bottom: 48px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 14px;
}

.slider-dot {
  width: 80px;
  height: 3px;
  background: #d9d9d9;
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.3s;
}

.slider-dot.active {
  background: #FFD140;
}

/* ===== INTRO / GIỚI THIỆU ===== */
.intro {
  padding: 100px 0 0;
}

.intro-container {
  width: 1470px;
  max-width: 100%;
  padding: 0 15px;
  margin: 0 auto;
  position: relative;
  background-image: url('../images/vectors/vector_help.svg');
  background-repeat: no-repeat;
  background-position: 160px center;
  background-size: 200px auto;
}

.intro-top {
  display: flex;
  gap: 80px;
  margin-bottom: 60px;
}

.intro-image {
  flex: 0 0 520px;
  border-radius: 16px;
  overflow: hidden;
  max-height: 390px;
}

.intro-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.intro-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.section-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.2;
}

.intro .section-title {
  font-size: 60px;
}

.section-title-center {
  font-size: 40px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  line-height: 1.2;
}

.intro-subtitle {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 20px;
}

.intro-subtitle-bold {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 12px;
}

.intro-desc {
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  margin-bottom: 20px;
}

.checklist {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
}

.checklist li img {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 3px;
}

.checklist-lg li {
  font-size: 16px;
  font-weight: 500;
  gap: 12px;
}

.checklist-lg li img {
  width: 20px;
  height: 20px;
}


/* Stats bar */
.stats-bar {
  background: #0570D0;
  border-radius: 16px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 60px 20px;
  margin-top: 20px;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: #fff;
}

.stat-icon {
  width: 74px;
  height: 74px;
  max-height: 56px;
  margin-bottom: 24px;
  filter: brightness(0) saturate(100%) invert(83%) sepia(44%) saturate(1057%) hue-rotate(354deg) brightness(103%) contrast(101%);
}

.stat-number {
  font-size: 90px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
}

.stat-label {
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
}

/* ===== COUNTRIES ===== */
@keyframes mover {
  0% { transform: translateY(0); }
  100% { transform: translateY(-10px); }
}

.country-location {
  padding: 100px 0;
  text-align: center;
}

.country-location-head {
  margin-bottom: 80px;
}

.country-location-title {
  font-size: 60px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
}

.country-location-content {
  padding-top: 140px;
  padding-bottom: 80px;
}

.country-location-inner {
  position: relative;
}

.country-location-map img {
  max-width: 100%;
  height: auto;
  opacity: 1;
}

.country-item {
  position: absolute;
  text-align: center;
  transform: translateX(-50%);
}

.country-item a {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.country-item-img {
  width: 70px;
  margin: 0 auto;
}

.country-item-img img {
  width: 100%;
  height: auto;
}

.country-item-sub {
  font-size: 14px;
  margin-top: 4px;
}

.country-item-name {
  font-size: 20px;
  line-height: 28px;
  font-weight: 700;
  text-transform: uppercase;
}

/* Item positions - matching jnt.asia */
.country-item.item1 { top: -22%; left: 20%; }
.country-item.item2 { left: 38%; top: -16%; }
.country-item.item3 { top: -20%; left: 56%; }
.country-item.item4 { right: 14%; top: -16%; transform: translateX(50%); }
.country-item.item5 { top: 18%; left: 8%; }
.country-item.item6 { left: 28%; top: 22%; }
.country-item.item7 { left: 46%; top: 32%; }
.country-item.item8 { top: 23%; right: 25%; transform: translateX(50%); }
.country-item.item9 { right: 7%; top: 20%; transform: translateX(50%); }

/* Float animation */
.country-item:nth-child(2n) {
  animation: mover 3s infinite alternate;
}

.country-item:nth-child(2n+1) {
  animation: mover 4s infinite alternate;
}

/* ===== STEPS ===== */
.steps {
  background: #DAE9F9;
  padding: 100px 0;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 48px;
}

.step-card {
  background: #0870D1;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.step-header {
  background: #fff;
  padding: 18px;
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  border-radius: 10px 10px 0 0;
}

.step-body {
  padding: 28px 36px 36px;
  color: #fff;
  text-align: center;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.step-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  filter: brightness(0) invert(1);
}

.step-body h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 16px;
}

.step-body p {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
}

.steps-cta {
  text-align: center;
}

/* ===== PRICING ===== */
.pricing {
  padding: 100px 0;
}

.pricing .container {
  max-width: 900px;
  margin: 0 auto;
}


.pricing-subtitle {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 32px;
}

.pricing-content {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 40px;
}

.pricing-amount {
  white-space: nowrap;
}

.price {
  font-size: 96px;
  font-weight: 700;
}

.price-unit {
  font-size: 32px;
  font-weight: 700;
}

.pricing-divider {
  width: 1px;
  height: 112px;
  background: #bcbcbc;
  flex-shrink: 0;
}

.pricing-right .checklist li {
  margin-bottom: 12px;
}

/* ===== SERVICES / PHẠM VI DỊCH VỤ ===== */
.services {
  background: #F6F6F6;
  padding: 100px 0;
}

.services .container {
  max-width: 900px;
  margin: 0 auto;
}


.services .section-title {
  font-size: 64px;
  margin-bottom: 24px;
}

.services-subtitle {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 48px;
}

.services-heading {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 24px;
  margin-top: 48px;
}

.services-table {
  width: 100%;
  max-width: 920px;
  border-radius: 4px;
  overflow: hidden;
}

.table-header {
  display: flex;
  background: #e8eef4;
  padding: 16px 20px;
  font-weight: 700;
  font-size: 20px;
}

.col-service {
  flex: 1;
}

.col-status {
  width: 150px;
  text-align: center;
}

.table-row {
  display: flex;
  padding: 16px 20px;
  border-bottom: 1px solid #e5e5e5;
  align-items: center;
  font-size: 16px;
  font-weight: 400;
  background: #fff;
}

.table-row:nth-child(even) {
  background: #fafafa;
}

.table-row > span:first-child {
  flex: 1;
}

.table-row > span:last-child {
  width: 150px;
  text-align: center;
  display: flex;
  justify-content: center;
  padding-top: 2px;
}

.table-row > span:last-child img {
  width: 20px;
  height: 20px;
}

.table-row ul {
  margin-top: 8px;
  padding-left: 20px;
}

.table-row ul li {
  list-style: disc;
  font-size: 16px;
  margin-bottom: 4px;
}

/* ===== DOCUMENTS ===== */
.documents {
  padding: 100px 0;
}

.documents .container {
  max-width: 900px;
  margin: 0 auto;
}

.documents .section-title {
  font-size: 64px;
  margin-bottom: 32px;
}

.documents .checklist li {
  margin-bottom: 12px;
}

/* ===== RELATED SERVICES ===== */
.related {
  background: #F6F6F6;
  padding: 120px 0;
  text-align: center;
}

.related .section-title-center {
  font-size: 48px;
  margin-bottom: 80px;
}

.related-grid {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -10px;
}

.related-item {
  width: 33.33%;
  padding: 10px;
}

.related-item-inner {
  background: #fff;
  padding: 30px;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  transition: all 0.3s;
}

.related-item-inner::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #0570d0;
  z-index: 1;
  transform: scale(0.5);
  opacity: 0;
  transition: all 0.3s;
}

.related-item-inner:hover::before {
  opacity: 1;
  transform: scale(1);
}

.related-item-wrap {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
}

.related-item-img {
  margin-bottom: 20px;
}

.related-item-img img {
  width: 90px;
  height: 90px;
  transition: filter 0.3s;
}

.related-item-inner:hover .related-item-img img {
  filter: brightness(0) invert(1);
}

.related-item-title {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 20px;
  text-align: center;
  transition: color 0.3s;
}

.related-item-inner:hover .related-item-title {
  color: #fff;
}

.related-item-btn {
  margin-top: auto;
}

.related-item-btn a {
  display: block;
}

.related-item-inner:hover .related-item-btn svg circle {
  fill: #fff;
}

.related-item-inner:hover .related-item-btn svg path {
  stroke: #0570d0;
}

/* ===== CONTACT FORM ===== */
.contact-form {
  padding: 100px 0;
}

.contact-form .container {
  max-width: 800px;
  margin: 0 auto;
}


.contact-form .section-title {
  font-size: 64px;
  margin-bottom: 40px;
  line-height: 1.1;
}

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

.form input,
.form select,
.form textarea {
  width: 100%;
  padding: 16px 20px;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  border: 1px solid #bcbcbc;
  border-radius: 5px;
  background: #fff;
  outline: none;
  transition: border-color 0.2s;
  color: #000;
}

.form input::placeholder,
.form textarea::placeholder {
  color: #626262;
}

.form input:focus,
.form select:focus,
.form textarea:focus {
  border-color: #0570D0;
}

.select-wrapper {
  position: relative;
}

.select-wrapper::after {
  content: '';
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 8px solid #000;
  pointer-events: none;
}

.form select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
}

.form textarea {
  resize: vertical;
  min-height: 100px;
}

.form .btn {
  align-self: flex-start;
  margin-top: 8px;
}

/* ===== FAQ ===== */
.faq {
  background: #F6F6F6;
  padding: 100px 0;
}

.faq .section-title-center {
  font-size: 48px;
}

.faq-list {
  max-width: 1100px;
  margin: 0 auto;
  overflow: hidden;
  box-shadow: 0px -2px 22px -5px #aaa;
}

.faq-item {
  margin-bottom: 0;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  color: #000;
  padding: 18px 50px;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 600;
  border: none;
  border-bottom: 1px solid #eaeaea;
  outline: none;
  cursor: pointer;
  text-align: left;
  gap: 16px;
}

.faq-item.active .faq-question {
  background: #000;
  color: #fff;
}

.faq-arrow {
  width: 9px;
  height: 14px;
  flex-shrink: 0;
  transform: rotate(0deg);
  transition: transform 0.3s;
}

.faq-item.active .faq-arrow {
  transform: rotate(90deg);
  filter: brightness(0) invert(1);
}


.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  background: #fff;
  border-bottom: 1px solid #eaeaea;
}

.faq-answer p {
  padding: 0 50px;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 25px;
}

.faq-answer p:first-child {
  padding-top: 20px;
}

.faq-answer p:last-child {
  padding-bottom: 5px;
  margin-bottom: 0;
}

/* ===== FOOTER ===== */
.footer {
  background-color: #000;
  padding: 100px 0 80px;
  color: #fff;
  font-size: 14px;
}

.footer a {
  color: #fff;
  text-decoration: none;
}

.footer a:hover {
  opacity: 0.8;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  margin: 0 -15px;
}

.footer-col {
  padding: 0 15px;
}

.footer-col-1 {
  width: 500px;
  max-width: 100%;
}

.footer-col-2 {
  flex: 1;
  padding: 0 40px;
}

.footer-col-3 {
  width: 500px;
  max-width: 100%;
}

.footer-col-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.footer-logo img {
  height: 50px;
}

.footer-social {
  display: flex;
  list-style: none;
  gap: 30px;
}

.footer-social img {
  width: 24px;
  height: 24px;
}

.footer-desc {
  margin-bottom: 40px;
  line-height: 1.8;
}

.footer-partners {
  display: flex;
  justify-content: space-between;
  list-style: none;
  margin: 0 -10px 20px;
}

.footer-partners li {
  padding: 0 10px;
}

.footer-partners img {
  height: 40px;
}

.footer-copyright {
  color: #757575;
}

.footer-copyright-mobile {
  display: none;
}

.footer-menu {
  list-style: none;
}

.footer-menu li {
  margin-bottom: 40px;
}

.footer-menu li a {
  text-transform: uppercase;
  font-size: 14px;
}

.footer-address {
  list-style: none;
  margin-bottom: 30px;
}

.footer-address li {
  margin-bottom: 20px;
}

.footer-address-title {
  margin-bottom: 5px;
  line-height: 1.6;
}

.footer-address-title b {
  font-weight: 700;
}

.footer-address-access a {
  display: flex;
  align-items: center;
}

.footer-address-access img {
  margin-right: 10px;
  width: 16px;
  height: 16px;
}

.footer-contact {
  list-style: none;
}

.footer-contact li {
  margin-bottom: 5px;
  display: flex;
  align-items: center;
}

.footer-contact li a {
  display: flex;
  align-items: center;
}

.footer-contact li b {
  font-weight: 700;
}

.footer-contact img {
  margin-right: 10px;
  width: 16px;
  height: 16px;
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 768px) {
  .container,
  .intro-container {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 20px;
    box-sizing: border-box;
  }

  /* Header */
  .header-inner {
    width: 100%;
    padding: 0 20px;
  }

  .nav {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    flex-direction: column;
    padding: 24px 20px;
    gap: 20px;
  }

  .header-scroll .nav {
    background: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }

  .header-scroll .nav .nav-link {
    color: #000;
  }

  .nav.open {
    display: flex;
  }

  .hotline-btn {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  /* Hero */
  .hero {
    height: 100vh;
    align-items: center;
    justify-content: center;
  }

  .hero-content {
    padding: 0 20px;
    padding-top: 0;
    max-width: 100%;
    text-align: center;
  }

  .hero-h1 {
    font-size: 28px;
    text-align: center;
  }

  .hero-company {
    font-size: 20px;
  }

  .hero-desc {
    font-size: 16px;
    margin-bottom: 40px;
  }

  .hero .btn,
  .btn-primary {
    min-width: 200px;
    height: 50px;
    line-height: 50px;
    font-size: 16px;
  }

  .hero-company {
    font-size: 16px;
  }

  .hero-desc {
    font-size: 13px;
    max-width: 100%;
  }

  .hero .btn {
    font-size: 14px;
    padding: 0 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .hero-slider {
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
  }

  .logo img {
    height: 50px;
  }

  /* Intro */
  .intro {
    padding: 40px 0 0;
  }

  .intro-container {
    padding: 0 20px;
    background-image: none;
  }

  .intro-top {
    flex-direction: column;
    gap: 24px;
  }

  .intro-image {
    flex: none;
    width: 100%;
    max-height: 246px;
  }

  .intro-text {
    gap: 32px;
  }

  .section-title {
    font-size: 24px;
  }

  .intro .section-title {
    font-size: 32px;
  }

  .section-title-center {
    font-size: 22px;
  }

  .country-location-title {
    font-size: 32px;
  }

  .country-location-head {
    margin-bottom: 40px;
  }

  .country-location {
    padding: 60px 0;
  }

  .country-location-content {
    padding-top: 20px;
    padding-bottom: 20px;
    font-size: 10px;
    line-height: 16px;
  }

  .country-location-map {
    display: block;
    opacity: 1;
  }

  .country-location-inner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    position: relative;
  }

  .country-location-map {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 0;
  }

  .country-location-map img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .country-item {
    position: relative;
    z-index: 1;
    transform: none;
  }

  .country-item a {
    gap: 2px;
  }

  .country-item-img {
    width: 40px;
  }

  .country-item-sub {
    font-size: 0;
    margin: 0;
    line-height: 0;
  }

  .country-item-name {
    font-size: 11px;
    line-height: 14px;
  }

  /* Reset all desktop absolute positions */
  .country-item.item1,
  .country-item.item2,
  .country-item.item3,
  .country-item.item4,
  .country-item.item5,
  .country-item.item6,
  .country-item.item7,
  .country-item.item8,
  .country-item.item9 {
    top: auto; left: auto; right: auto;
    transform: none;
  }

  .stats-bar {
    flex-direction: column;
    gap: 40px;
    padding: 40px;
  }

  .stat-number {
    font-size: 48px;
  }

  .stat-icon {
    width: 40px;
    height: 40px;
  }

  .stat-label {
    font-size: 16px;
  }

  /* Steps */
  .steps {
    padding: 40px 0;
  }

  .steps-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* Pricing */
  .pricing {
    padding: 40px 0;
  }

  .pricing .section-title {
    font-size: 28px;
  }

  .pricing-subtitle {
    font-size: 16px;
  }

  .pricing-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .price {
    font-size: 48px;
  }

  .price-unit {
    font-size: 20px;
  }

  .pricing-divider {
    width: 100%;
    height: 1px;
  }

  .pricing .btn,
  .pricing .btn-lg {
    width: 100%;
    padding: 0 20px;
    text-align: center;
    box-sizing: border-box;
    font-size: 14px;
  }

  /* Services */
  .services {
    padding: 40px 0;
  }

  .services .section-title {
    font-size: 28px;
  }

  .services-subtitle {
    font-size: 16px;
    margin-bottom: 32px;
  }

  .services-heading {
    font-size: 18px;
    margin-top: 32px;
  }

  .table-header {
    font-size: 16px;
    padding: 12px 16px;
  }

  .col-status {
    width: 80px;
  }

  .services-table {
    width: 100%;
    max-width: 100%;
  }

  .table-row {
    font-size: 13px;
    padding: 12px 12px;
    word-break: break-word;
  }

  .table-row > span:last-child {
    width: 80px;
    flex-shrink: 0;
    text-align: center;
  }

  .table-row ul li {
    font-size: 13px;
  }

  /* Documents */
  .documents {
    padding: 40px 0;
  }

  .documents .section-title {
    font-size: 32px;
  }

  .checklist-lg li {
    font-size: 14px;
  }

  /* Related */
  .related {
    padding: 80px 0;
  }

  .related .section-title-center {
    font-size: 32px;
    margin-bottom: 50px;
  }

  .related-item {
    width: 100%;
  }

  .related-item-inner {
    max-width: 345px;
    margin: 0 auto;
  }

  /* Form */
  .contact-form {
    padding: 40px 0;
  }

  .contact-form .section-title {
    font-size: 28px;
  }

  .form .btn {
    align-self: center;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .form input,
  .form select,
  .form textarea {
    font-size: 14px;
    padding: 10px 16px;
  }

  .form .btn {
    width: 100%;
    font-size: 16px;
    padding: 12px;
  }

  /* FAQ */
  .faq {
    padding: 40px 0;
  }

  .faq .section-title-center {
    font-size: 32px;
  }

  .faq-question {
    font-size: 14px;
    padding: 18px 35px 18px 20px;
  }

  .faq-answer p {
    padding: 0 20px;
  }

  .faq-answer p {
    font-size: 14px;
    padding: 0 16px;
  }

  /* Footer */
  .footer {
    padding: 40px 0 30px;
  }

  .footer .container {
    padding: 0 20px !important;
  }

  .footer-inner {
    flex-direction: column;
    gap: 0;
  }

  .footer-col-1,
  .footer-col-2,
  .footer-col-3 {
    width: 100%;
    padding: 0;
  }

  .footer-col {
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .footer-col:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
  }

  .footer-col-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 16px;
  }

  .footer-desc {
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 24px;
    text-align: left;
  }

  .footer-partners {
    gap: 16px;
  }

  .footer-partners img {
    height: 30px;
  }

  .footer-menu {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .footer-menu li {
    margin-bottom: 20px;
  }

  .footer-menu li:last-child {
    margin-bottom: 0;
  }

  .footer-menu li a {
    font-size: 13px;
  }

  .footer-address li {
    margin-bottom: 16px;
  }

  .footer-address-title {
    font-size: 13px;
  }

  .footer-contact li {
    font-size: 13px;
  }

  .footer-copyright-desktop {
    display: none;
  }

  .footer-copyright-mobile {
    display: block;
    margin-top: 24px;
    font-size: 12px;
    text-align: center;
    color: #757575;
  }
}

/* ===== LAPTOP (1025px - 1366px) ===== */
@media (max-width: 1366px) {
  .container,
  .intro-container {
    width: 1270px;
    padding: 0 15px;
  }

  .header-inner {
    width: 1270px;
    padding: 0 15px;
  }

  .hero-content {
    width: 1270px;
  }

  .nav-link {
    padding: 10px 15px;
  }
}

/* ===== TABLET (769px - 1024px) ===== */
@media (min-width: 769px) and (max-width: 1024px) {
  .container,
  .intro-container {
    width: 100%;
    padding: 0 25px;
  }

  .intro-image {
    flex: 0 0 320px;
  }

  .stat-number {
    font-size: 48px;
  }

  .stat-label {
    font-size: 16px;
  }

  .services .section-title {
    font-size: 48px;
  }

  .documents .section-title {
    font-size: 48px;
  }

  .contact-form .section-title {
    font-size: 48px;
  }

  .price {
    font-size: 72px;
  }

}

/* ===== SCROLL ANIMATIONS ===== */
.wow {
  opacity: 0;
  transition: opacity 1s ease, transform 1s ease;
}

.wow.fadeInUp {
  transform: translateY(80px);
}

.wow.fadeInDown {
  transform: translateY(-80px);
}

.wow.fadeInLeft {
  transform: translateX(-80px);
}

.wow.fadeInRight {
  transform: translateX(80px);
}

.wow.fadeIn {
  transform: none;
}

/* Khi animated — về vị trí gốc */
.wow.animated {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .wow {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* ===== FLOATING CONTACT BUTTONS ===== */
.addThis_listSharing {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
}

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

.addThis_item {
  margin-bottom: 10px;
}

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

.addThis_item--icon {
  position: relative;
  display: inline-block;
  text-align: center;
  width: 50px;
  height: 50px;
  line-height: 50px;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  transition: transform 0.2s, box-shadow 0.2s;
}

.addThis_item--icon img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

.addThis_item--icon:hover {
  transform: scale(1.1);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.addThis_item--icon .tooltip-text {
  position: absolute;
  top: 50%;
  right: 60px;
  transform: translateY(-50%);
  height: auto;
  line-height: 1;
  padding: 6px 12px;
  border-radius: 5px;
  font-size: 12px;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  background-color: rgba(0, 0, 0, 0.85);
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.2s, visibility 0.2s;
  pointer-events: none;
}

.addThis_item--icon .tooltip-text::after {
  content: "";
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  border-width: 5px;
  border-style: solid;
  border-color: transparent transparent transparent rgba(0, 0, 0, 0.85);
}

.addThis_item--icon:hover .tooltip-text {
  visibility: visible;
  opacity: 1;
}
