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

html {
  overflow-y: scroll;
}

body {
  font-family: "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
}

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

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

.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;
  /* Move icon to the right */
  transform: translate(0, -50%);
}

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

.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::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 #2c53b3;
  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;
}

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

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

.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;
  /* Removed transform/transition for direct show */
  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);
}

.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;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.4s ease;
  overflow: hidden;
  position: relative;
}

.header-right .search-icon img {
  width: 16px;
  height: 16px;
}

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

.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: #2c53b3;
  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;
}

@media (max-width: 992px) {
  .header {
    background: #1e3c8a;
    height: 70px;
  }
  .header .container {
    height: 70px;
  }
  .header.menu-open {
    background: #1e3c8a;
  }
  .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;
  }
  /* Hide header-right (search icon, talent btn) on mobile */
  .header-right {
    display: none;
  }
  .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;
  }
  /* Fix blank menu on scroll: Override .header.scrolled color */
  .header.scrolled .nav .nav-link {
    color: #333 !important;
  }
  .nav .nav-link {
    padding: 15px 0;
    border-bottom: 1px solid #f9f9f9;
    width: 100%;
    color: #333 !important;
    /* Force dark color on white mobile menu */
    font-size: 15px;
    text-align: left;
    padding-left: 10px;
  }
  .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;
  }
}

.about-hero {
  margin-top: 90px;
  height: 430px;
  background: url("../images/abanner.png") center/cover no-repeat;
  display: flex;
  align-items: center;
  color: #fff;
}

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

.about-hero .hero-text h1 {
  font-size: 62px;
  font-weight: 700;
  color: #144290;
  letter-spacing: 1px;
  line-height: 1;
}

.about-hero .hero-text .subline {
  font-size: 28px;
  color: #144290;
  font-weight: 700;
}

.about-hero .hero-text p {
  font-size: 20px;
  color: #144290;
  margin-top: 30px;
}

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

.section-header {
  margin-bottom: 40px;
  text-align: left;
}

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

.section-header .subtitle-en {
  font-size: 16px;
  color: #2c53b3;
  margin-bottom: 5px;
}

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

.yellow-tag {
  display: inline-block;
  background: #ffc107;
  color: #fff;
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 12px;
  margin-top: 6px;
}

.section-header-left .blue-tag {
  display: inline-block;
  font-size: 22px;
  padding: 4px 10px;
  border-radius: 4px;
  color: #144290;
  margin-bottom: 8px;
  font-weight: 700;
  position: relative;
  padding-left: 40px;
}

.section-header-left .blue-tag:before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 30px;
  height: 2px;
  background: #2c53b3;
}

.section-header-left h2 {
  font-size: 26px;
  font-weight: 700;
}

.company-section .company-profile {
  padding: 0 100px;
}

.company-section .company-profile .profile-flex {
  display: flex;
  gap: 40px;
  align-items: center;
}

.company-section .company-profile .profile-text {
  flex: 1;
  font-size: 14px;
  line-height: 1.9;
  color: #6D6D6D;
}

.company-section .company-profile .profile-image {
  width: 40%;
}

.company-section .company-profile .profile-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.company-section .company-stats {
  margin-top: 30px;
  padding: 24px 0;
  background: #F8FAFC;
}

.company-section .company-stats .stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.company-section .company-stats .stat {
  text-align: center;
}

.company-section .company-stats .stat .value {
  font-size: 42px;
  font-weight: 800;
  color: #2c53b3;
  line-height: 1.2;
}

.company-section .company-stats .stat .value small {
  font-size: 20px;
  color: #2c53b3;
  margin-left: 4px;
}

.company-section .company-stats .stat .label {
  margin-top: 6px;
  font-size: 14px;
  color: #666;
}

.culture-section .culture-inner {
  display: flex;
  gap: 60px;
  align-items: stretch;
}

.culture-section .culture-image {
  flex: 0 0 48%;
}

.culture-section .culture-image img {
  width: 100%;
  height: 100%;
  border-radius: 16px;
  object-fit: cover;
}

.culture-section .culture-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 420px;
  gap: 10px;
}

.culture-section .culture-heading .culture-tag {
  display: inline-block;
  font-size: 22px;
  color: #2c53b3;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding-left: 40px;
  position: relative;
  margin-bottom: 6px;
  font-weight: 700;
}

.culture-section .culture-heading .culture-tag::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 30px;
  height: 2px;
  background: #2c53b3;
  transform: translateY(-50%);
}

.culture-section .culture-heading h2 {
  font-size: 26px;
  font-weight: 700;
  margin: 0;
}

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

.culture-section .culture-card {
  border-radius: 12px;
  padding: 18px 20px;
  background: #f5f6fa;
  min-height: 110px;
  display: flex;
  flex-direction: column;
}

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

.culture-section .culture-card p {
  font-size: 13px;
  color: #666;
  margin-bottom: 15px;
}

.culture-section .culture-card p img {
  width: 64px;
  height: 64px;
}

.culture-section .culture-card.tone-blue {
  background: #EAF1FF;
}

.culture-section .culture-card.tone-yellow {
  background: #FFF6D9;
}

.culture-section .culture-card.tone-green {
  background: #E8F8F0;
}

.culture-section .culture-card.tone-orange {
  background: #FFE9E0;
}

.history-section .timeline {
  position: relative;
  max-width: 960px;
  margin: 0 auto;
  padding: 10px 0 20px;
}

.history-section .timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 2px;
  height: 100%;
  background: #e7ebf7;
}

.history-section .tl-item {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: stretch;
  column-gap: 40px;
  margin: 32px 0;
}

.history-section .tl-item::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  background: #2c53b3;
  border-radius: 50%;
}

.history-section .tl-item.tl-left .tl-card {
  grid-column: 1;
  justify-self: flex-end;
}

.history-section .tl-item.tl-left .tl-meta {
  text-align: left;
  left: calc(50% + 24px);
}

.history-section .tl-item.tl-right .tl-card {
  grid-column: 3;
  justify-self: flex-start;
}

.history-section .tl-item.tl-right .tl-meta {
  text-align: right;
  right: calc(50% + 24px);
}

.history-section .tl-card {
  max-width: 360px;
  background: #F8FAFF;
  border-radius: 16px;
  padding: 20px 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  font-size: 14px;
  color: #555;
}

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

.history-section .tl-card p {
  line-height: 1.8;
  margin: 0;
}

.history-section .tl-meta {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  min-width: 80px;
}

.history-section .tl-year {
  font-weight: 700;
  color: #2c53b3;
  font-size: 16px;
}

.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 .subtitle-en {
  display: inline-block;
  font-size: 16px;
  font-weight: 500;
  vertical-align: middle;
  margin-bottom: 15px;
  text-transform: capitalize;
  letter-spacing: 1px;
}

.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: 10px;
  line-height: 1.8;
}

.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 {
  margin-top: 60px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}

.contact-right {
  padding-left: 90px;
  padding-right: 90px;
  padding-top: 60px;
  width: 66%;
  background: #DFEAFF;
  box-shadow: 0px 8px 20px 0px rgba(0, 0, 0, 0.15);
  border-radius: 50px 50px 50px 50px;
}

.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: 188px;
}

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

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

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

.footer {
  background-color: #1a2233;
  padding: 60px 0 40px;
  color: #fff;
  font-size: 14px;
  margin-top: 0;
}

.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;
  transition: color 0.3s;
}

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

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

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

@media (max-width: 992px) {
  .about-hero {
    min-height: 240px;
    height: auto;
    padding: 30px 0;
  }
  .about-hero {
    margin-top: 70px;
  }
  .header .logo-main {
    font-size: 16px;
    padding: 3px 6px;
    position: relative;
  }
  .header .logo-main img {
    height: 48px;
  }
  .header .container {
    height: 70px;
    position: sticky;
  }
  .mobile-menu-btn span {
    background: #fff;
  }
  .about-hero .hero-text .subtitle-en {
    font-size: 12px;
  }
  .about-hero .hero-text h1 {
    font-size: 28px;
  }
  .about-hero .hero-text .subline {
    font-size: 12px;
  }
  .company-section .company-profile {
    padding: 0 5%;
  }
  .company-section .company-profile .profile-flex {
    flex-direction: column;
    gap: 25px;
  }
  .company-section .company-profile .profile-image {
    width: 100%;
  }
  .company-section .company-profile .profile-text {
    font-size: 14px;
    line-height: 1.8;
    text-align: justify;
  }
  .company-section .company-stats .stats-row {
    grid-template-columns: repeat(4, 1fr);
  }
  .company-section .company-stats .stat .value {
    font-size: 32px;
  }
  .company-section .company-stats .stat .label {
    font-size: 12px;
  }
  .culture-section .culture-inner {
    flex-direction: column;
    gap: 30px;
    align-items: center;
  }
  .culture-section .culture-image {
    flex: none;
    width: 100%;
  }
  .culture-section .culture-right {
    align-items: center;
    min-height: auto;
  }
  .culture-section .culture-grid {
    grid-template-columns: repeat(2, 1fr);
    width: 90%;
    margin: 0 auto;
  }
  .history-section .timeline::before {
    left: 12px;
  }
  .history-section .tl-item {
    display: flex;
    /* Use flex to reorder */
    flex-direction: column;
    margin: 24px 0;
    padding-left: 32px;
  }
  .history-section .tl-item::after {
    left: 12px;
  }
  .history-section .tl-card {
    margin: 0;
    max-width: none;
    width: 100%;
  }
  .history-section .tl-meta {
    position: static;
    transform: none;
    min-width: auto;
    margin-top: 0;
    margin-bottom: 10px;
    margin-left: 0;
    text-align: left !important;
    /* Force left alignment */
    order: -1;
  }
  .contact-card-v2 {
    border-radius: 20px !important;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin: 0 15px 30px 15px;
    height: auto !important;
    display: flex;
    flex-direction: column;
    padding-left: 0 !important;
  }
  .contact-left {
    border-radius: 20px 20px 0 0;
    padding: 40px 20px;
    width: 100%;
    height: auto;
    text-align: center;
  }
  .contact-left .line-deco {
    display: none;
  }
  .contact-right {
    border-radius: 0 0 20px 20px;
    padding: 30px 20px;
    width: 100%;
    height: auto;
  }
  .contact-right .simple-form .form-row {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 0;
  }
  .contact-right .simple-form .form-group {
    width: 100%;
    margin-bottom: 15px;
  }
  .contact-right .simple-form .form-group.half {
    width: 100%;
  }
  .contact-right .simple-form .form-group input,
  .contact-right .simple-form .form-group textarea {
    width: 100%;
    background-color: #F4F8FB;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 12px;
  }
  .contact-right .simple-form .btn-submit {
    width: 100%;
    border-radius: 50px;
    padding: 12px;
    margin-top: 10px;
  }
  .footer-top {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  .footer-top .footer-nav {
    flex-direction: column;
    gap: 15px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .section-padding {
    padding: 40px 0;
  }
  .about-hero {
    min-height: 200px;
    height: auto;
    padding: 30px 0;
  }
  .about-hero {
    margin-top: 60px;
  }
  .about-hero .hero-text h1 {
    font-size: 24px;
  }
  .section-header h2 {
    font-size: 22px;
  }
  .company-section .company-stats .stats-row {
    grid-template-columns: repeat(2, 1fr);
  }
  .company-section .company-stats .stat .value {
    font-size: 28px;
  }
}

@media (max-width: 576px) {
  .about-hero .hero-text h1 {
    font-size: 22px;
  }
  .company-section .company-stats .stats-row {
    grid-template-columns: repeat(2, 1fr);
  }
  .company-section .company-stats .stat .value {
    font-size: 22px;
  }
  .company-section .company-stats .stat .label {
    font-size: 11px;
  }
  .culture-section .culture-grid {
    grid-template-columns: 1fr;
    width: 90%;
    margin: 0 auto;
  }
}

/* 动画与首页保持一致 */
@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 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 {
  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);
}

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