@charset "UTF-8";
* {
  box-sizing: border-box;
}

body {
  font-family: "Helvetica Neue", Helvetica, Arial, "PingFang SC", "Hiragino Sans GB", "Heiti SC", "Microsoft YaHei", "WenQuanYi Micro Hei", sans-serif;
  color: #333;
  margin: 0;
  padding: 0;
  background-color: #fff;
}

html.no-scroll,
body.no-scroll {
  overflow: hidden;
}

ul,
li {
  list-style: none;
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s;
}

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

.section-padding {
  padding: 80px 0;
}

/* Import Mega Menu if available, otherwise basic styles will be needed */
/* Mega Menu */
.mega-menu {
  position: absolute;
  top: 100%;
  left: -100px;
  /* Adjust centering */
  width: 600px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-top: 3px solid #2c53b3;
  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;
}

.mega-menu .menu-links a:hover {
  background: #f0f7ff;
  color: #2c53b3;
  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);
}

.mega-menu {
  transform: none;
  transition: opacity 0.3s, visibility 0.3s;
}

/* Header Styles (Consistent with headhunter.scss) */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: all .3s;
  background: #1e3c8a;
}

.header .container {
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.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;
}

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

.header .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;
}

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

.header .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;
}

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

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

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

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

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

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

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

.header .nav .dropdown .dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 5px;
}

.header .nav .dropdown .dropdown-toggle::after {
  content: '';
  width: 12px;
  height: 12px;
  background: url("../images/down.png") no-repeat center/contain;
  border: none;
}

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

.header .nav .dropdown:hover .dropdown-toggle::after {
  background-image: url("../images/up.png");
}

.header .nav .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);
  border-top: 3px solid #2c53b3;
  opacity: 0;
  visibility: hidden;
  transition: all .3s;
  z-index: 1001;
}

.header .nav .dropdown-menu a {
  display: block;
  padding: 12px 20px;
  color: #555;
  font-size: 14px;
  text-align: center;
  border-bottom: 1px solid #f5f5f5;
  white-space: nowrap;
}

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

.header .nav .dropdown-menu a:hover {
  background: #f0f7ff;
  color: #2c53b3;
}

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

.header .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;
  position: relative;
  transition: all .4s ease;
}

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

.header .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 .4s ease;
}

.header .header-right .search-icon:hover, .header .header-right .search-icon:focus-within {
  width: 180px;
  background: rgba(255, 255, 255, 0.3);
}

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

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

.header .header-right .talent-btn {
  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;
}

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

.header .mobile-menu-btn span {
  display: block;
  height: 3px;
  width: 100%;
  background: #fff;
  border-radius: 3px;
  transition: transform .25s, opacity .25s;
}

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

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

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

/* Order Hero */
.order-hero {
  height: 430px;
  background: url("../images/laowu.png") no-repeat center center/cover;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 90px;
}

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

.order-hero .container {
  position: relative;
  z-index: 2;
  text-align: center;
}

.order-hero h1 {
  font-size: 48px;
  font-weight: 800;
  color: #2c53b3;
  margin-bottom: 10px;
  letter-spacing: 2px;
}

.order-hero .subline-en {
  font-size: 22px;
  color: #2c53b3;
  letter-spacing: 4px;
  margin-bottom: 30px;
  font-weight: 600;
}

.order-hero .breadcrumb {
  display: inline-flex;
  align-items: center;
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 20px;
  color: #2c53b3;
}

.order-hero .breadcrumb a {
  color: #2c53b3;
  margin: 0 5px;
}

.order-hero .breadcrumb a:hover {
  text-decoration: underline;
}

.order-hero .breadcrumb a.active {
  pointer-events: none;
}

.order-hero .breadcrumb span {
  margin-left: 5px;
  color: #2c53b3;
}

/* Section Header Shared */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 48px;
  font-weight: 800;
  color: #000;
  margin-bottom: 10px;
}

.section-header .subtitle-badge {
  display: inline-block;
  background: #ffc107;
  color: #2c53b3;
  font-size: 22px;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 2px;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.section-header .section-desc {
  color: #7C7C7C;
  font-size: 16px;
  max-width: 600px;
  margin: 0 auto;
}

/* Order Overview */
.order-overview {
  text-align: center;
  background: #fff;
}

.order-overview .overview-header {
  max-width: 800px;
  margin: 0 auto;
}

.order-overview .overview-header h2 {
  font-size: 32px;
  font-weight: 800;
  color: #000;
  margin-bottom: 15px;
}

.order-overview .overview-header .subtitle-badge {
  display: inline-block;
  background: #ffc107;
  color: #2c53b3;
  font-size: 22px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 2px;
  margin-bottom: 25px;
  letter-spacing: 1px;
}

.order-overview .overview-header .desc {
  font-size: 16px;
  line-height: 1.8;
  color: #333;
  text-align: center;
}

/* Cooperation Modes */
.order-modes {
  height: 687px;
  background: url(../images/orderbj.png) no-repeat center center/cover;
}

.order-modes .modes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.order-modes .mode-card {
  background: #fff;
  border-radius: 12px;
  padding: 40px 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 20px;
  border: 1px solid transparent;
}

.order-modes .mode-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(44, 83, 179, 0.1);
  border-color: rgba(44, 83, 179, 0.1);
}

.order-modes .mode-card:hover .mode-icon {
  background: #2c53b3;
}

.order-modes .mode-card:hover .mode-icon img {
  filter: brightness(0) invert(1);
}

.order-modes .mode-card .mode-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s;
}

.order-modes .mode-card .mode-icon img {
  width: 60px;
  height: 60px;
  transition: all 0.3s;
}

.order-modes .mode-card .mode-info h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #333;
}

.order-modes .mode-card .mode-info p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin: 0;
}

/* Core Strengths */
.order-strengths {
  background: #fff;
}

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

.order-strengths .strength-item {
  border-radius: 12px;
  padding: 30px 30px 30px 80px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.order-strengths .strength-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.order-strengths .strength-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 40px;
  border-radius: 18px 0 0 18px;
}

.order-strengths .strength-item.item-1 {
  background: #FFF9E8;
}

.order-strengths .strength-item.item-1::before {
  background: #F9C300;
}

.order-strengths .strength-item.item-2 {
  background: #F4FBEF;
}

.order-strengths .strength-item.item-2::before {
  background: #8ED05B;
}

.order-strengths .strength-item.item-3 {
  background: #F1F5FB;
}

.order-strengths .strength-item.item-3::before {
  background: #9AA8C3;
}

.order-strengths .strength-item.item-4 {
  background: #EAFBFC;
}

.order-strengths .strength-item.item-4::before {
  background: #8DDDE2;
}

.order-strengths .strength-item .s-num {
  font-size: 44px;
  font-weight: 700;
  color: #333;
  line-height: 1;
  flex-shrink: 0;
  padding-right: 26px;
  margin-right: 26px;
  border-right: 1px solid rgba(0, 0, 0, 0.1);
  font-family: 'Arial', sans-serif;
}

.order-strengths .strength-item .s-content {
  flex: 1;
}

.order-strengths .strength-item .s-content h3 {
  font-size: 20px;
  font-weight: 900;
  margin-bottom: 10px;
  color: #333;
}

.order-strengths .strength-item .s-content p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin: 0;
  text-align: justify;
}

/* Process Timeline */
.order-process {
  background: #fff;
}

.order-process .process-timeline {
  position: relative;
  max-width: 1100px;
  margin: 60px auto 0;
  padding: 0;
}

.order-process .process-timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 4px;
  height: 100%;
  background: rgba(44, 83, 179, 0.15);
  border-radius: 4px;
}

.order-process .timeline-item {
  width: 50%;
  display: flex;
  justify-content: flex-end;
  padding-right: 70px;
  position: relative;
  margin-bottom: 40px;
}

.order-process .timeline-item.right {
  margin-left: 50%;
  padding-left: 70px;
  padding-right: 0;
  justify-content: flex-start;
}

.order-process .timeline-item.right .t-num {
  margin-right: 26px;
  margin-left: 0;
}

.order-process .timeline-item.right .t-dot {
  left: -8px;
  right: auto;
}

.order-process .timeline-item .t-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #2c53b3;
  position: absolute;
  right: -8px;
  top: 50%;
  transform: translateY(-50%);
}

.order-process .timeline-item .t-dot::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
}

.order-process .timeline-item .t-content {
  width: 100%;
  background: #F6FAFF;
  border-radius: 18px;
  padding: 24px 28px;
  box-shadow: 0 10px 30px rgba(44, 83, 179, 0.06);
  transition: transform .25s, box-shadow .25s;
  display: flex;
  align-items: center;
}

.order-process .timeline-item .t-num {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  color: #2c53b3;
  font-size: 30px;
  line-height: 1;
  margin-left: 26px;
  flex-shrink: 0;
}

.order-process .timeline-item .t-text {
  text-align: left;
  flex: 1;
}

.order-process .timeline-item h4 {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 900;
  color: #333;
}

.order-process .timeline-item p {
  margin: 0;
  color: #232323;
  font-size: 14px;
  line-height: 1.6;
}

.order-process .timeline-item:hover .t-content {
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(44, 83, 179, 0.12);
}

/* Why Choose Section */
.order-why {
  background: #2c53b3;
  color: #fff;
  padding: 80px 0;
}

.order-why .why-grid {
  display: flex;
  align-items: center;
  gap: 60px;
}

.order-why .why-left {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.order-why .why-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 10px;
  padding: 25px 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s;
}

.order-why .why-card:hover {
  background: rgba(255, 255, 255, 0.2);
}

.order-why .why-card .w-icon {
  width: 50px;
  height: 50px;
  margin-bottom: 15px;
  /* Add specific icons if available or use generic styling */
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2c53b3;
  font-weight: bold;
  background-size: cover;
}

.order-why .why-card .w-icon.w-icon-1 {
  background: url("../images/jinzhun.png") no-repeat;
  background-size: cover;
}

.order-why .why-card .w-icon.w-icon-2 {
  background: url("../images/yuangongwen.png") no-repeat;
  background-size: cover;
}

.order-why .why-card .w-icon.w-icon-3 {
  background: url("../images/zhaopingcheng.png") no-repeat;
  background-size: cover;
}

.order-why .why-card .w-icon.w-icon-4 {
  background: url("../images/jiejue.png") no-repeat;
  background-size: cover;
}

.order-why .why-card h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #333;
}

.order-why .why-card p {
  font-size: 13px;
  opacity: 0.8;
  line-height: 1.5;
  margin: 0;
  color: #555555;
}

.order-why .why-right {
  flex: 0 0 600px;
}

.order-why .why-right h3 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 20px;
}

.order-why .why-right p {
  font-size: 16px;
  line-height: 1.8;
  opacity: 0.9;
  margin-bottom: 30px;
}

.order-why .why-right .btn-primary {
  display: inline-flex;
  align-items: center;
  background: #fff;
  color: #2c53b3;
  padding: 12px 30px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 15px;
}

.order-why .why-right .btn-primary:hover {
  background: #ffc107;
  color: #000;
}

/* Success Cases */
.order-cases {
  background: #F3F7FF;
}

.order-cases .case-card-lg {
  background: #fff;
  overflow: hidden;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
  display: grid;
  grid-template-columns: 300px 1fr;
  column-gap: 0;
  margin: 0 auto;
  width: 100%;
  max-width: 1040px;
  min-height: 500px;
  height: auto;
  border-radius: 14px;
  padding: 44px 52px 38px;
  box-sizing: border-box;
}

.order-cases .case-left {
  width: auto;
  padding: 0 40px 0 0;
  color: #1D2A44;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  border-right: 1px solid rgba(20, 66, 144, 0.12);
  box-sizing: border-box;
  min-width: 0;
}

.order-cases .case-left::after {
  display: none;
}

.order-cases .case-left .company-tag {
  display: inline-block;
  color: #2c53b3;
  padding: 2px 10px 2px 0;
  font-size: 12px;
  margin-bottom: 24px;
  width: fit-content;
  font-weight: 700;
  position: relative;
  padding-left: 44px;
}

.order-cases .case-left .company-tag::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 2px;
  background: #2c53b3;
  border-radius: 2px;
}

.order-cases .case-left h3 {
  font-size: 26px;
  font-weight: 900;
  margin-bottom: 12px;
  color: #2c53b3;
}

.order-cases .case-left .company-desc {
  font-size: 14px;
  color: #5D6B84;
  margin-bottom: 18px;
}

.order-cases .case-left .company-loc {
  font-size: 13px;
  color: #5D6B84;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 28px;
}

.order-cases .case-left .company-loc .icon-global {
  display: inline-block;
  width: 20px;
  height: 20px;
  background: url(../images/kuaguo.png) no-repeat;
  background-size: cover;
}

.order-cases .case-left .case-highlight {
  background: #5D7ED9;
  border-radius: 12px;
  padding: 22px 20px;
  box-shadow: 0 12px 28px rgba(20, 66, 144, 0.12);
  margin-top: 34px;
  margin-bottom: 0;
  max-width: 260px;
  width: 100%;
  align-self: center;
}

.order-cases .case-left .case-highlight h4 {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 8px;
  font-weight: 900;
}

.order-cases .case-left .case-highlight p {
  font-size: 13px;
  line-height: 1.55;
  margin: 0;
  color: rgba(255, 255, 255, 0.95);
}

.order-cases .case-right {
  width: auto;
  padding: 0 0 0 40px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  box-sizing: border-box;
  min-width: 0;
}

.order-cases .case-right .case-detail-item {
  margin-bottom: 25px;
}

.order-cases .case-right .case-detail-item h4 {
  font-size: 16px;
  font-weight: 900;
  color: #1D2A44;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.order-cases .case-right .case-detail-item h4 .dot {
  width: 20px;
  height: 20px;
  border-radius: 3px;
  margin-right: 10px;
  flex-shrink: 0;
}

.order-cases .case-right .case-detail-item p {
  font-size: 14px;
  color: #334155;
  line-height: 1.7;
  margin-bottom: 6px;
}

.order-cases .case-right .case-detail-item strong {
  color: #1D2A44;
  font-weight: 900;
}

.order-cases .case-right .case-detail-item:nth-child(1) h4 .dot {
  background: url(../images/tiaozhan1.png) no-repeat;
  background-size: cover;
}

.order-cases .case-right .case-detail-item:nth-child(2) h4 {
  color: #2c53b3;
}

.order-cases .case-right .case-detail-item:nth-child(2) h4 .dot {
  background: url(../images/jiejuefangan.png) no-repeat;
  background-size: cover;
}

.order-cases .case-right .case-detail-item:nth-child(2) p {
  position: relative;
  padding-left: 16px;
  margin-bottom: 10px;
}

.order-cases .case-right .case-detail-item:nth-child(2) p::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: rgba(29, 42, 68, 0.65);
}

.order-cases .case-right .case-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(20, 66, 144, 0.12);
  padding-top: 16px;
  padding-right: 90px;
  margin-top: 26px;
  gap: 0;
}

.order-cases .case-right .case-stats .stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.order-cases .case-right .case-stats .stat-item:not(:first-child) {
  border-left: 1px solid rgba(20, 66, 144, 0.12);
}

.order-cases .case-right .case-stats .stat-item .val {
  font-size: 15px;
  font-weight: 900;
  color: #2BB673;
  margin-bottom: 6px;
}

.order-cases .case-right .case-stats .stat-item .label {
  font-size: 12px;
  color: #6B7280;
}

@media (min-width: 993px) {
  .order-cases .case-card-lg {
    background: url(../images/case.png) no-repeat;
    background-size: cover;
  }
}

/* Contact Section (Copied from headhunter.scss for consistency) */
.contact-section-v2 {
  background: #F3F7FF;
  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: 630px;
  background: #144290;
  padding-left: 80px;
}

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

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

.contact-left .contact-header {
  margin-bottom: 30px;
}

.contact-left .contact-header .subtitle-badge {
  background: #ffc107;
  color: #000;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: 4px;
  display: inline-block;
  font-size: 12px;
  margin-bottom: 10px;
}

.contact-left .contact-header h2 {
  font-size: 36px;
  font-weight: 900;
  margin-bottom: 15px;
  color: #fff;
}

.contact-left .contact-header p {
  font-size: 15px;
  opacity: 0.8;
  line-height: 1.6;
}

.contact-left .contact-info-list .c-item {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
  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 img {
  width: 36px;
  height: 36px;
  border: none;
}

.contact-left .work-hours {
  background: rgba(255, 255, 255, 0.1);
  padding: 10px 20px;
  border-radius: 30px;
  font-size: 13px;
  display: inline-block;
  margin-top: 20px;
}

.contact-right {
  width: 60%;
  background: #E8F0FE;
  padding: 60px 80px;
  display: flex;
  align-items: center;
  border-top-left-radius: 50px;
  border-bottom-left-radius: 50px;
}

.contact-right .simple-form {
  width: 100%;
}

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

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

.contact-right .simple-form .form-group.half {
  width: 50%;
}

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

.contact-right .simple-form .form-group input,
.contact-right .simple-form .form-group textarea {
  width: 100%;
  background: #fff;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 15px 20px;
  font-size: 14px;
  transition: all 0.3s;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
}

.contact-right .simple-form .form-group input:focus,
.contact-right .simple-form .form-group textarea:focus {
  outline: none;
  border-color: #2c53b3;
  box-shadow: 0 5px 20px rgba(44, 83, 179, 0.1);
}

.contact-right .simple-form .btn-submit {
  background: #2c53b3;
  color: #fff;
  border: none;
  padding: 15px 50px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 10px 20px rgba(44, 83, 179, 0.2);
}

.contact-right .simple-form .btn-submit:hover {
  background: #274a9f;
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(44, 83, 179, 0.3);
}

/* Footer */
.footer {
  background: #111;
  color: #fff;
  padding: 60px 0 30px;
}

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

.footer .footer-top .footer-logo {
  font-size: 24px;
  font-weight: 800;
}

.footer .footer-top .footer-nav a {
  color: rgba(255, 255, 255, 0.6);
  margin-left: 30px;
  font-size: 14px;
}

.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;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
}

.footer .footer-bottom a {
  color: rgba(255, 255, 255, 0.4);
}

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

.back-to-top {
  position: fixed;
  bottom: 50px;
  right: 50px;
  width: 50px;
  height: 50px;
  background: #2c53b3;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  z-index: 99;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

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

.back-to-top:hover {
  background: #22408a;
  transform: translateY(-3px);
}

/* Animations */
.wow {
  visibility: hidden;
  animation-play-state: paused;
}

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

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translate3d(0, 80px, 0);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 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 fadeInUpShort {
  0% {
    opacity: 0;
    transform: translate3d(0, 40px, 0);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@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 clipUp {
  from {
    clip-path: inset(100% 0 0 0);
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    clip-path: inset(0 0 0 0);
    opacity: 1;
    transform: translateY(0);
  }
}

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

.fadeInUp {
  animation-name: fadeInUp;
  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);
}

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

.clipUp {
  animation-name: clipUp;
  animation-duration: 1.2s;
  animation-timing-function: cubic-bezier(0.65, 0, 0.35, 1);
}

/* Mobile Responsiveness */
@media (max-width: 992px) {
  .order-hero {
    margin-top: 0;
    height: calc(430px + 70px);
  }
  .header {
    background: #1e3c8a;
    height: 70px;
    position: relative;
  }
  .header .container {
    height: 70px;
  }
  .header.menu-open {
    background: #1e3c8a;
  }
  .header .logo {
    margin-top: 0;
  }
  .header .logo .logo-main {
    font-size: 20px;
    padding: 4px 10px;
  }
  .header .logo .logo-main img {
    height: 32px;
  }
  .header .logo .logo-sub {
    font-size: 9px;
  }
  .header .header-right {
    display: none;
  }
  .header .mobile-menu-btn {
    display: flex !important;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2000;
    width: 30px;
    height: 21px;
    background: transparent;
    padding: 0;
  }
  .header .mobile-menu-btn span {
    background: #fff !important;
  }
  .header .nav {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    height: calc(100vh - 70px);
    background: #fff;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    padding: 20px;
    gap: 0;
    z-index: 1001;
    overflow-y: auto;
    border-top: 1px solid #eee;
  }
  .header .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;
  }
  .header .nav .nav-link:hover, .header .nav .nav-link.active {
    color: #2c53b3 !important;
  }
  .header .nav .nav-link::before {
    display: none;
  }
  .header .nav.open {
    display: flex;
  }
  .header.scrolled .nav .nav-link {
    color: #333 !important;
  }
  .nav .nav-link.nav-talent {
    display: block;
  }
  .header .nav .dropdown {
    display: block;
    width: 100%;
    height: auto;
    align-items: stretch;
  }
  .header .nav .dropdown .dropdown-toggle {
    justify-content: space-between;
    width: 100%;
    padding-right: 10px;
  }
  .header .nav .dropdown .dropdown-toggle::after {
    filter: invert(1);
  }
  .header .nav .dropdown-menu {
    position: static;
    width: 100%;
    box-shadow: none;
    border: none;
    border-top: none;
    background: #f9f9f9;
    display: none;
    opacity: 1;
    visibility: visible;
    padding: 0;
    transform: none;
  }
  .header .nav .dropdown-menu a {
    display: block;
    text-align: left;
    padding: 12px 20px 12px 30px;
    color: #666;
    font-size: 14px;
    border-bottom: 1px solid #eee;
  }
  .header .nav .dropdown-menu a:last-child {
    border-bottom: none;
  }
  .header .nav .mega-menu {
    position: static;
    left: 0;
    width: 100%;
    box-shadow: none;
    border: none;
    border-top: none;
    background: #f9f9f9;
    display: none;
    opacity: 1;
    visibility: visible;
    padding: 0;
    transform: none;
  }
  .header .nav .mega-menu .menu-content {
    flex-direction: column;
    padding: 0;
  }
  .header .nav .mega-menu .menu-links {
    border: none;
    padding: 0;
  }
  .header .nav .mega-menu .menu-links a {
    text-align: left;
    padding: 12px 20px 12px 30px;
    color: #666;
    font-size: 14px;
    border-bottom: 1px solid #eee;
  }
  .header .nav .mega-menu .menu-featured {
    display: none;
  }
  .header .nav .dropdown.open .dropdown-menu,
  .header .nav .dropdown.open .mega-menu {
    display: block;
  }
  .order-modes {
    height: auto;
    padding-bottom: 60px;
  }
  .order-modes .modes-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .order-why .why-grid {
    flex-direction: column;
  }
  .order-why .why-right {
    flex: auto;
    text-align: center;
  }
  .order-cases .case-card-lg {
    display: block;
    padding: 44px 28px 40px;
  }
  .order-cases .case-left,
  .order-cases .case-right {
    width: 100%;
  }
  .order-cases .case-left {
    border-right: none;
    border-bottom: 1px solid rgba(20, 66, 144, 0.12);
    padding: 0 0 28px;
  }
  .order-cases .case-right {
    padding: 28px 0 0;
  }
  .order-cases .case-right .case-stats {
    padding-right: 0;
  }
  .order-cases .case-left .case-highlight {
    margin-top: 26px;
    margin-bottom: 0;
    align-self: flex-start;
    max-width: none;
  }
  .order-cases .case-left::after {
    display: none;
  }
  .footer {
    padding: 40px 0 20px;
  }
  .footer .footer-top {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  .footer .footer-nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }
  .footer .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
  .contact-card-v2 {
    flex-direction: column;
    height: auto;
    border-radius: 20px;
    padding-left: 0;
    margin-bottom: 50px;
  }
  .contact-left,
  .contact-right {
    width: 100%;
    padding: 40px 30px;
  }
  .contact-right {
    border-radius: 0 0 20px 20px;
  }
}

@media (max-width: 768px) {
  .section-padding {
    padding: 50px 0;
  }
  .order-hero {
    height: 350px;
    margin-top: 0;
    height: calc(350px + 70px);
  }
  .order-hero h1 {
    font-size: 32px;
  }
  .order-modes .modes-grid {
    grid-template-columns: 1fr;
  }
  .order-strengths .strengths-grid {
    grid-template-columns: 1fr;
  }
  .order-strengths .strength-item {
    padding: 22px 22px 22px 40px;
  }
  .order-strengths .strength-item::before {
    width: 16px;
    border-radius: 12px 0 0 12px;
  }
  .order-strengths .strength-item .s-num {
    font-size: 34px;
    padding-right: 18px;
    margin-right: 18px;
  }
  .order-strengths .strength-item .s-content h3 {
    font-size: 18px;
  }
  .order-cases .case-card-lg {
    padding: 34px 18px 30px;
  }
  .order-cases .case-left {
    padding: 0 0 20px;
  }
  .order-cases .case-right {
    padding: 20px 0 0;
  }
  .order-cases .case-right .case-detail-item {
    margin-bottom: 18px;
  }
  .order-cases .case-right .case-stats {
    padding-right: 0;
    grid-template-columns: 1fr;
  }
  .order-cases .case-right .case-stats .stat-item:not(:first-child) {
    border-left: none;
    border-top: 1px solid rgba(20, 66, 144, 0.12);
    margin-top: 14px;
    padding-top: 14px;
  }
  .order-process .process-timeline {
    margin: 30px auto 0;
    padding: 0;
  }
  .order-process .process-timeline::before {
    left: 12px;
    transform: none;
  }
  .order-process .timeline-item {
    width: 100%;
    margin-left: 0 !important;
    padding-left: 44px !important;
    padding-right: 0 !important;
    text-align: left !important;
    justify-content: flex-start;
    margin-bottom: 20px;
  }
  .order-process .timeline-item .t-dot {
    left: 5px !important;
    right: auto !important;
  }
  .order-process .timeline-item .t-content {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 16px;
    flex-direction: row-reverse !important;
  }
  .order-process .timeline-item.right .t-content {
    flex-direction: row !important;
  }
  .order-process .timeline-item .t-num {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: #EAF1FF;
    border: 1px solid rgba(44, 83, 179, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    margin: 0 !important;
  }
  .order-process .timeline-item .t-text {
    text-align: left !important;
    flex: 1;
  }
  .order-process .timeline-item h4 {
    font-size: 16px;
    text-align: left !important;
  }
  .order-process .timeline-item p {
    font-size: 13px;
  }
  .order-why .why-left {
    grid-template-columns: 1fr;
  }
  .footer {
    padding: 60px 0 40px;
    background-color: #1a2233;
  }
  .footer-top {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  .footer-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
  .footer-nav a {
    margin: 0;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
  .back-to-top {
    right: 18px;
    bottom: 84px;
    width: 44px;
    height: 44px;
    font-size: 22px;
  }
  /* Animation Adjustments for Mobile */
  @keyframes fadeInLeft {
    from {
      opacity: 0;
      transform: translate3d(-20px, 0, 0);
    }
    to {
      opacity: 1;
      transform: translate3d(0, 0, 0);
    }
  }
  @keyframes fadeInRight {
    from {
      opacity: 0;
      transform: translate3d(20px, 0, 0);
    }
    to {
      opacity: 1;
      transform: translate3d(0, 0, 0);
    }
  }
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translate3d(0, 20px, 0);
    }
    to {
      opacity: 1;
      transform: translate3d(0, 0, 0);
    }
  }
  @keyframes fadeInUpShort {
    from {
      opacity: 0;
      transform: translate3d(0, 16px, 0);
    }
    to {
      opacity: 1;
      transform: translate3d(0, 0, 0);
    }
  }
  @keyframes zoomInUp {
    from {
      opacity: 0;
      transform: scale3d(0.96, 0.96, 0.96) translate3d(0, 18px, 0);
    }
    to {
      opacity: 1;
      transform: scale3d(1, 1, 1) translate3d(0, 0, 0);
    }
  }
}
