/* 高端咨询模块 - 简约现代专业风格 */
.premium-consultation-section {
  background: linear-gradient(120deg, #1a1a1a, #2c3e50);
  padding: 100px 0;
  color: #fff;
  position: relative;
  overflow: hidden;
}

/* 背景装饰元素 */
.premium-consultation-section::before {
  content: '';
  position: absolute;
  top: -15%;
  right: -15%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(255,255,255,0.02) 0%, rgba(255,255,255,0) 70%);
  z-index: 1;
}

.premium-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
  position: relative;
  z-index: 10;
}

.consultation-grid {
  display: flex;
  gap: 60px;
  align-items: center;
}

/* 左侧内容区域 */
.consultation-content {
  flex: 1;
  max-width: 500px;
}

.section-indicator {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}

.indicator-line {
  width: 40px;
  height: 2px;
  background-color: #3498db;
  margin-right: 15px;
}

.indicator-text {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #3498db;
  font-weight: 600;
}

.content-heading {
  font-size: 42px;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 30px;
  color: #ffffff;
  letter-spacing: -0.5px;
}

.content-description {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 40px;
  font-weight: 300;
}

.service-list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.service-list li {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
}

.dot {
  width: 8px;
  height: 8px;
  background-color: #3498db;
  border-radius: 50%;
  margin-right: 15px;
  flex-shrink: 0;
}

/* 右侧表单区域 */
.consultation-form-container {
  flex: 1;
}

.form-card {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 50px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-card h3 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 30px;
  text-align: center;
  color: #ffffff;
}

.el-form-item {
  margin-bottom: 25px;
}

.el-input__inner,
.el-select .el-input__inner {
  background-color: rgba(255, 255, 255, 0.08);
  border: none;
  height: 55px;
  border-radius: 12px;
  color: #ffffff;
  font-size: 16px;
  transition: all 0.3s ease;
  padding-left: 50px;
}

.el-input__inner::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.el-input__inner:focus {
  background-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 0 2px rgba(52, 152, 219, 0.4);
}

.el-input__prefix {
  left: 15px;
}

.el-input__prefix i {
  color: #3498db;
  font-size: 20px;
}

.el-select {
  width: 100%;
}

.premium-submit {
  width: 100%;
  height: 55px;
  background: linear-gradient(90deg, #3498db, #2980b9);
  border: none;
  border-radius: 12px;
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(52, 152, 219, 0.3);
}

.premium-submit i {
  margin-left: 10px;
  transition: transform 0.3s ease;
}

.premium-submit:hover {
  background: linear-gradient(90deg, #2980b9, #3498db);
  box-shadow: 0 15px 30px rgba(52, 152, 219, 0.4);
}

.premium-submit:hover i {
  transform: translateX(5px);
}

.form-divider {
  display: flex;
  align-items: center;
  margin: 40px 0;
}

.divider-line {
  flex: 1;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.1);
}

.divider-text {
  padding: 0 15px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
}

.direct-contact {
  text-align: center;
}

.contact-method {
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 30px;
  transition: all 0.3s ease;
}

.contact-method:hover {
  background-color: rgba(255, 255, 255, 0.12);
  transform: translateY(-2px);
}

.contact-method i {
  font-size: 20px;
  color: #3498db;
  margin-right: 10px;
}

.contact-method span {
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
}

/* 响应式调整 */
@media (max-width: 1024px) {
  .premium-consultation-section {
    padding: 80px 0;
  }
  
  .consultation-grid {
    gap: 40px;
  }
  
  .content-heading {
    font-size: 36px;
  }
}

@media (max-width: 768px) {
  .consultation-grid {
    flex-direction: column;
    gap: 60px;
  }
  
  .consultation-content {
    max-width: 100%;
    text-align: center;
  }
  
  .section-indicator {
    justify-content: center;
  }
  
  .service-list li {
    justify-content: center;
  }
  
  .content-heading br {
    display: none;
  }
  
  .form-card {
    padding: 40px 30px;
  }
}

@media (max-width: 480px) {
  .premium-consultation-section {
    padding: 60px 0;
  }
  
  .content-heading {
    font-size: 32px;
  }
  
  .content-description {
    font-size: 16px;
  }
  
  .service-list li {
    font-size: 16px;
  }
  
  .form-card h3 {
    font-size: 24px;
  }
} 
 