/* ── 远程会诊页面 - 现代化设计 ─────────────────────────── */

/* Hero 区域 - 深蓝色主题 */
.telemedicine-hero-new {
  background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 50%, #1e40af 100%);
  position: relative;
  height: 350px;
  min-height: 350px;
  margin-top: 80px;
  display: flex;
  align-items: center;
  padding: 0;
  overflow: hidden;
}

.telemedicine-hero-new::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse at 30% 20%, rgba(56, 189, 248, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 80%, rgba(96, 165, 250, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.hero-content-new,
.telemedicine-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.telemedicine-hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-badge-new,
.telemedicine-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  background: rgba(212, 168, 83, 0.15);
  border: 1px solid rgba(212, 168, 83, 0.3);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  color: #d4a853;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero-title-new,
.telemedicine-hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
  line-height: 1.2;
}

.telemedicine-hero-title span {
  color: #d4a853;
}

.hero-desc-new,
.telemedicine-hero-desc {
  font-size: 1.25rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.8;
}

/* ── 什么是远程会诊区块 ────────────────────────────────── */
.intro-section-new {
  padding: 100px 0;
  background: #faf5eb;
}

.intro-grid-new {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

@media (max-width: 991px) {
  .intro-grid-new {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.intro-content-new {
  padding-right: 20px;
}

.section-header-new {
  margin-bottom: 32px;
}

.accent-line-new {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #d4a853, #fbbf24);
  margin-bottom: 24px;
  border-radius: 2px;
}

.section-title-new {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a365d;
  margin-bottom: 12px;
}

.intro-text-new {
  font-size: 1.1rem;
  color: #4a5568;
  line-height: 1.9;
  margin-bottom: 20px;
}

/* 特点卡片 */
.features-card-new {
  background: #fff;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.features-list-new {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}

.features-list-new li {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid #e2e8f0;
  font-size: 1.05rem;
  color: #2d3748;
}

.features-list-new li:last-child {
  border-bottom: none;
}

.feature-icon-circle {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #1a365d, #2c5282);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.notice-box-new {
  background: linear-gradient(135deg, #fef3c7, #fde68a);
  border-radius: 12px;
  padding: 16px 20px;
  font-size: 0.9rem;
  color: #92400e;
  line-height: 1.6;
}

.notice-box-new i {
  margin-right: 8px;
}

/* ── 诊疗流程区块 ──────────────────────────────────────── */
.process-section-new {
  padding: 100px 0;
  background: #fff;
}

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

.section-header-center .accent-line-new {
  margin: 0 auto 24px;
}

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

@media (max-width: 991px) {
  .process-grid-new {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .process-grid-new {
    grid-template-columns: 1fr;
  }
}

/* 连接线 */
.process-grid-new::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: linear-gradient(90deg, #d4a853, #fbbf24);
  z-index: 0;
}

@media (max-width: 991px) {
  .process-grid-new::before {
    display: none;
  }
}

.process-card-new {
  background: #fff;
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  border: 1px solid #e2e8f0;
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
}

.process-card-new:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
  border-color: #d4a853;
}

.process-number {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #1a365d, #2c5282);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  box-shadow: 0 4px 15px rgba(26, 54, 93, 0.3);
}

.process-card-new h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1a365d;
  margin-bottom: 16px;
}

.process-card-new p {
  font-size: 0.95rem;
  color: #64748b;
  line-height: 1.7;
}

/* ── CTA 区块 ──────────────────────────────────────────── */
.cta-section-new {
  padding: 80px 0;
  background: linear-gradient(135deg, #1a365d, #2c5282);
  text-align: center;
}

.cta-title-new {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
}

.cta-text-new {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 32px;
}

.cta-btn-new {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 40px;
  background: linear-gradient(135deg, #d4a853, #fbbf24);
  color: #1a365d;
  font-weight: 600;
  font-size: 1.1rem;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.cta-btn-new:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.4);
}

/* ── 响应式设计 ─────────────────────────────────────────── */
@media (max-width: 991px) {
  .hero-title-new {
    font-size: 2.5rem;
  }
  
  .section-title-new {
    font-size: 2rem;
  }
}

@media (max-width: 767px) {
  .telemedicine-hero-new {
    height: 350px;
    min-height: 350px;
    padding: 0;
  }
  
  .hero-title-new {
    font-size: 2rem;
  }
  
  .hero-desc-new {
    font-size: 1rem;
  }
  
  .features-card-new {
    padding: 24px;
  }
  
  .section-title-new {
    font-size: 1.75rem;
  }
  
  .process-card-new {
    padding: 30px 20px;
  }
  
  .cta-title-new {
    font-size: 1.5rem;
  }
}
