/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   SECTION 6: CLIENT LOGOS CSS
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.clients-section {
  position: relative;
  padding: 80px 20px;
  background-color: #0a0a0a;
  color: #ffffff;
  text-align: center;
  overflow: hidden;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.clients-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at center, rgba(30,30,30,0.5) 0%, #0a0a0a 70%);
  pointer-events: none;
  z-index: 0;
}

.clients-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.clients-header {
  margin-bottom: 50px;
}

.clients-title {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  margin-bottom: 15px;
  font-weight: 700;
}

.clients-subtitle {
  font-family: 'Inter', sans-serif;
  color: #a0a0a0;
  font-size: 1.1rem;
}

.clients-marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 15px 0;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.clients-track {
  display: flex;
  width: max-content;
  animation: scroll 30s linear infinite;
}

.clients-marquee-reverse .clients-track {
  animation: scroll-reverse 30s linear infinite;
}

.clients-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 20px 40px;
  margin: 0 15px;
  background-color: rgba(20, 20, 20, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  min-width: 180px;
  color: #666;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.clients-logo:hover {
  background-color: rgba(30, 30, 30, 0.9);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes scroll-reverse {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

.clients-bottom-text {
  margin-top: 50px;
  font-family: 'Inter', sans-serif;
  color: #888;
  font-size: 1rem;
}

.clients-bottom-text span {
  color: #fff;
  font-weight: 600;
}

/* Animations */
.clients-section [data-animate] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.clients-section [data-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.clients-section [data-animate="fade-up"] {
  /* default fade up */
}

.clients-section [data-delay="200"] {
  transition-delay: 200ms;
}

.clients-section [data-delay="300"] {
  transition-delay: 300ms;
}

.clients-section [data-delay="400"] {
  transition-delay: 400ms;
}

@media (max-width: 768px) {
  .clients-title { font-size: 2.2rem; }
  .clients-logo { min-width: 140px; padding: 15px 25px; }
}
