/* 服务页面样式 */

/* 服务页面横幅 */
.service-hero {
  padding: 180px 0 100px;
  position: relative;
  overflow: hidden;
  margin-top: 70px;
}

.service-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 60%);
}

.service-hero-social {
  background: linear-gradient(135deg, #dd1d4a 0%, #ff6b9d 100%);
}

.service-hero-leisure {
  background: linear-gradient(135deg, #48bb78 0%, #38a169 100%);
}

.service-hero-skills {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.service-hero-content {
  text-align: center;
  position: relative;
  z-index: 1;
}

.service-hero h1 {
  font-size: 56px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 24px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.service-hero-subtitle {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 48px;
  line-height: 1.6;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.service-hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  padding: 16px 40px;
  background: #ffffff;
  color: #dd1d4a;
  font-size: 16px;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.service-hero-leisure .btn-primary {
  color: #48bb78;
}

.service-hero-skills .btn-primary {
  color: #667eea;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  padding: 16px 40px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-3px);
}

/* 服务详情 */
.service-details {
  padding: 100px 0;
  background: #ffffff;
}

.service-items-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 56px;
}

.service-item {
  background: #ffffff;
  border-radius: 16px;
  padding: 40px 32px;
  border: 2px solid #f0f0f0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.service-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #dd1d4a, #ff6b9d);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.service-item:hover::before {
  transform: scaleX(1);
}

.service-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border-color: rgba(221, 29, 74, 0.2);
}

.service-item-icon {
  width: 72px;
  height: 72px;
  border-radius: 16px;
  background: linear-gradient(135deg, #dd1d4a 0%, #ff6b9d 100%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: all 0.3s ease;
}

.service-item:hover .service-item-icon {
  transform: scale(1.1) rotate(5deg);
}

.service-item-icon svg {
  width: 36px;
  height: 36px;
  stroke-width: 2.5;
}

.service-item h3 {
  font-size: 22px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 16px;
  line-height: 1.3;
}

.service-item > p {
  font-size: 15px;
  color: #5a6c7d;
  line-height: 1.7;
  margin-bottom: 24px;
}

.service-item-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.service-item-features li {
  font-size: 13px;
  color: #2c3e50;
  padding: 8px 16px;
  background: #f8f9fa;
  border-radius: 20px;
  transition: all 0.2s;
}

.service-item:hover .service-item-features li {
  background: #fff5f7;
  color: #dd1d4a;
}

/* 服务优势 */
.service-advantages {
  padding: 100px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.advantages-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 56px;
}

.advantage-item {
  position: relative;
  padding-left: 80px;
}

.advantage-number {
  position: absolute;
  left: 0;
  top: 0;
  width: 60px;
  height: 60px;
  border-radius: 12px;
  background: linear-gradient(135deg, #dd1d4a 0%, #ff6b9d 100%);
  color: #ffffff;
  font-size: 24px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(221, 29, 74, 0.3);
}

.advantage-item h3 {
  font-size: 20px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 12px;
}

.advantage-item p {
  font-size: 15px;
  color: #5a6c7d;
  line-height: 1.7;
}

/* 服务流程 */
.service-process {
  padding: 100px 0;
  background: #ffffff;
}

.process-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 56px;
  flex-wrap: wrap;
}

.process-step {
  flex: 0 0 200px;
  text-align: center;
}

.step-number {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, #dd1d4a 0%, #ff6b9d 100%);
  color: #ffffff;
  font-size: 28px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 8px 24px rgba(221, 29, 74, 0.3);
  transition: all 0.3s;
}

.process-step:hover .step-number {
  transform: scale(1.1);
  box-shadow: 0 12px 32px rgba(221, 29, 74, 0.4);
}

.process-step h3 {
  font-size: 18px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 12px;
}

.process-step p {
  font-size: 14px;
  color: #5a6c7d;
  line-height: 1.6;
}

.process-arrow {
  font-size: 32px;
  color: #dd1d4a;
  font-weight: 300;
  flex: 0 0 auto;
}

.process-cta {
  text-align: center;
  margin-top: 64px;
}

.btn-primary-large {
  display: inline-flex;
  align-items: center;
  padding: 18px 48px;
  background: linear-gradient(135deg, #dd1d4a 0%, #ff6b9d 100%);
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s;
  box-shadow: 0 8px 24px rgba(221, 29, 74, 0.4);
}

.btn-primary-large:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(221, 29, 74, 0.5);
  background: linear-gradient(135deg, #c11840 0%, #ee5a6f 100%);
}

/* 响应式设计 */
@media (max-width: 1024px) {
  .service-items-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .advantages-list {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .service-hero {
    padding: 140px 0 80px;
  }
  
  .service-hero h1 {
    font-size: 36px;
  }
  
  .service-hero-subtitle {
    font-size: 16px;
    margin-bottom: 32px;
  }
  
  .service-hero-actions {
    flex-direction: column;
    gap: 16px;
  }
  
  .btn-primary,
  .btn-secondary {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
  
  .service-details,
  .service-advantages,
  .service-process {
    padding: 60px 0;
  }
  
  .service-items-grid {
    gap: 20px;
  }
  
  .service-item {
    padding: 32px 24px;
  }
  
  .advantage-item {
    padding-left: 0;
    padding-top: 80px;
  }
  
  .advantage-number {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .advantage-item h3,
  .advantage-item p {
    text-align: center;
  }
  
  .process-steps {
    flex-direction: column;
    gap: 32px;
  }
  
  .process-arrow {
    transform: rotate(90deg);
  }
  
  .process-cta {
    margin-top: 48px;
  }
  
  .btn-primary-large {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .service-hero h1 {
    font-size: 28px;
  }
  
  .service-hero-subtitle {
    font-size: 14px;
  }
  
  .service-item-icon {
    width: 60px;
    height: 60px;
  }
  
  .service-item-icon svg {
    width: 30px;
    height: 30px;
  }
  
  .service-item h3 {
    font-size: 18px;
  }
  
  .advantage-number {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }
  
  .step-number {
    width: 56px;
    height: 56px;
    font-size: 24px;
  }
}
