/* ==============================
   BRAND LOGOS SECTION
   ============================== */

.brands-section {
  background: #0f1c24;
  padding: 60px 0;
}

.brands-label {
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 40px;
}

.brands-slider {
  overflow: hidden;
  position: relative;
}

.brands-track {
  display: flex;
  gap: 60px;
  align-items: center;
  animation: scrollBrands 20s linear infinite;
  width: max-content;
}

.brand-name {
  font-size: 22px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.25);
  letter-spacing: 3px;
  text-transform: uppercase;
  flex-shrink: 0;
  transition: color 0.3s ease;
  white-space: nowrap;
}

.brand-name:hover {
  color: #c9a84c;
}

@keyframes scrollBrands {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.brand-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  text-decoration: none;
}

.brand-logo img {
  width: 120px;
  height: 60px;
  object-fit: contain;
  background: #fff;
  border-radius: 10px;
  padding: 8px 14px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.brand-logo:hover img {
  transform: scale(1.08);
  box-shadow: 0 4px 16px rgba(255,255,255,0.15);
}

@media (max-width: 767px) {
  .brands-track {
    gap: 40px;
  }
  .brand-logo img {
    width: 90px;
    height: 45px;
  }
}
