 /* ============================================
   Home Page - 首页全新设计
   高端日式医疗风格
   ============================================ */

/* Hero Section - 左右排版轮播 */
.hero-section-new {
  position: relative;
  width: 100%;
  height: 600px;
  margin-top: 80px;
  overflow: hidden;
  background: #f8fafc;
}

.hero-slider-new {
  width: 100%;
  height: 100%;
  position: relative;
}

.hero-slide-new {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease;
  z-index: 1;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-slide-new.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.hero-overlay-gradient {
  position: absolute;
  inset: 0;
  z-index: 2;
}

.hero-container {
  position: relative;
  z-index: 10;
  height: 100%;
}

.hero-content-left {
  position: absolute;
  left: 15%;
  top: 50%;
  transform: translateY(-50%);
  max-width: 480px;
}

.hero-content-right {
  position: absolute;
  right: 15%;
  top: 50%;
  transform: translateY(-50%);
  max-width: 480px;
  text-align: right;
}

.hero-content-right .hero-cta-new {
  justify-content: flex-end;
}

/* 第二张banner亮色主题 */
.hero-content-right .hero-inner-new {
  color: #fff;
}

.hero-content-right .hero-title-new {
  color: #fff;
}

.hero-content-right .hero-title-new span {
  color: #fff;
}

.hero-content-right .hero-title-new:hover span {
  color: #ffe4b5;
}

.hero-content-right .hero-desc-sub-new {
  color: rgba(255, 255, 255, 0.9);
}

.hero-content-right .hero-desc-sub-new:hover {
  color: #fff;
}

.hero-content-right .hero-desc-sub-new::before {
  color: #fff;
}

.hero-content-right .hero-tag-new {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
}

.hero-content-right .hero-desc-highlight-new {
  background: linear-gradient(90deg, #fff 0%, #ffe4b5 25%, #fff 50%, #fff 75%, #ffe4b5 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* 第二张banner按钮亮色样式 */
.hero-content-right .btn-primary-new {
  background: linear-gradient(135deg, #fff 0%, #f0f0f0 100%);
  color: #e86a4f !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.hero-content-right .btn-primary-new:hover {
  background: linear-gradient(135deg, #fff 0%, #fff 100%);
  color: #d45a3f !important;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}

.hero-content-right .btn-outline-new {
  background: transparent;
  border: 2px solid #fff;
  color: #fff !important;
}

.hero-content-right .btn-outline-new:hover {
  background: #fff;
  color: #e86a4f !important;
}

.hero-inner-new {
  color: #1a202c;
}

/* ========== 轮播文字交互动画效果 ========== */

/* 基础动画类 */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes blurIn {
  from {
    opacity: 0;
    filter: blur(10px);
  }
  to {
    opacity: 1;
    filter: blur(0);
  }
}

@keyframes slideInRotate {
  from {
    opacity: 0;
    transform: translateY(20px) rotateX(-15deg);
  }
  to {
    opacity: 1;
    transform: translateY(0) rotateX(0);
  }
}

@keyframes letterSpacingIn {
  from {
    opacity: 0;
    letter-spacing: 10px;
  }
  to {
    opacity: 1;
    letter-spacing: -0.5px;
  }
}

@keyframes glowPulse {
  0%, 100% {
    text-shadow: 0 0 20px rgba(212, 168, 83, 0.3);
  }
  50% {
    text-shadow: 0 0 40px rgba(212, 168, 83, 0.6), 0 0 60px rgba(212, 168, 83, 0.3);
  }
}

@keyframes floatY {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes shimmer {
  0% {
    background-position: -200% center;
  }
  100% {
    background-position: 200% center;
  }
}

/* 当前激活幻灯片的文字动画 */
.hero-slide-new.active .hero-tag-new {
  animation: fadeInLeft 0.6s ease-out forwards;
  animation-delay: 0.1s;
  opacity: 0;
}

.hero-slide-new.active .hero-title-new {
  animation: fadeInUp 0.7s ease-out forwards;
  animation-delay: 0.3s;
  opacity: 0;
  transform-style: preserve-3d;
}

.hero-slide-new.active .hero-title-new span {
  animation: letterSpacingIn 0.8s ease-out forwards;
  animation-delay: 0.5s;
  opacity: 0;
  display: inline-block;
}

.hero-slide-new.active .hero-desc-highlight-new {
  animation: scaleIn 0.6s ease-out forwards;
  animation-delay: 0.6s;
  opacity: 0;
}

.hero-slide-new.active .hero-desc-sub-new {
  animation: blurIn 0.5s ease-out forwards;
  opacity: 0;
}

.hero-slide-new.active .hero-desc-sub-new:nth-of-type(1) {
  animation-delay: 0.8s;
}

.hero-slide-new.active .hero-desc-sub-new:nth-of-type(2) {
  animation-delay: 0.95s;
}

.hero-slide-new.active .hero-desc-sub-new:nth-of-type(3) {
  animation-delay: 1.1s;
}

.hero-slide-new.active .hero-cta-new {
  animation: fadeInUp 0.6s ease-out forwards;
  animation-delay: 1.3s;
  opacity: 0;
}

/* 右侧内容区域动画 */
.hero-content-right .hero-slide-new.active .hero-tag-new {
  animation: fadeInRight 0.6s ease-out forwards;
}

.hero-content-right .hero-slide-new.active .hero-title-new {
  animation: fadeInRight 0.7s ease-out forwards;
}

/* 文字悬停交互效果 */
.hero-title-new {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: default;
}

.hero-title-new:hover {
  transform: translateX(5px);
  text-shadow: 0 4px 20px rgba(26, 54, 93, 0.15);
}

.hero-title-new span {
  position: relative;
  display: inline-block;
  transition: all 0.3s ease;
}

.hero-title-new span::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, #d4a853, #e8c878);
  transition: width 0.4s ease;
  border-radius: 2px;
}

.hero-title-new:hover span::after {
  width: 100%;
}

.hero-title-new:hover span {
  color: #d4a853;
  animation: glowPulse 2s ease-in-out infinite;
}

/* 高亮描述悬停效果 */
.hero-desc-highlight-new {
  position: relative;
  display: block;
  transition: all 0.3s ease;
  cursor: default;
}

.hero-desc-highlight-new::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: -5px;
  right: -5px;
  height: 8px;
  background: linear-gradient(120deg, rgba(212, 168, 83, 0.2), rgba(212, 168, 83, 0.4));
  border-radius: 4px;
  z-index: -1;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.hero-desc-highlight-new:hover::before {
  transform: scaleX(1);
}

.hero-desc-highlight-new:hover {
  transform: scale(1.05);
  text-shadow: 0 0 30px rgba(212, 168, 83, 0.4);
}

/* 子描述文字逐行悬停效果 */
.hero-desc-sub-new {
  position: relative;
  display: block;
  transition: all 0.3s ease;
  padding: 4px 0;
}

.hero-desc-sub-new:hover {
  color: #1a365d;
  transform: translateX(10px);
}

.hero-desc-sub-new::before {
  content: '✦';
  position: absolute;
  left: -20px;
  opacity: 0;
  color: #d4a853;
  transition: all 0.3s ease;
  font-size: 12px;
}

.hero-desc-sub-new:hover::before {
  opacity: 1;
  left: -15px;
}

/* 标签悬停效果 */
.hero-tag-new {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: default;
}

.hero-tag-new:hover {
  background: linear-gradient(135deg, #d4a853 0%, #c49a4b 100%);
  color: #fff;
  border-color: transparent;
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 25px rgba(212, 168, 83, 0.3);
}

.hero-tag-new:hover i {
  animation: floatY 1s ease-in-out infinite;
}

/* CTA按钮组悬停效果 */
.hero-cta-new {
  transition: all 0.3s ease;
}

.hero-cta-new:hover {
  transform: translateY(-3px);
}

.hero-cta-new .btn-new {
  position: relative;
  overflow: hidden;
}

.hero-cta-new .btn-new::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.5s ease;
}

.hero-cta-new .btn-new:hover::before {
  left: 100%;
}

/* 闪光文字效果 */
.hero-desc-highlight-new {
  background: linear-gradient(90deg, #d4a853 0%, #e8c878 25%, #d4a853 50%, #c49a4b 75%, #d4a853 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 3s linear infinite;
}

/* 响应式动画调整 */
@media (max-width: 768px) {
  .hero-slide-new.active .hero-tag-new,
  .hero-slide-new.active .hero-title-new,
  .hero-slide-new.active .hero-desc-highlight-new,
  .hero-slide-new.active .hero-desc-sub-new,
  .hero-slide-new.active .hero-cta-new {
    animation-duration: 0.5s;
  }
  
  .hero-title-new:hover,
  .hero-desc-sub-new:hover {
    transform: none;
  }
}

.hero-tag-new {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: #fff;
  border: 1px solid #d4a853;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  color: #966f28;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero-title-new {
  font-size: 52px;
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.5px;
  color: #1a202c;
  margin-bottom: 16px;
}

.hero-title-new span {
  font-weight: 700;
  color: #1a365d;
}

.hero-desc-highlight-new {
  font-size: 28px;
  font-weight: 700;
  color: #d4a853;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

.hero-desc-sub-new {
  font-size: 16px;
  color: #475569;
  line-height: 1.7;
  margin-bottom: 8px;
}

.hero-cta-new {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 36px;
}

/* Slider Navigation */
.slider-nav-new {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  transform: translateY(-50%);
  pointer-events: none;
}

.slider-dots-new {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 20;
}

.slider-arrow-new {
  pointer-events: auto;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  color: #1a365d;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  cursor: pointer;
}

.slider-arrow-new:hover {
  background: #fff;
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.slider-dots-new {
  display: flex;
  gap: 12px;
}

.slider-dot-new {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.slider-dot-new.active {
  background: #d4a853;
  width: 36px;
  border-radius: 6px;
}

.slider-arrow-new {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(26, 54, 93, 0.2);
  color: #1a365d;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  cursor: pointer;
}

.slider-arrow-new:hover {
  background: #fff;
  border-color: #1a365d;
  transform: scale(1.1);
}

/* Buttons New */
.btn-new {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 36px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.5px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  text-decoration: none;
}

.btn-primary-new {
  background: linear-gradient(135deg, #d4a853 0%, #c49a4b 100%);
  color: #fff !important;
  box-shadow: 0 4px 20px rgba(212, 168, 83, 0.3);
}

.btn-primary-new:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(212, 168, 83, 0.4);
}

.btn-outline-new {
  background: #fff;
  border: 2px solid #1a365d;
  color: #1a365d !important;
  padding: 14px 34px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-outline-new:hover {
  background: #1a365d;
  color: #fff !important;
  transform: translateY(-3px);
}

/* Section Styles */
.section-new {
  padding: 120px 0;
}

.section-header-new {
  text-align: center;
  margin-bottom: 70px;
}

.section-label-new {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(212, 168, 83, 0.1);
  border: 1px solid rgba(212, 168, 83, 0.2);
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  color: #d4a853;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.section-title-new {
  font-size: 42px;
  font-weight: 300;
  color: #1a202c;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.section-title-new span {
  font-weight: 700;
  color: #1a365d;
}

.section-subtitle-new {
  font-size: 17px;
  color: #64748b;
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto;
}

.section-features-new {
  display: inline-flex;
  gap: 24px;
  margin-top: 20px;
  font-size: 14px;
  font-weight: 500;
  color: #64748b;
}

.section-features-new span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.section-features-new svg {
  color: #d4a853;
}

/* Services Grid New */
.services-section-new {
  background: #fff;
}

.services-grid-new {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.service-card-new {
  background: #fff;
  border-radius: 20px;
  padding: 48px 32px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.service-card-new::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #d4a853, #e8c878);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.service-card-new:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.service-card-new:hover::before {
  transform: scaleX(1);
}

.service-icon-new {
  width: 80px;
  height: 80px;
  margin: 0 auto 28px;
  background: rgba(255, 255, 255, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1a365d;
  font-size: 32px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.service-card-new:hover .service-icon-new {
  background: linear-gradient(135deg, #1a365d 0%, #2c5282 100%);
  color: #fff;
  transform: scale(1.05) rotate(5deg);
}

.service-tag-new {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(212, 168, 83, 0.1);
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  color: #d4a853;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.service-card-new h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 14px;
  color: #1a202c;
}

.service-card-new p {
  font-size: 15px;
  color: #64748b;
  line-height: 1.75;
  margin-bottom: 24px;
}

.service-link-new {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #1a365d;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
}

.service-link-new:hover {
  color: #d4a853;
  gap: 12px;
}

.service-link-new::after {
  content: '→';
  transition: transform 0.3s ease;
}

.service-link-new:hover::after {
  transform: translateX(4px);
}

/* Why Us Section */
.why-section-new {
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
}

.why-grid-new {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.why-card-new {
  background: #fff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.03);
  transition: all 0.4s ease;
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.why-card-new:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.why-icon-new {
  width: 64px;
  height: 64px;
  min-width: 64px;
  background: rgba(26, 54, 93, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 28px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.why-card-new:hover .why-icon-new {
  background: rgba(212, 168, 83, 0.9);
  border-color: rgba(255, 255, 255, 0.4);
  transform: rotate(5deg) scale(1.05);
}

.why-content-new h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #1a202c;
}

.why-content-new p {
  font-size: 14px;
  line-height: 1.8;
  color: #64748b;
}

/* Brand Banner New */
.brand-section-new {
  background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 50%, #1e40af 100%);
  color: #fff;
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.brand-section-new::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 168, 83, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.brand-section-new::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.03) 0%, transparent 70%);
  pointer-events: none;
}

.brand-grid-new {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.brand-left-new {
  padding-right: 40px;
}

.brand-label-new {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(212, 168, 83, 0.15);
  padding: 10px 20px;
  border-radius: 50px;
  margin-bottom: 28px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #d4a853;
}

.brand-title-new {
  font-size: 48px;
  line-height: 1.15;
  margin-bottom: 24px;
  font-weight: 300;
}

.brand-title-new span {
  font-weight: 700;
  color: #d4a853;
}

.brand-subtitle-new {
  font-size: 17px;
  line-height: 1.8;
  opacity: 0.75;
  margin-bottom: 40px;
}

.brand-cta-new {
  display: flex;
  gap: 20px;
}

.btn-brand-primary-new {
  background: linear-gradient(135deg, #d4a853 0%, #c49a4b 100%);
  color: #fff !important;
  padding: 16px 36px;
  border-radius: 50px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 20px rgba(212, 168, 83, 0.3);
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-brand-primary-new:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(212, 168, 83, 0.4);
}

.btn-brand-secondary-new {
  background: rgba(255, 255, 255, 0.1);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  color: #fff !important;
  padding: 16px 36px;
  border-radius: 50px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-brand-secondary-new:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: #fff;
  transform: translateY(-3px);
}

/* Brand Story Card */
.brand-story-card-new {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 48px;
}

.brand-story-header-new {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}

.brand-story-icon-new {
  width: 56px;
  height: 56px;
  background: rgba(212, 168, 83, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 24px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.brand-story-title-new {
  font-size: 24px;
  font-weight: 700;
  margin: 0;
}

.brand-story-text-new {
  font-size: 15px;
  line-height: 1.8;
  opacity: 0.75;
  margin-bottom: 16px;
}

.brand-story-link-new {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #d4a853;
  font-weight: 600;
  font-size: 14px;
  margin-top: 20px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.brand-story-link-new:hover {
  gap: 12px;
}

/* News Section New */
.news-section-new {
  background: #f8fafc;
}

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

.news-card-new {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.03);
  transition: all 0.4s ease;
}

.news-card-new:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.news-img-new {
  height: 200px;
  background: linear-gradient(135deg, #1a365d 0%, #2c5282 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.4);
  font-size: 48px;
}

.news-body-new {
  padding: 28px;
}

.news-meta-new {
  margin-bottom: 14px;
}

.news-badge-new {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.news-badge-blue-new {
  background: rgba(26, 54, 93, 0.1);
  color: #1a365d;
}

.news-badge-green-new {
  background: rgba(16, 185, 129, 0.1);
  color: #065f46;
}

.news-badge-gold-new {
  background: rgba(212, 168, 83, 0.1);
  color: #966f28;
}

.news-title-new {
  font-size: 18px;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 12px;
  line-height: 1.4;
}

.news-desc-new {
  font-size: 14px;
  color: #64748b;
  line-height: 1.7;
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-link-new {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: #1a365d;
  text-decoration: none;
  transition: all 0.3s ease;
}

.news-link-new:hover {
  gap: 10px;
  color: #d4a853;
}

.news-more-new {
  text-align: center;
}

.btn-news-more-new {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 40px;
  background: transparent;
  border: 2px solid #1a365d;
  border-radius: 50px;
  color: #1a365d;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-news-more-new:hover {
  background: #1a365d;
  color: #fff;
  transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 1200px) {
  .hero-title-new {
    font-size: 52px;
  }
  .services-grid-new {
    grid-template-columns: repeat(2, 1fr);
  }
  .news-grid-new {
    grid-template-columns: repeat(2, 1fr);
  }
  .brand-grid-new {
    gap: 50px;
  }
}

@media (max-width: 992px) {
  .hero-section-new {
    height: 500px;
  }
  .hero-title-new {
    font-size: 36px;
  }

  .hero-desc-highlight-new {
    font-size: 24px;
  }
  .section-new {
    padding: 80px 0;
  }
  .brand-section-new {
    padding: 80px 0;
  }
  .brand-grid-new {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .brand-left-new {
    padding-right: 0;
    text-align: center;
  }
  .brand-cta-new {
    justify-content: center;
  }
  .brand-title-new {
    font-size: 36px;
  }
}

@media (max-width: 768px) {
  .hero-section-new {
    height: 600px;
  }
  
  /* 移动端轮播图片优化 - 显示图片中间重要区域 */
  .hero-slide-new {
    background-size: cover;
    background-position: center center;
  }
  
  .hero-content-left,
  .hero-content-right {
    left: 50%;
    right: auto;
    transform: translate(-50%, -50%);
    text-align: center;
    max-width: 90%;
  }
  .hero-content-right .hero-cta-new,
  .hero-cta-new {
    justify-content: center;
  }
  .hero-inner-new {
    max-width: 100%;
    text-align: center;
  }

  .hero-title-new {
    font-size: 32px;
  }
  .hero-desc-highlight-new {
    font-size: 22px;
  }
  .hero-cta-new {
    justify-content: center;
  }
  .slider-nav-new {
    top: 50%;
    padding: 0 15px;
    transform: translateY(-50%);
  }
  .slider-arrow-new {
    width: 40px;
    height: 40px;
  }
  .slider-dots-new {
    bottom: 15px;
  }
  .section-title-new {
    font-size: 32px;
  }
  .services-grid-new,
  .why-grid-new,
  .news-grid-new {
    grid-template-columns: 1fr;
  }
  .why-card-new {
    flex-direction: column;
    text-align: center;
  }
  .why-icon-new {
    margin: 0 auto;
  }
  .brand-cta-new {
    flex-direction: column;
  }
  .btn-brand-primary-new,
  .btn-brand-secondary-new {
    justify-content: center;
  }
  .brand-story-card-new {
    padding: 32px;
  }
}

@media (max-width: 480px) {
  .hero-section-new {
    height: 550px;
  }
  
  /* 小屏幕进一步优化图片显示 */
  .hero-slide-new {
    background-size: cover;
    background-position: 60% center;
  }

  .hero-title-new {
    font-size: 26px;
  }
  .hero-desc-highlight-new {
    font-size: 20px;
  }
  .section-title-new {
    font-size: 26px;
  }
  .brand-title-new {
    font-size: 28px;
  }
  .service-card-new {
    padding: 36px 24px;
  }
  .btn-new, .btn-outline-new {
    padding: 12px 24px;
    font-size: 14px;
  }
}
