/**
 * PCTechComVn — Remote Section, Partners Strip & Showcase Mosaic CSS
 * Child Theme CSS Module
 * Version: 1.0.0
 *
 * 1. Remote 50K Section: Giới thiệu dịch vụ sửa từ xa (KHÁC với dock nổi)
 * 2. Partners Strip: Thanh logo đối tác kiểu pill
 * 3. Showcase Mosaic: Gallery ảnh dạng mosaic 3×2
 */

/* ═══════════════════════════════════════════════
   1. REMOTE 50K SECTION — Full-width content section
   ═══════════════════════════════════════════════ */
.remote-50k-section {
  background: linear-gradient(135deg, var(--blue-deeper), var(--blue-dark));
  color: var(--white);
  padding: 48px 0;
}

.remote-50k-section .section-title {
  color: var(--white);
}

.remote-50k-section .section-desc {
  color: rgba(255, 255, 255, 0.8);
}

.remote-50k-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

/* Compare cards (Sửa từ xa vs Tận nơi) */
.remote-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 24px 0;
}

.remote-compare-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-sm);
  padding: 20px;
}

.remote-compare-card.highlight {
  border-color: var(--orange);
  background: rgba(232, 135, 10, 0.15);
}

.remote-compare-card h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 10px;
}

.remote-compare-card ul {
  list-style: none;
  padding: 0;
}

.remote-compare-card li {
  padding: 5px 0;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.85);
}

.remote-compare-card li::before {
  content: '✓ ';
  color: var(--green);
  font-weight: 700;
}

.remote-compare-card.highlight li::before {
  color: var(--orange);
}

/* Issue chips */
.remote-issues {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0;
}

.remote-issue-chip {
  padding: 8px 14px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  font-size: 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
}


/* ═══════════════════════════════════════════════
   2. PARTNERS STRIP — Logo pill marquee
   ═══════════════════════════════════════════════ */
.partners-strip {
  background: var(--gray-50);
  padding: 28px 0;
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
  overflow: hidden;
}

.partners-track {
  display: flex;
  gap: 48px;
  animation: ticker 30s linear infinite;
  width: max-content;
}

.partner-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--blue-dark);
  opacity: 0.7;
  white-space: nowrap;
  padding: 8px 20px;
  background: var(--white);
  border-radius: 50px;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow);
  transition: opacity 0.3s, transform 0.3s;
}

.partner-logo:hover {
  opacity: 1;
  transform: scale(1.03);
}


/* ═══════════════════════════════════════════════
   3. SHOWCASE MOSAIC — Photo gallery grid
   ═══════════════════════════════════════════════ */
.showcase-mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 200px 200px;
  gap: 16px;
}

.showcase-mosaic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  transition: transform 0.4s, box-shadow 0.4s;
}

.showcase-mosaic img:hover {
  transform: scale(1.03);
  box-shadow: var(--shadow-lg);
}

.showcase-mosaic .mosaic-large {
  grid-row: span 2;
}


/* ═══════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .remote-50k-grid {
    grid-template-columns: 1fr;
  }

  .remote-compare {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .remote-50k-section {
    padding: 36px 0;
  }

  .remote-50k-grid {
    gap: 24px;
  }

  .remote-compare-card {
    padding: 16px;
  }

  .showcase-mosaic {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .showcase-mosaic .mosaic-large {
    grid-row: span 1;
  }

  .showcase-mosaic img {
    height: 200px;
  }

  .partner-logo {
    font-size: 0.85rem;
    padding: 6px 14px;
  }
}

@media (max-width: 480px) {
  .remote-issue-chip {
    font-size: 0.78rem;
    padding: 6px 10px;
  }

  .showcase-mosaic img {
    height: 160px;
  }
}
