/* ============================================================
   duixiang.css — 服务对象页面样式
   ============================================================ */

/* ---------- Section: 服务对象介绍 ---------- */
.targets-intro {
  padding: 5rem 2rem;
  background: #fefcf8;
}

.targets-intro-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.intro-badge {
  display: inline-block;
  background: #C5A059;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 0.3rem 0.9rem;
  border-radius: 2rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.intro-text-col h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 1.25rem;
  line-height: 1.35;
}

.intro-text-col p {
  font-size: 0.97rem;
  color: #555;
  line-height: 1.85;
  margin-bottom: 1rem;
}

.intro-text-col strong {
  color: #C5A059;
}

.intro-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.75rem;
}

.intro-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: #fff;
  border: 1px solid rgba(165, 137, 72, 0.3);
  border-radius: 2rem;
  padding: 0.4rem 0.85rem;
  font-size: 0.85rem;
  color: #7a6030;
  font-weight: 500;
}

.intro-tag .material-symbols-outlined {
  font-size: 1rem;
  color: #C5A059;
}

/* Stats column */
.intro-stats-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.intro-stat-card {
  background: #fff;
  border-radius: 1.25rem;
  padding: 1.75rem 1.5rem;
  box-shadow: 0 4px 18px rgba(165, 137, 72, 0.1);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  border: 1px solid rgba(165, 137, 72, 0.1);
}

.intro-stat-card.accent {
  background: linear-gradient(135deg, #C5A059 0%, #C5A059 100%);
}

.intro-stat-num {
  font-size: 2.2rem;
  font-weight: 800;
  color: #1a1a1a;
  line-height: 1.1;
}

.intro-stat-num em {
  font-style: normal;
  font-size: 1rem;
  font-weight: 500;
  color: #888;
  margin-left: 0.15rem;
}

.intro-stat-card.accent .intro-stat-num {
  color: #fff;
}

.intro-stat-card.accent .intro-stat-num em {
  color: rgba(255, 255, 255, 0.75);
}

.intro-stat-label {
  font-size: 0.82rem;
  color: #999;
  font-weight: 500;
}

.intro-stat-card.accent .intro-stat-label {
  color: rgba(255, 255, 255, 0.8);
}

/* ---------- Section: 服务对象卡片 ---------- */
.targets-cards {
  padding: 5rem 2rem 6rem;
  background: #fff;
}

.targets-section-header {
  max-width: 1200px;
  margin: 0 auto 3rem;
  text-align: center;
}

.targets-section-header h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 0.75rem;
}

.targets-section-header p {
  font-size: 1rem;
  color: #777;
  line-height: 1.7;
}

.targets-cards-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

/* ---------- Target Card ---------- */
.target-card {
  background: #fefcf8;
  border-radius: 1.25rem;
  padding: 2.5rem 2rem 2rem;
  transition: box-shadow 0.3s, transform 0.3s;
  border: 1px solid rgba(165, 137, 72, 0.12);
}

.target-card:hover {
  box-shadow: 0 12px 36px rgba(165, 137, 72, 0.15);
  transform: translateY(-4px);
}

.target-card-icon {
  width: 64px;
  height: 64px;
  border-radius: 1rem;
  background: rgba(165, 137, 72, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.target-card-icon span.material-symbols-outlined {
  font-size: 2rem;
  color: #C5A059;
}

.target-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 0.75rem;
}

.target-card-desc {
  font-size: 0.93rem;
  color: #666;
  line-height: 1.75;
  margin-bottom: 1.25rem;
  min-height: 4.5em;
}

.target-card-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.target-list-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  color: #444;
  line-height: 1.5;
}

.target-list-item span.material-symbols-outlined {
  font-size: 1.15rem;
  flex-shrink: 0;
}

/* ---------- Section: 入住流程 ---------- */
.admission-section {
  padding: 5rem 2rem;
  background: #f5f0e8;
}

.admission-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.admission-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.admission-header h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 0.75rem;
  margin-top: 0.75rem;
}

.admission-header p {
  font-size: 1rem;
  color: #777;
  line-height: 1.7;
}

.admission-steps {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: center;
  gap: 0.5rem;
}

/* Individual step card */
.admission-step {
  background: #fff;
  border-radius: 1.25rem;
  padding: 2rem 1.5rem;
  text-align: center;
  flex: 1 1 140px;
  min-width: 150px;
  max-width: 185px;
  box-shadow: 0 4px 18px rgba(165, 137, 72, 0.1);
  border: 1px solid rgba(165, 137, 72, 0.1);
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
}

.admission-step:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 32px rgba(165, 137, 72, 0.16);
}

.step-num {
  font-family: 'Manrope', sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  color: #C5A059;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
}

.step-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(165, 137, 72, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.step-icon .material-symbols-outlined {
  font-size: 1.75rem;
  color: #C5A059;
}

.admission-step h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 0.6rem;
}

.admission-step p {
  font-size: 0.82rem;
  color: #777;
  line-height: 1.65;
}

/* Arrow between steps */
.admission-step-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding-top: 3.2rem;
}

.admission-step-arrow .material-symbols-outlined {
  font-size: 1.6rem;
  color: #d4c49a;
  font-weight: 300;
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .targets-cards-inner {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .targets-intro-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .targets-cards-inner {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .intro-stats-col {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .targets-section-header h2,
  .intro-text-col h2,
  .admission-header h2 {
    font-size: 1.6rem;
  }

  .target-card {
    padding: 2rem 1.5rem 1.5rem;
  }

  .target-card-desc {
    min-height: unset;
  }

  .admission-steps {
    flex-direction: column;
    align-items: center;
    gap: 0;
  }

  .admission-step {
    max-width: 340px;
    width: 100%;
    flex: none;
  }

  .admission-step-arrow {
    transform: rotate(90deg);
    padding-top: 0;
    padding: 0.25rem 0;
  }
}

@media (max-width: 480px) {
  .intro-stats-col {
    grid-template-columns: 1fr;
  }
}
