/* Scoped Styles for Diversification Page */
body {
  font-family: "Helvetica Neue", Helvetica, Arial, "PingFang SC", "Hiragino Sans GB", "Heiti SC", "Microsoft YaHei", "WenQuanYi Micro Hei", sans-serif;
  color: #333;
  background-color: #f8f9fa;
  margin: 0;
  padding: 0;
}

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

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

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

/* Header & Footer Reuse Styles (Assuming common.css handles structure, adding overrides if needed) */
/* ... (Header/Footer styles are usually in common.css, assuming valid linking) ... */
/* Hero Section */
.div-hero {
  height: 430px;
  background: url("../images/laowu.png") center/cover no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  position: relative;
  margin-top: 90px;
  /* Header height offset */
}

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

.div-hero .hero-inner {
  position: relative;
  z-index: 1;
}

.div-hero .title {
  font-size: 68px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #144290;
}

.div-hero .title-en {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 20px;
  text-transform: uppercase;
  color: #144290;
}

.div-hero .subline {
  font-size: 20px;
  color: #144290;
}

/* Overview Section */
.div-overview {
  padding: 80px 0;
  text-align: center;
  background: #fff;
}

.div-overview .section-title {
  font-size: 48px;
  font-weight: 800;
  color: #000;
  margin-bottom: 10px;
}

.div-overview .section-tag {
  display: inline-block;
  background: #ffc107;
  color: #144290;
  font-size: 22px;
  font-weight: 700;
  padding: 4px 15px;
  margin-bottom: 30px;
  text-transform: uppercase;
  border-radius: 4px;
}

.div-overview .intro {
  max-width: 800px;
  margin: 0 auto;
  font-size: 20px;
  color: #333;
  line-height: 1.8;
}

/* Services Section */
.div-services {
  padding-bottom: 80px;
  background: #fff;
}

.service-block {
  display: flex;
  align-items: flex-end;
  gap: 60px;
  margin-bottom: 100px;
}

.service-block:nth-child(even) {
  flex-direction: row-reverse;
}

.service-block:last-child {
  margin-bottom: 0;
}

.service-img {
  height: 340px;
  overflow: hidden;
}

.service-img img {
  border-radius: 20px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-img:hover img {
  transform: scale(1.05);
}

.service-text {
  flex: 1;
}

.service-text .subtitle-wrapper {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 10px;
}

.service-text .subtitle-wrapper .line {
  width: 30px;
  height: 2px;
  background: #144290;
}

.service-text .subtitle-wrapper .subtitle {
  color: #144290;
  font-weight: 700;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.service-text .service-title {
  font-size: 32px;
  font-weight: 800;
  color: #000;
  margin-bottom: 20px;
}

.service-text .service-desc {
  font-size: 15px;
  color: #6D6D6D;
  margin-bottom: 30px;
  line-height: 1.6;
}

.service-text .feature-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.service-text .feature-item {
  display: flex;
  align-items: center;
  gap: 15px;
}

.service-text .feature-item .icon {
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.service-text .feature-item .icon img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.service-text .feature-item .content h4 {
  font-size: 18px;
  font-weight: 400;
  color: #000;
  margin-bottom: 6px;
}

.service-text .feature-item .content h4:last-child {
  margin-bottom: 0;
}

.service-text .feature-item .content p {
  font-size: 14px;
  color: #7C7C7C;
  line-height: 1.5;
  margin: 0;
}

/* Contact Section - Replaced by .contact-section-v2 from news.scss */
/* Animation Keyframes (from news.scss) */
@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 fadeInUp {
  0% {
    opacity: 0;
    transform: translate3d(0, 80px, 0);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes clipUp {
  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);
  }
}

/* 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);
}

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

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

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

/* Responsive */
@media (max-width: 992px) {
  .div-hero {
    margin-top: 70px;
    /* Adjust for mobile header height */
  }
  .div-hero .title {
    font-size: 36px;
  }
  .service-block {
    flex-direction: column !important;
    gap: 30px;
    margin-bottom: 60px;
  }
  .service-img {
    width: 100%;
    height: 250px;
  }
}

@media (max-width: 768px) {
  .div-overview .section-title {
    font-size: clamp(24px, 8vw, 34px);
    white-space: nowrap;
    line-height: 1.15;
  }
}
