/* ========== 客服联系区域样式 ========== */
.customer-service-section {
  width: 100%;
  min-height: 500px;
  background-size: cover;
  background-position: center;
  background-color: #e74c3c;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 40px;
  position: relative;
  margin: 0;
}

.customer-service-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(231, 76, 60, 0.9), rgba(192, 57, 43, 0.9));
  z-index: 1;
}

.service-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  width: 100%;
  text-align: center;
  color: #fff;
}

.service-header h2 {
  font-size: 28px;
  font-weight: normal;
  margin: 0 0 10px 0;
  letter-spacing: 2px;
}

.service-header h3 {
  font-size: 48px;
  font-weight: bold;
  margin: 0 0 20px 0;
  text-transform: uppercase;
  letter-spacing: 3px;
}

.service-header p {
  font-size: 18px;
  margin: 0 0 60px 0;
  opacity: 0.95;
}

/* 客服人员卡片 */
.service-agents {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

.agent-card {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 20px;
  padding: 40px 50px;
  min-width: 280px;
  transition: all 0.3s;
}

.agent-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.25);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.agent-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 5px solid #fff;
  margin-bottom: 20px;
  object-fit: cover;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.agent-card h4 {
  font-size: 24px;
  font-weight: bold;
  margin: 0 0 20px 0;
  text-transform: capitalize;
}

.skype-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 30px;
  background: #00aff0;
  color: #fff;
  text-decoration: none;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(0, 175, 240, 0.3);
}

.skype-link:hover {
  background: #0096d6;
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(0, 175, 240, 0.5);
}

.skype-icon {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

/* 响应式优化 */
@media screen and (max-width: 768px) {
  .customer-service-section {
    padding: 60px 20px;
    min-height: 400px;
  }
  
  .service-header h2 {
    font-size: 22px;
  }
  
  .service-header h3 {
    font-size: 32px;
  }
  
  .service-header p {
    font-size: 16px;
    margin-bottom: 40px;
  }
  
  .service-agents {
    gap: 30px;
  }
  
  .agent-card {
    padding: 30px 40px;
    min-width: 240px;
  }
  
  .agent-avatar {
    width: 100px;
    height: 100px;
  }
  
  .agent-card h4 {
    font-size: 20px;
  }
}

@media screen and (max-width: 480px) {
  .service-header h3 {
    font-size: 28px;
  }
  
  .agent-card {
    padding: 25px 30px;
    min-width: 200px;
  }
  
  .agent-avatar {
    width: 80px;
    height: 80px;
  }
  
  .skype-link {
    padding: 10px 25px;
    font-size: 14px;
  }
}
