* {
  box-sizing: border-box;
}

html {
  overflow-y: scroll;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: #333;
  line-height: 1.6;
  margin: 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Header & Nav (Reused) */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.3s;
  background: #1e3c8a;
  box-shadow: none;
}

.header .container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 90px;
  position: relative;
  padding: 0 15px;
}

.header .nav .nav-link {
  color: #fff;
  text-decoration: none;
}

.header .logo-sub {
  color: rgba(255, 255, 255, 0.9);
}

.header .header-right {
  color: #fff;
}

.header .search-icon {
  width: 52px;
  height: 30px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 216px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.4s ease;
  overflow: hidden;
  position: relative;
}

.header .search-icon img {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.4s ease;
}

.header .search-icon input {
  position: absolute;
  left: 15px;
  top: 0;
  width: 0;
  height: 100%;
  border: none;
  background: transparent;
  color: inherit;
  font-size: 12px;
  opacity: 0;
  outline: none;
  padding: 0;
  transition: all 0.4s ease;
}

.header .search-icon input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.header .search-icon:hover, .header .search-icon:focus-within {
  width: 180px;
  height: 30px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 216px;
  justify-content: flex-start;
}

.header .search-icon:hover img, .header .search-icon:focus-within img {
  left: 160px;
  transform: translate(0, -50%);
}

.header .search-icon:hover input, .header .search-icon:focus-within input {
  width: 130px;
  opacity: 1;
  padding-right: 30px;
}

/* Animation Keyframes (Copied from index.scss for compatibility) */
@keyframes fadeInUpShort {
  0% {
    opacity: 0;
    transform: translate3d(0, 80px, 0);
    filter: blur(10px);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    filter: blur(0);
  }
}

@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translate3d(-80px, 0, 0);
    filter: blur(10px);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    filter: blur(0);
  }
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translate3d(80px, 0, 0);
    filter: blur(10px);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    filter: blur(0);
  }
}

@keyframes clipUp {
  0% {
    opacity: 0;
    transform: translate3d(0, 40px, 0);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes maskReveal {
  0% {
    clip-path: inset(0 100% 0 0);
    opacity: 0;
    transform: scale(1.1);
  }
  100% {
    clip-path: inset(0 0 0 0);
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes zoomInUp {
  0% {
    opacity: 0;
    transform: scale3d(0.8, 0.8, 0.8) translate3d(0, 50px, 0);
  }
  100% {
    opacity: 1;
    transform: scale3d(1, 1, 1) translate3d(0, 0, 0);
  }
}

@keyframes rotateInUp {
  0% {
    opacity: 0;
    transform-origin: center bottom;
    transform: rotate3d(0, 0, 1, -15deg) translate3d(0, 50px, 0);
    filter: blur(5px);
  }
  100% {
    opacity: 1;
    transform-origin: center bottom;
    transform: none;
    filter: blur(0);
  }
}

/* WOW.js Custom Classes */
.wow {
  visibility: hidden;
  animation-play-state: paused;
}

.animated {
  visibility: visible;
  animation-fill-mode: both;
  animation-play-state: running;
}

.fadeInUpShort {
  animation-name: fadeInUpShort;
  animation-duration: 1s;
  animation-timing-function: cubic-bezier(0.25, 1, 0.5, 1);
}

.fadeInLeft {
  animation-name: fadeInLeft;
  animation-duration: 1s;
  animation-timing-function: cubic-bezier(0.25, 1, 0.5, 1);
}

.fadeInRight {
  animation-name: fadeInRight;
  animation-duration: 1s;
  animation-timing-function: cubic-bezier(0.25, 1, 0.5, 1);
}

.clipUp {
  animation-name: clipUp;
  animation-duration: 0.8s;
  animation-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}

.maskReveal {
  animation-name: maskReveal;
  animation-duration: 1.2s;
  animation-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
}

.zoomInUp {
  animation-name: zoomInUp;
  animation-duration: 0.8s;
  animation-timing-function: cubic-bezier(0.25, 1, 0.5, 1);
}

.rotateInUp {
  animation-name: rotateInUp;
  animation-duration: 0.8s;
  animation-timing-function: cubic-bezier(0.25, 1, 0.5, 1);
}

.logo {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-top: 10px;
}

.logo .logo-main {
  font-size: 24px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: 4px;
  padding: 6px 12px;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.logo .logo-main img {
  height: 48px;
  object-fit: contain;
  display: block;
}

.logo .logo-sub {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 1px;
  font-weight: 500;
  margin-left: 2px;
  text-transform: uppercase;
}

.nav {
  display: flex;
  gap: 40px;
  align-items: center;
  height: 100%;
}

.nav .nav-link {
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  position: relative;
  padding: 10px 0;
  opacity: 0.9;
  display: block;
}

.nav .nav-link:hover, .nav .nav-link.active {
  opacity: 1;
}

.nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: #fff;
  transition: width 0.3s;
}

.nav .nav-link:hover::after, .nav .nav-link.active::after {
  width: 30px;
}

.nav .nav-link.nav-talent {
  display: none;
}

.dropdown {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
}

.dropdown .dropdown-toggle {
  padding-right: 0;
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
}

.dropdown .dropdown-toggle::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: #fff;
  transition: width 0.3s;
}

.dropdown .dropdown-toggle:hover::before, .dropdown .dropdown-toggle.active::before {
  width: 30px;
}

.dropdown .dropdown-toggle::after {
  content: '';
  display: block;
  width: 12px !important;
  height: 12px !important;
  background: url("../images/down.png") no-repeat center center/contain;
  border: none;
  transform: none;
  transition: none !important;
  position: static;
  margin: 0 !important;
}

.dropdown:hover .mega-menu,
.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
}

.dropdown:hover .dropdown-toggle::after {
  background-image: url("../images/up.png");
  transform: none;
  margin-top: 0 !important;
  width: 12px !important;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  border-top: 3px solid #144290;
  z-index: 1001;
  transition: all 0.3s;
}

.dropdown-menu a {
  display: block;
  padding: 12px 20px;
  color: #555;
  border-bottom: 1px solid #f5f5f5;
  transition: all 0.2s;
  text-align: center;
  text-decoration: none;
}

.dropdown-menu a:last-child {
  border-bottom: none;
}

.dropdown-menu a:hover {
  background: #f0f7ff;
  color: #144290;
}

.mega-menu {
  position: absolute;
  top: 100%;
  left: -100px;
  width: 600px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  border-top: 3px solid #144290;
  z-index: 1001;
}

.mega-menu .menu-content {
  display: flex;
  padding: 20px;
}

.mega-menu .menu-links {
  flex: 1;
  display: flex;
  flex-direction: column;
  border-right: 1px solid #eee;
  padding-right: 20px;
}

.mega-menu .menu-links a {
  padding: 10px 15px;
  color: #555;
  border-radius: 4px;
  transition: all 0.2s;
  text-align: left;
  text-decoration: none;
}

.mega-menu .menu-links a:hover {
  background: #f0f7ff;
  color: #144290;
  padding-left: 20px;
}

.mega-menu .menu-featured {
  width: 200px;
  padding-left: 20px;
}

.mega-menu .menu-featured .featured-image {
  width: 100%;
  height: 150px;
  background: #eee;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}

.mega-menu .menu-featured .featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mega-menu .menu-featured .featured-image .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
}

.header-right {
  display: flex;
  align-items: center;
  gap: 20px;
  color: #fff;
}

.header-right .search-icon {
  width: 52px;
  height: 30px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 216px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  transition: all 0.4s ease;
}

.header-right .search-icon img {
  width: 16px;
  height: 16px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.4s ease;
}

.header-right .search-icon input {
  position: absolute;
  left: 15px;
  top: 0;
  width: 0;
  height: 100%;
  border: none;
  background: transparent;
  color: inherit;
  font-size: 12px;
  opacity: 0;
  outline: none;
  padding: 0;
  transition: all 0.4s ease;
}

.header-right .search-icon input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.header-right .search-icon:hover, .header-right .search-icon:focus-within {
  width: 180px;
  height: 30px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 216px;
  justify-content: flex-start;
}

.header-right .search-icon:hover img, .header-right .search-icon:focus-within img {
  left: 160px;
  /* Move icon to the right */
  transform: translate(0, -50%);
}

.header-right .search-icon:hover input, .header-right .search-icon:focus-within input {
  width: 130px;
  opacity: 1;
  padding-right: 30px;
}

.header-right a {
  display: inline-block;
  width: 104px;
  height: 30px;
  background: #fff;
  border-radius: 15px;
  text-align: center;
  line-height: 30px;
  color: #144290;
  font-size: 16px;
  text-decoration: none;
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  z-index: 1002;
  cursor: pointer;
  width: 30px;
  height: 21px;
}

.mobile-menu-btn span {
  display: block;
  width: 100%;
  height: 3px;
  background: #fff;
  border-radius: 3px;
  transition: all 0.3s;
  position: relative;
}

.mobile-menu-btn.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

.header.scrolled {
  background: #1e3c8a !important;
  box-shadow: none !important;
}

.header.scrolled .nav .nav-link {
  color: #fff !important;
}

.header.scrolled .header-right {
  color: #fff !important;
}

.header.scrolled .search-icon {
  background: rgba(255, 255, 255, 0.15) !important;
  border-color: transparent !important;
}

/* Page Specific Styles */
.section-padding {
  padding: 60px 0;
}

.section-header {
  margin-bottom: 40px;
  position: relative;
}

.section-header.centered {
  text-align: center;
}

.section-header.light-text h2 {
  color: #fff;
}

.section-header .line-deco {
  width: 40px;
  height: 3px;
  background: #144290;
  margin-bottom: 0;
  display: inline-block;
  vertical-align: middle;
  margin-right: 15px;
}

.section-header .subtitle-en {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  color: #144290;
  letter-spacing: 1px;
  margin-bottom: 0;
  text-transform: uppercase;
  vertical-align: middle;
}

.section-header h2 {
  font-size: 32px;
  font-weight: 700;
  margin: 0;
  color: #333;
  margin-top: 15px;
}

.yellow-tag {
  display: inline-block;
  background: #ffc107;
  color: #333;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 12px;
  margin-top: 6px;
  text-transform: uppercase;
}

/* Labor Hero */
.labor-hero {
  margin-top: 0;
  height: 430px;
  background: url("../images/laowu.png") center/cover no-repeat;
  display: flex;
  align-items: center;
  color: #fff;
  position: relative;
}

.labor-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

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

.labor-hero .hero-text {
  text-align: center;
}

.labor-hero .hero-text h1 {
  color: #144290;
  font-size: 68px;
  font-weight: 700;
  margin-bottom: 10px;
}

.labor-hero .hero-text .subline {
  color: #144290;
  font-size: 28px;
  letter-spacing: 2px;
  margin-bottom: 20px;
  font-weight: bold;
}

.labor-hero .hero-text p small {
  font-size: 20px;
  color: #144290;
}

/* Overview Section */
.overview-section .section-header {
  margin-bottom: 0;
}

.overview-section .overview-content {
  display: flex;
  gap: 50px;
  align-items: center;
}

.overview-section .overview-text {
  flex: 1;
  font-size: 16px;
  line-height: 1.8;
  color: #6D6D6D;
  text-align: justify;
}

.overview-section .overview-image {
  flex: 1;
}

.overview-section .overview-image img {
  width: 100%;
  border-radius: 8px;
}

/* Models Section */
.models-section {
  background: url("../images/models-bg.png") center/cover no-repeat;
  position: relative;
  color: #fff;
  height: 600px;
}

.models-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
}

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

.models-section .models-grid {
  display: flex;
  gap: 30px;
}

.models-section .model-card {
  flex: 1;
  background: #fff;
  color: #333;
  padding: 40px 30px;
  border-radius: 10px;
  text-align: left;
  transition: transform 0.3s;
}

.models-section .model-card:hover {
  transform: translateY(-10px);
}

.models-section .model-card .card-number {
  font-size: 40px;
  font-weight: 800;
  color: #e6efff;
  line-height: 1;
  margin-bottom: 15px;
}

.models-section .model-card h3 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #333;
}

.models-section .model-card p {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
  margin: 0;
}

.models-section .model-card:nth-of-type(1) .card-number {
  height: 75px;
  background: url(../images/1.png) no-repeat;
  background-size: 75px 75px;
}

.models-section .model-card:nth-of-type(2) .card-number {
  height: 75px;
  background: url(../images/2.png) no-repeat;
  background-size: 75px 75px;
}

.models-section .model-card:nth-of-type(3) .card-number {
  height: 75px;
  background: url(../images/3.png) no-repeat;
  background-size: 75px 75px;
}

/* Advantages Section */
.advantages-section {
  background: #f9f9f9;
}

.advantages-section .advantages-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.advantages-section .adv-card {
  display: flex;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s;
  height: 140px;
}

.advantages-section .adv-card:hover {
  transform: translateY(-5px);
}

.advantages-section .adv-card .adv-left {
  margin-left: 60px;
  width: 140px;
  height: 115px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.advantages-section .adv-card .adv-left .adv-number {
  font-size: 30px;
  font-weight: 800;
  color: #3D3D3D;
}

.advantages-section .adv-card .adv-right {
  flex: 1;
  padding: 23px;
}

.advantages-section .adv-card .adv-right h3 {
  font-size: 18px;
  font-weight: 700;
  color: #333;
}

.advantages-section .adv-card .adv-right p {
  font-size: 14px;
  color: #666;
  margin: 0;
  line-height: 1.6;
}

.advantages-section .adv-card:nth-of-type(1) {
  background: url(../images/labor1.png) no-repeat;
  background-size: cover;
}

.advantages-section .adv-card:nth-of-type(2) {
  background: url(../images/labor2.png) no-repeat;
  background-size: cover;
}

.advantages-section .adv-card:nth-of-type(3) {
  background: url(../images/labor3.png) no-repeat;
  background-size: cover;
}

.advantages-section .adv-card:nth-of-type(4) {
  background: url(../images/labor4.png) no-repeat;
  background-size: cover;
}

.success-cases {
  background: #f6f8fc;
}

.success-cases .success-cases-sub {
  margin-top: 10px;
  font-size: 12px;
  color: #8a8a8a;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.success-cases .cases-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.success-cases .case-card {
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid #e9ecf2;
  box-shadow: 0 20px 55px rgba(20, 66, 144, 0.08);
}

.success-cases .case-head {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 28px 28px 0 28px;
}

.success-cases .case-logo {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.success-cases .case-logo img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  display: block;
}

.success-cases .case-title {
  font-size: 22px;
  font-weight: 800;
  color: #2c2c2c;
  line-height: 1.2;
}

.success-cases .case-meta {
  margin-top: 6px;
  font-size: 12px;
  color: #9a9a9a;
}

.success-cases .case-body {
  padding: 18px 28px 22px 28px;
}

.success-cases .case-block {
  padding: 0;
  border-radius: 0;
  background: transparent;
}

.success-cases .case-block + .case-block {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid #eef0f4;
}

.success-cases .case-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 28px;
  padding: 0 12px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
}

.success-cases .case-tag img {
  width: 21px;
  height: 21px;
  display: block;
}

.success-cases .case-tag.is-challenge {
  background: #ffe9e2;
  color: #ff6b00;
}

.success-cases .case-tag.is-solution {
  background: #eaf2ff;
  color: #2f7bff;
}

.success-cases .case-desc {
  margin-top: 12px;
  font-size: 14px;
  color: #333;
  line-height: 1.7;
}

.success-cases .case-foot {
  background: #dff7e8;
  padding: 18px 22px;
}

.success-cases .case-metric {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 700;
  color: #0f7a3a;
}

.success-cases .case-metric img {
  width: 20px;
  height: 20px;
  display: block;
}

.service-process {
  background: #f6f8fc;
}

.service-process .service-process-sub {
  margin-top: 10px;
  font-size: 12px;
  color: #8a8a8a;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.service-process .process-track {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0;
  padding: 18px 0 0 0;
}

.service-process .process-item {
  flex: 1;
  min-width: 140px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  padding: 0 10px;
  cursor: pointer;
}

.service-process .process-item:not(:last-child)::after {
  display: none;
}

.service-process .process-item:not(:last-child)::before {
  content: '';
  position: absolute;
  top: 132px;
  right: -11px;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: url("../images/jiantou.png") no-repeat center;
  background-size: 22px 22px;
  z-index: 2;
  transform: translateY(-50%);
}

.service-process .process-circle {
  width: 92px;
  height: 92px;
  border-radius: 999px;
  background: #DBEAFE;
  color: #2563EB;
  font-size: 34px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.service-process .process-text {
  margin-top: 16px;
}

.service-process .process-title {
  font-size: 15px;
  font-weight: 800;
  color: #3a3a3a;
}

.service-process .process-desc {
  margin-top: 6px;
  font-size: 12px;
  color: #9a9a9a;
}

@media (max-width: 992px) {
  .success-cases .cases-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .service-process .process-track {
    justify-content: flex-start;
    flex-direction: column;
    align-items: center;
    gap: 22px;
    overflow: visible;
    padding-bottom: 0;
  }
  .service-process .process-item {
    flex: none;
    width: 100%;
    max-width: 420px;
    padding: 0;
  }
  .service-process .process-item:not(:last-child)::before, .service-process .process-item:not(:last-child)::after {
    display: none;
  }
  .service-process .process-circle {
    width: 110px;
    height: 110px;
    font-size: 36px;
  }
  .service-process .process-text {
    margin-top: 14px;
  }
}

/* Contact Section (Copied from about.scss) */
.contact-section-v2 {
  background: #fff;
  padding-bottom: 0;
}

.contact-card-v2 {
  background: #fff;
  border-radius: 50px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  top: 50px;
  margin-bottom: 100px;
  height: auto;
  min-height: 500px;
  background: #144290;
  padding-left: 0;
}

.contact-left {
  padding: 60px;
  width: 40%;
  background: #144290;
  color: #fff;
  position: relative;
}

.contact-left .line-deco {
  width: 40px;
  height: 2px;
  background: #fff;
  margin-bottom: 15px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 15px;
}

.contact-left .subtitle-en {
  display: inline-block;
  font-size: 16px;
  font-weight: 500;
  vertical-align: middle;
  margin-bottom: 15px;
  text-transform: capitalize;
  letter-spacing: 1px;
  color: #fff;
}

.contact-left h3 {
  font-size: 36px;
  margin-bottom: 10px;
  color: #fff;
  font-weight: bold;
  letter-spacing: 1px;
}

.contact-left .contact-desc {
  margin-top: 20px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 30px;
  line-height: 1.8;
}

.contact-left .contact-info-list .c-item {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
  font-size: 15px;
  color: #fff;
}

.contact-left .contact-info-list .c-item .icon-wrap {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  flex-shrink: 0;
}

.contact-left .contact-info-list .c-item .icon-wrap img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.contact-left .work-hours {
  margin-top: 40px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}

.contact-right {
  padding: 60px;
  width: 60%;
  background: #DFEAFF;
  box-shadow: 0px 8px 20px 0px rgba(0, 0, 0, 0.15);
  border-radius: 50px 0 0 50px;
  margin-left: -50px;
  /* Overlap effect */
  position: relative;
  z-index: 2;
}

.contact-right .form-header-mobile {
  display: none;
}

.contact-right .simple-form .form-row {
  display: flex;
  gap: 30px;
  margin-bottom: 25px;
}

.contact-right .simple-form .form-group {
  margin-bottom: 30px;
}

.contact-right .simple-form .form-group.half {
  flex: 1;
}

.contact-right .simple-form .form-group label {
  display: block;
  margin-bottom: 12px;
  font-size: 15px;
  color: #333;
  font-weight: bold;
}

.contact-right .simple-form .form-group input,
.contact-right .simple-form .form-group textarea {
  width: 100%;
  padding: 15px 20px;
  border: none;
  background: #fff;
  border-radius: 6px;
  font-size: 14px;
  color: #333;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
  transition: all 0.3s;
}

.contact-right .simple-form .form-group input::placeholder,
.contact-right .simple-form .form-group textarea::placeholder {
  color: #ccc;
}

.contact-right .simple-form .form-group input:focus,
.contact-right .simple-form .form-group textarea:focus {
  outline: none;
  box-shadow: 0 4px 15px rgba(26, 60, 142, 0.15);
}

.contact-right .simple-form .form-group textarea {
  resize: none;
  height: 150px;
}

.contact-right .simple-form .form-submit-row {
  text-align: right;
  margin-top: 20px;
}

.contact-right .simple-form .btn-submit {
  background: #1a3c8e;
  color: #fff;
  border: none;
  padding: 12px 60px;
  border-radius: 4px;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 5px 15px rgba(26, 60, 142, 0.2);
}

.contact-right .simple-form .btn-submit:hover {
  background: #194BA1;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(26, 60, 142, 0.3);
}

/* Footer (Reused) */
.footer {
  background-color: #1a2233;
  padding: 60px 0 40px;
  color: #fff;
  font-size: 14px;
  margin-top: 100px;
  /* Spacing for contact card overlap */
}

.footer .footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.footer .footer-top .footer-logo {
  font-size: 26px;
  font-weight: bold;
  color: #fff;
  letter-spacing: 1px;
}

.footer .footer-top .footer-nav {
  display: flex;
  gap: 40px;
}

.footer .footer-top .footer-nav a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  text-decoration: none;
  transition: color 0.3s;
}

.footer .footer-top .footer-nav a:hover {
  color: #fff;
}

.footer .footer-line {
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin-bottom: 30px;
}

.footer .footer-bottom {
  display: flex;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
}

/* Mobile Responsiveness */
@media (max-width: 992px) {
  .header {
    background: #1e3c8a;
    height: 70px;
    position: relative;
  }
  .header .container {
    height: 70px;
    position: sticky;
  }
  .header.menu-open {
    background: #1e3c8a;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
  }
  .header.menu-open .logo-sub {
    color: rgba(255, 255, 255, 0.9);
  }
  .header.menu-open .mobile-menu-btn span {
    background: #fff !important;
  }
  /* Mobile Logo Fix */
  .logo {
    margin-top: 5px;
  }
  .logo .logo-main {
    font-size: 20px;
    padding: 4px 8px;
    gap: 6px;
  }
  .logo .logo-main img {
    height: 48px;
  }
  .logo .logo-sub {
    font-size: 9px;
    margin-left: 1px;
  }
  .mobile-menu-btn {
    display: flex !important;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2000;
  }
  .mobile-menu-btn span {
    background: #fff !important;
  }
  .header-right {
    display: none !important;
  }
  .nav .nav-link.nav-talent {
    display: block;
  }
  .header .nav {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    height: calc(100vh - 70px);
    background: #fff;
    flex-direction: column;
    padding: 20px;
    gap: 0;
    z-index: 1001;
    overflow-y: auto;
    border-top: 1px solid #eee;
  }
  .header .nav.open {
    display: flex;
  }
  .header.scrolled .nav .nav-link {
    color: #333 !important;
  }
  .nav .nav-link {
    padding: 15px 0;
    border-bottom: 1px solid #f9f9f9;
    width: 100%;
    color: #333 !important;
    font-size: 15px;
    text-align: left;
    padding-left: 10px;
  }
  .nav .nav-link::before {
    display: none;
  }
  .nav .nav-link::after {
    display: none;
  }
  .dropdown {
    display: block;
    width: 100%;
    height: auto;
  }
  .dropdown .dropdown-toggle {
    justify-content: space-between;
    width: 100%;
    padding-right: 10px;
  }
  .dropdown-menu {
    position: static;
    width: 100%;
    box-shadow: none;
    border: none;
    background: #f9f9f9;
    display: none;
    opacity: 1;
    visibility: visible;
    padding: 0;
    transform: none;
  }
  .dropdown-menu a {
    display: block;
    text-align: left;
    padding: 12px 20px;
    color: #666;
    font-size: 14px;
    border-bottom: 1px solid #eee;
  }
  .dropdown-menu a:last-child {
    border-bottom: none;
  }
  .dropdown.open .dropdown-menu {
    display: block;
  }
  .mega-menu {
    position: static;
    width: 100%;
    box-shadow: none;
    border: none;
    background: #f9f9f9;
    display: none;
    opacity: 1;
    visibility: visible;
    padding: 0;
  }
  .mega-menu .menu-content {
    flex-direction: column;
    padding: 0;
  }
  .mega-menu .menu-links {
    border: none;
    padding: 0;
  }
  .mega-menu .menu-links a {
    text-align: left;
    padding: 12px 20px;
    color: #666;
    font-size: 14px;
    border-bottom: 1px solid #eee;
  }
  .mega-menu .menu-featured {
    display: none;
  }
  .dropdown.open .mega-menu {
    display: block;
  }
  .header-right .talent-btn {
    display: none;
  }
  /* Mobile Content Styles */
  .section-padding {
    padding: 40px 0;
  }
  .labor-hero {
    margin-top: 0;
    height: auto;
    padding: 60px 0;
  }
  .labor-hero .hero-text h1 {
    font-size: 28px;
  }
  .labor-hero .hero-text .subline {
    font-size: 16px;
    margin-bottom: 30px;
  }
  .overview-section .overview-content {
    flex-direction: column;
    gap: 30px;
  }
  .models-section {
    height: auto;
  }
  .models-section .models-grid {
    flex-direction: column;
  }
  .advantages-section .advantages-grid {
    grid-template-columns: 1fr;
  }
  /* Mobile Optimization for Advantages Cards */
  .advantages-section .adv-card {
    height: auto;
    min-height: auto;
    background-image: none !important;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 20px;
    align-items: stretch;
    /* Card Theme Colors */
  }
  .advantages-section .adv-card .adv-left {
    margin-left: 0;
    width: 80px;
    height: auto;
    flex-shrink: 0;
    border-radius: 0;
  }
  .advantages-section .adv-card .adv-left .adv-number {
    font-size: 28px;
    color: #333;
  }
  .advantages-section .adv-card .adv-right {
    padding: 25px 20px;
  }
  .advantages-section .adv-card .adv-right h3 {
    font-size: 18px;
    margin-bottom: 8px;
  }
  .advantages-section .adv-card .adv-right p {
    font-size: 13px;
    line-height: 1.5;
  }
  .advantages-section .adv-card:nth-of-type(1) {
    background-color: #FEF9EC;
  }
  .advantages-section .adv-card:nth-of-type(1) .adv-left {
    background-color: #F5C64F;
  }
  .advantages-section .adv-card:nth-of-type(2) {
    background-color: #F4F9EF;
  }
  .advantages-section .adv-card:nth-of-type(2) .adv-left {
    background-color: #A0C96D;
  }
  .advantages-section .adv-card:nth-of-type(3) {
    background-color: #F1F3F8;
  }
  .advantages-section .adv-card:nth-of-type(3) .adv-left {
    background-color: #95A1C1;
  }
  .advantages-section .adv-card:nth-of-type(4) {
    background-color: #F0F9F9;
  }
  .advantages-section .adv-card:nth-of-type(4) .adv-left {
    background-color: #90C8C6;
  }
  /* Contact Mobile */
  .contact-card-v2 {
    flex-direction: column;
    border-radius: 20px;
    margin: 0 0 30px;
    top: 0;
    height: auto;
    min-height: auto;
    padding-left: 0;
  }
  .contact-left {
    width: 100%;
    padding: 40px 20px;
    border-radius: 20px 20px 0 0;
    text-align: center;
  }
  .contact-left .line-deco {
    display: none;
  }
  .contact-left .subtitle-en {
    display: block;
    margin-bottom: 5px;
  }
  .contact-left h3 {
    font-size: 28px;
  }
  .contact-right {
    width: 100%;
    padding: 30px 20px;
    margin-left: 0;
    border-radius: 0 0 20px 20px;
  }
  .contact-right .form-header-mobile {
    display: block;
    text-align: center;
    margin-bottom: 20px;
  }
  .contact-right .form-header-mobile h3 {
    font-size: 24px;
    color: #333;
    font-weight: bold;
  }
  .contact-right .simple-form .form-row {
    flex-direction: column;
    gap: 15px;
    margin-bottom: 15px;
  }
  .contact-right .simple-form .form-group {
    margin-bottom: 15px;
  }
  .contact-right .simple-form .btn-submit {
    width: 100%;
    padding: 12px;
  }
  .footer {
    padding: 40px 0 20px;
    margin-top: 0;
  }
  .footer .footer-top {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  .footer .footer-top .footer-nav {
    flex-direction: column;
    gap: 15px;
  }
  .footer .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}

.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 52px;
  height: 52px;
  background: #144290;
  color: #fff;
  text-align: center;
  line-height: 52px;
  border-radius: 999px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  z-index: 999;
  box-shadow: 0 10px 22px rgba(20, 66, 144, 0.22);
  font-size: 24px;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: #1e3c8a;
}
