/* Social Proof Section - 社會證明區塊 */

.social-proof-section {
  background: linear-gradient(135deg, rgba(0, 245, 255, 0.05), rgba(123, 102, 255, 0.05));
  padding: 5rem 2rem;
}

/* 客戶見證 */
.testimonials-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2rem;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 40px rgba(0, 245, 255, 0.2);
}

.testimonial-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.testimonial-header i {
  font-size: 2rem;
  color: var(--primary);
  opacity: 0.6;
}

.testimonial-rating {
  display: flex;
  gap: 0.25rem;
}

.testimonial-rating i {
  color: #ffd700;
  font-size: 1rem;
}

.testimonial-text {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  color: var(--light);
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.author-info strong {
  display: block;
  color: var(--primary);
  margin-bottom: 0.25rem;
}

.author-info span {
  font-size: 0.9rem;
  opacity: 0.7;
}

/* 合作夥伴 Logo 牆 */
.partners-section {
  margin-top: 5rem;
  text-align: center;
}

.partners-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 2rem;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.partners-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.partner-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  min-width: 120px;
}

.partner-logo:hover {
  transform: scale(1.1);
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--primary);
}

.partner-logo i {
  font-size: 2.5rem;
  color: var(--primary);
}

.partner-logo span {
  font-size: 0.9rem;
  color: var(--light);
  opacity: 0.8;
}

.partners-note {
  font-size: 1rem;
  color: var(--light);
  opacity: 0.7;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

.partners-note i {
  color: var(--primary);
  margin-right: 0.5rem;
}

/* 響應式設計 */
@media (max-width: 768px) {
  .testimonials-container {
    grid-template-columns: 1fr;
  }
  
  .partners-logos {
    gap: 1rem;
  }
  
  .partner-logo {
    min-width: 100px;
    padding: 1rem;
  }
  
  .partner-logo i {
    font-size: 2rem;
  }
}
