/* ============================================
   About Page New Design - 关于我们页面新样式
   ============================================ */

/* ── Hero Section ────────────────────────────────────────── */
.about-hero-new {
  position: relative;
  height: 350px;
  margin-top: 80px;
  background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 50%, #1e40af 100%);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.about-hero-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.15) 0%, transparent 70%);
  pointer-events: none;
}

.about-hero-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.05) 0%, transparent 70%);
  pointer-events: none;
}

.about-hero-content {
  position: relative;
  z-index: 10;
  width: 100%;
  padding: 0 20px;
}

.about-hero-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  color: #fff;
}

.about-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: 28px;
}

.about-hero-title {
  font-size: 52px;
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: -1px;
  margin-bottom: 20px;
}

.about-hero-title span {
  font-weight: 700;
  color: #d4a853;
}

.about-hero-desc {
  font-size: 18px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  max-width: 700px;
  margin: 0 auto;
}

/* ── Clinic Intro Section ────────────────────────────────────────── */
.about-intro-new {
  padding: 100px 0;
  background: #fff;
}

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

.about-intro-text-new {
  order: 1;
}

.about-intro-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  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: #966f28;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.about-intro-title-new {
  font-size: 36px;
  font-weight: 700;
  color: #1a365d;
  margin-bottom: 24px;
  line-height: 1.3;
}

.about-intro-paragraph {
  font-size: 16px;
  line-height: 1.9;
  color: #64748b;
  margin-bottom: 20px;
}

.about-intro-stats {
  display: flex;
  gap: 40px;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid rgba(26, 54, 93, 0.1);
}

.about-intro-stat {
  text-align: center;
}

.about-intro-stat-number {
  font-size: 36px;
  font-weight: 700;
  color: #d4a853;
  line-height: 1;
  margin-bottom: 4px;
}

.about-intro-stat-label {
  font-size: 14px;
  color: #64748b;
  font-weight: 500;
}

.about-intro-image-new {
  order: 2;
  position: relative;
}

.about-intro-image-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 80px rgba(26, 54, 93, 0.15);
}

.about-intro-image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
}

.about-intro-image-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  padding: 12px 24px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.about-intro-image-badge span {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #1a365d;
}

.about-intro-image-badge small {
  font-size: 12px;
  color: #64748b;
}

/* ── Core Values Section ────────────────────────────────────────── */
.about-values-new {
  padding: 100px 0;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

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

.about-section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  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: #966f28;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.about-section-title-new {
  font-size: 40px;
  font-weight: 700;
  color: #1a365d;
  margin-bottom: 16px;
}

.about-section-subtitle {
  font-size: 18px;
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
}

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

.value-card-new {
  background: #fff;
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.4s ease;
  border: 1px solid rgba(26, 54, 93, 0.06);
}

.value-card-new:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(26, 54, 93, 0.1);
}

.value-icon-new {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(212, 168, 83, 0.15) 0%, rgba(232, 200, 120, 0.15) 100%);
  border: 1px solid rgba(212, 168, 83, 0.2);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 24px;
  color: #d4a853;
}

.value-card-new h3 {
  font-size: 20px;
  font-weight: 700;
  color: #1a365d;
  margin-bottom: 12px;
}

.value-card-new p {
  font-size: 15px;
  line-height: 1.7;
  color: #64748b;
}

/* ── Vision & Mission Section ────────────────────────────────────────── */
.about-vision-new {
  padding: 100px 0;
  background: #fff;
}

.vision-mission-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.vision-mission-card {
  background: linear-gradient(135deg, #f8fafc 0%, #fff 100%);
  border-radius: 24px;
  padding: 48px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(26, 54, 93, 0.06);
}

.vision-mission-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #d4a853 0%, #e8c878 100%);
}

.vision-mission-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #d4a853 0%, #e8c878 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #fff;
  margin-bottom: 24px;
}

.vision-mission-card h3 {
  font-size: 28px;
  font-weight: 700;
  color: #1a365d;
  margin-bottom: 16px;
}

.vision-mission-card p {
  font-size: 16px;
  line-height: 1.9;
  color: #64748b;
}

/* ── Promise Section ────────────────────────────────────────── */
.about-promise-new {
  padding: 100px 0;
  background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 100%);
  color: #fff;
}

.about-promise-new .about-section-title-new {
  color: #fff;
}

.about-promise-new .about-section-subtitle {
  color: rgba(255, 255, 255, 0.7);
}

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

.promise-card-new {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
}

.promise-card-new:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-5px);
}

.promise-number-new {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 48px;
  font-weight: 800;
  color: rgba(212, 168, 83, 0.2);
  line-height: 1;
}

.promise-icon-new {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(212, 168, 83, 0.2) 0%, rgba(232, 200, 120, 0.2) 100%);
  border: 1px solid rgba(212, 168, 83, 0.3);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #d4a853;
  margin: 0 auto 20px;
}

.promise-card-new h4 {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}

.promise-card-new p {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
}

/* ── Team Section ────────────────────────────────────────── */
.about-team-new {
  padding: 100px 0;
  background: #f8fafc;
}

.doctor-card-new {
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 25px 80px rgba(26, 54, 93, 0.1);
  display: grid;
  grid-template-columns: 400px 1fr;
}

.doctor-photo-area-new {
  position: relative;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.doctor-photo-wrapper {
  position: relative;
  width: 320px;
  height: 450px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(26, 54, 93, 0.2);
}

.doctor-photo-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.doctor-exp-badge-new {
  position: absolute;
  bottom: -15px;
  right: -15px;
  background: linear-gradient(135deg, #d4a853 0%, #e8c878 100%);
  color: #fff;
  padding: 16px 24px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(212, 168, 83, 0.3);
}

.doctor-exp-badge-new .exp-number {
  font-size: 32px;
  font-weight: 800;
  line-height: 1;
}

.doctor-exp-badge-new .exp-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.9;
}

.doctor-info-new {
  padding: 48px;
}

.doctor-role-new {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(212, 168, 83, 0.1);
  border: 1px solid rgba(212, 168, 83, 0.2);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  color: #966f28;
  margin-bottom: 16px;
}

.doctor-name-new {
  font-size: 36px;
  font-weight: 700;
  color: #1a365d;
  margin-bottom: 16px;
}

.doctor-credentials-new {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}

.doctor-credential-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: #f1f5f9;
  border-radius: 50px;
  font-size: 13px;
  color: #64748b;
}

.doctor-credential-tag i {
  color: #d4a853;
  font-size: 12px;
}

.doctor-bio-new {
  font-size: 16px;
  line-height: 1.9;
  color: #64748b;
  margin-bottom: 28px;
}

.doctor-bio-new p {
  margin-bottom: 16px;
}

.doctor-specialties-new {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.doctor-specialty-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: linear-gradient(135deg, rgba(212, 168, 83, 0.1) 0%, rgba(232, 200, 120, 0.1) 100%);
  border: 1px solid rgba(212, 168, 83, 0.2);
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  color: #966f28;
}

/* ── Responsive ────────────────────────────────────────── */
@media (max-width: 1200px) {
  .values-grid-new {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .promise-grid-new {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .doctor-card-new {
    grid-template-columns: 1fr;
  }
  
  .doctor-photo-area-new {
    padding: 60px;
  }
}

@media (max-width: 992px) {
  .about-hero-new {
    height: 350px;
  }
  
  .about-hero-title {
    font-size: 40px;
  }
  
  .about-intro-grid-new {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .about-intro-text-new {
    order: 2;
  }
  
  .about-intro-image-new {
    order: 1;
  }
  
  .vision-mission-grid {
    grid-template-columns: 1fr;
  }
  
  .about-section-title-new {
    font-size: 32px;
  }
}

@media (max-width: 768px) {
  .values-grid-new,
  .promise-grid-new {
    grid-template-columns: 1fr;
  }
  
  .about-intro-stats {
    flex-wrap: wrap;
    gap: 24px;
  }
  
  .doctor-photo-wrapper {
    width: 260px;
    height: 360px;
  }
  
  .doctor-info-new {
    padding: 32px;
  }
  
  .doctor-name-new {
    font-size: 28px;
  }
}
