/* ═══════════════════════════════════════════════════════════
   MGlobal Impex — "Our Brands" Stylesheet (Industrial-Tech theme)
   ═══════════════════════════════════════════════════════════ */

/* Main layout wrapper */
.brands-main {
  background: var(--c-bg);
  color: var(--c-text);
  overflow-x: hidden;
  position: relative;
}

/* Background grid accent */
.brands-main::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 10% 20%, rgba(0, 210, 255, 0.03) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(255, 211, 0, 0.02) 0%, transparent 40%);
  pointer-events: none;
  z-index: 1;
}

/* ══════════════════════════════════════════════════════════
   HERO SECTION
   ══════════════════════════════════════════════════════════ */
.brands-hero {
  position: relative;
  padding: 8rem 0 5rem;
  background: #0b1012; /* Deep Charcoal base */
  overflow: hidden;
  text-align: center;
}

.brands-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.25;
}

.brands-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(40%) contrast(110%);
}

.brands-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(11, 16, 18, 0.6) 0%, #0b1012 100%);
  z-index: 1;
}

.brands-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.brands-hero h1 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--c-text);
  margin-bottom: 1.5rem;
  letter-spacing: -0.5px;
}

.brands-hero h1 em {
  font-style: normal;
  background: linear-gradient(135deg, #00d2ff 0%, #0096ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.brands-hero .brands-lead {
  font-size: clamp(1rem, 1.25vw, 1.15rem);
  line-height: 1.75;
  color: var(--c-text-muted);
  font-weight: 400;
}

/* ══════════════════════════════════════════════════════════
   PARTNER NETWORK (LOGO GRID)
   ══════════════════════════════════════════════════════════ */
.brands-network {
  padding: 3rem 0;
  position: relative;
  z-index: 2;
  margin-top: -3rem;
}

.brands-network-card {
  background: rgba(18, 26, 29, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--c-glass-border);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.brands-network h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #00d2ff;
  margin-bottom: 2rem;
  text-align: center;
  font-weight: 600;
}

.brands-network-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}

.brand-logo-card {
  width: 170px;
  height: 85px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 1rem;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  cursor: default;
}

.brand-logo-card img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: grayscale(100%) opacity(0.6);
  transition: all 0.3s ease;
}

.brand-logo-card span {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--c-text-muted);
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.brand-logo-card:hover {
  transform: translateY(-5px);
  background: rgba(0, 210, 255, 0.03);
  border-color: rgba(0, 210, 255, 0.3);
  box-shadow: 0 10px 20px rgba(0, 210, 255, 0.1);
}

.brand-logo-card:hover img {
  filter: grayscale(0%) opacity(1);
}

.brand-logo-card:hover span {
  color: #00d2ff;
}

.brands-network-subtext {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.9rem;
  color: var(--c-text-muted);
  font-style: italic;
}

/* ══════════════════════════════════════════════════════════
   BRAND SPOTLIGHTS (ZIG-ZAG)
   ══════════════════════════════════════════════════════════ */
.spotlights-section {
  padding: 6rem 0;
  position: relative;
  z-index: 2;
}

.spotlights-section h2 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
}

.spotlights-section h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(to right, #00d2ff, transparent);
  margin: 1rem auto 0;
}

.spotlight-container {
  display: flex;
  flex-direction: column;
  gap: 7rem;
}

.spotlight-block {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 992px) {
  .spotlight-block {
    grid-template-columns: 1.1fr 1fr;
  }
  .spotlight-block:nth-child(even) {
    direction: rtl;
  }
  .spotlight-block:nth-child(even) .spotlight-info {
    direction: ltr;
  }
  .spotlight-block:nth-child(even) .spotlight-visual {
    direction: ltr;
  }
}

/* Visual wrapper */
.spotlight-visual {
  position: relative;
  background: rgba(18, 26, 29, 0.4);
  border: 1px solid var(--c-glass-border);
  border-radius: 20px;
  padding: 2.5rem;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.spotlight-visual:hover {
  border-color: rgba(0, 210, 255, 0.25);
  box-shadow: 0 20px 45px rgba(0, 210, 255, 0.08);
  transform: translateY(-3px);
}

/* Header inside spotlight visual containing the brand logo */
.spotlight-visual-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 1rem;
}

.spotlight-brand-logo {
  height: 45px;
  max-width: 140px;
  object-fit: contain;
}

.spotlight-badge {
  font-family: 'Outfit', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0.35rem 0.75rem;
  background: rgba(0, 210, 255, 0.1);
  border: 1px solid rgba(0, 210, 255, 0.2);
  color: #00d2ff;
  border-radius: 20px;
}

/* Product list showcase grid inside visual card */
.spotlight-products-showcase {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 1.25rem;
  margin-top: 0.5rem;
}

.spotlight-product-thumbnail {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  padding: 0.75rem;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.spotlight-product-thumbnail img {
  height: 90px;
  max-width: 100%;
  object-fit: contain;
  margin-bottom: 0.5rem;
  transition: transform 0.4s ease;
}

.spotlight-product-thumbnail span {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--c-text-muted);
  line-height: 1.3;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.spotlight-product-thumbnail:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.1);
}

.spotlight-product-thumbnail:hover img {
  transform: scale(1.08) translateY(-3px);
}

.spotlight-product-thumbnail:hover span {
  color: var(--c-text);
}

/* Info Column */
.spotlight-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.spotlight-category-eyebrow {
  font-family: 'Outfit', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #00d2ff;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
}

.spotlight-info h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--c-text);
  margin-bottom: 1.25rem;
}

.spotlight-info p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--c-text-muted);
  margin-bottom: 1.5rem;
}

.spotlight-bullet-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.spotlight-bullet-list li {
  font-size: 0.92rem;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--c-text-muted);
}

.spotlight-bullet-list li i {
  color: #00d2ff;
  margin-top: 3px;
  font-size: 0.85rem;
}

.spotlight-info .btn-wrap {
  display: flex;
  gap: 1rem;
}

/* ══════════════════════════════════════════════════════════
   CTA BANNER SECTION
   ══════════════════════════════════════════════════════════ */
.brands-cta-section {
  padding: 4rem 0;
  position: relative;
  z-index: 2;
}

.brands-cta-box {
  background: linear-gradient(135deg, rgba(18, 26, 29, 0.8) 0%, rgba(10, 16, 18, 0.9) 100%);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid var(--c-glass-border);
  border-radius: 20px;
  padding: 4rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}

.brands-cta-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 80% 20%, rgba(0, 210, 255, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(255, 211, 0, 0.05) 0%, transparent 40%);
  pointer-events: none;
}

.brands-cta-box h2 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: var(--c-text);
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 2;
}

.brands-cta-box p {
  font-size: 1.05rem;
  color: var(--c-text-muted);
  max-width: 600px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
  position: relative;
  z-index: 2;
}

.brands-cta-box .btn {
  position: relative;
  z-index: 2;
}

/* ══════════════════════════════════════════════════════════
   FAQ ACCORDION SECTION
   ══════════════════════════════════════════════════════════ */
.brands-faq-section {
  padding: 5rem 0 7rem;
  max-width: 860px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.brands-faq-section h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 3rem;
}

.brands-accordion {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.brands-acc-item {
  background: rgba(18, 26, 29, 0.4);
  border: 1px solid var(--c-glass-border);
  border-radius: 14px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.brands-acc-item.open {
  border-color: rgba(0, 210, 255, 0.3);
  box-shadow: 0 8px 25px rgba(0, 210, 255, 0.05);
}

.brands-acc-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.35rem 1.75rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  color: var(--c-text);
  font-family: 'Outfit', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  transition: color 0.2s;
}

.brands-acc-trigger:hover {
  color: #00d2ff;
}

.brands-acc-trigger i {
  color: #00d2ff;
  flex-shrink: 0;
  transition: transform 0.3s ease;
  font-size: 0.9rem;
}

.brands-acc-item.open .brands-acc-trigger i {
  transform: rotate(180deg);
}

.brands-acc-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 1.75rem;
}

.brands-acc-body p {
  font-size: 0.94rem;
  color: var(--c-text-muted);
  line-height: 1.75;
  padding-bottom: 1.5rem;
  margin: 0;
}

.brands-acc-item.open .brands-acc-body {
  max-height: 500px;
  /* padding remains controlled via transition */
}

