/* ── 筛查项目页面 - 现代化设计 ─────────────────────────── */

/* Hero 区域 - 深蓝色主题 */
.screening-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;
}

.screening-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(14, 165, 233, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

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

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

.hero-badge-new,
.screening-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,
.screening-hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
  line-height: 1.2;
}

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

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

/* ── 筛查项目区块 - 个性化体检风格 ──────────────────────── */
.screening-section-new {
  padding: 100px 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  position: relative;
}

.screening-section-new::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to bottom, #0f172a, transparent);
  opacity: 0.05;
}

.section-header-new {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
}

.accent-line-new {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #0ea5e9, #38bdf8);
  margin: 0 auto 24px;
  border-radius: 2px;
}

.section-title-new {
  font-size: 2.5rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 16px;
}

.section-desc-new {
  font-size: 1.1rem;
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
}

/* 高端护理卡片 - 参考 personalized.css 风格 */
.premium-care-card {
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
  display: flex;
  margin-bottom: 40px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.card-sidebar {
  flex: 0 0 200px;
  background: linear-gradient(180deg, #0ea5e9 0%, #0284c7 100%);
  padding: 40px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  text-align: center;
}

.card-category {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.card-number {
  font-size: 5rem;
  font-weight: 700;
  color: rgba(255,255,255,0.3);
  line-height: 1;
}

.card-main-content {
  flex: 1;
  padding: 48px;
  min-width: 0;
}

.card-header-row {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 24px;
}

.card-icon-circle {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, #e0f2fe, #bae6fd);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  color: #0284c7;
  flex-shrink: 0;
}

.card-title-main {
  font-size: 2rem;
  font-weight: 700;
  color: #0f172a;
}

.card-description {
  font-size: 1.1rem;
  color: #475569;
  line-height: 1.8;
  margin-bottom: 32px;
}

/* 特性网格 */
.features-grid-new {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}

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

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

.feature-box {
  background: linear-gradient(135deg, #f8fafc, #f1f5f9);
  border-radius: 16px;
  padding: 24px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid #e2e8f0;
}

.feature-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.08);
  border-color: #7dd3fc;
}

.feature-box-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #0ea5e9, #38bdf8);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.5rem;
  color: #fff;
}

.feature-box-title {
  font-size: 1rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 6px;
}

.feature-box-desc {
  font-size: 0.85rem;
  color: #64748b;
}

/* CTA 按钮 */
.card-cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary-new {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: linear-gradient(135deg, #0ea5e9, #0284c7);
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(14, 165, 233, 0.4);
}

.btn-primary-new:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(14, 165, 233, 0.5);
}

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

.btn-outline-new:hover {
  background: #0ea5e9;
  color: #fff;
}

/* ── 咨询与预约区块 ─────────────────────────────────────── */
.consult-section-new {
  padding: 80px 0;
  background: #fff;
}

.consult-grid-new {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

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

.consult-info-box {
  padding-right: 24px;
}

.consult-info-box h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 24px;
}

.consult-info-box p {
  font-size: 1.05rem;
  color: #475569;
  line-height: 1.8;
  margin-bottom: 16px;
}

.consult-notice-box {
  background: linear-gradient(135deg, #fef3c7, #fde68a);
  border-radius: 16px;
  padding: 24px;
  margin: 24px 0;
}

.consult-notice-box p {
  font-size: 0.95rem;
  color: #92400e;
  line-height: 1.7;
  margin: 0;
}

.consult-contact-box {
  background: linear-gradient(135deg, #f8fafc, #e2e8f0);
  border-radius: 20px;
  padding: 40px;
}

.consult-contact-box h4 {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.25rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 24px;
}

.consult-contact-box h4 i {
  color: #0ea5e9;
}

.consult-list-new {
  list-style: none;
  padding: 0;
  margin: 0;
}

.consult-list-new li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid #e2e8f0;
  font-size: 1rem;
  color: #334155;
}

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

.consult-list-new li i {
  color: #0ea5e9;
  width: 20px;
}

/* ── 响应式设计 ─────────────────────────────────────────── */
@media (max-width: 991px) {
  .hero-title-new {
    font-size: 2.5rem;
  }
  
  .card-sidebar {
    flex: 0 0 100%;
    flex-direction: row;
    padding: 24px;
  }
  
  .card-number {
    font-size: 3rem;
  }
  
  .card-main-content {
    padding: 32px;
  }
  
  .premium-care-card {
    flex-direction: column;
  }
}

@media (max-width: 767px) {
  .screening-hero-new {
    height: 350px;
    min-height: 350px;
    padding: 0;
  }
  
  .hero-title-new {
    font-size: 2rem;
  }
  
  .hero-desc-new {
    font-size: 1rem;
  }
  
  .section-title-new {
    font-size: 1.75rem;
  }
  
  .card-main-content {
    padding: 24px;
  }
  
  .card-title-main {
    font-size: 1.5rem;
  }
  
  .features-grid-new {
    grid-template-columns: 1fr;
  }
}
