/* Client Modal Overlay */
.client-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.client-modal-overlay.active { display: flex; }

.client-modal {
  background: #0b1020;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
  border-radius: 16px;
  width: min(900px, 92vw);
  max-height: 86vh;
  overflow: hidden;
}

.client-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.client-modal-header h3 {
  margin: 0;
  color: #fff;
  font-size: 1.25rem;
}

.client-modal-close {
  background: transparent;
  border: none;
  color: #fff;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}

.client-modal-body { padding: 16px 20px 20px; }

.client-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.client-gallery img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.08);
}

.client-social {
  margin-top: 14px;
  display: flex;
  gap: 12px;
}

.client-social a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12);
  color: #fff;
}

@media (max-width: 768px) {
  .client-gallery { grid-template-columns: repeat(2, 1fr); }
  .client-gallery img { height: 140px; }
}

@media (max-width: 480px) {
  .client-gallery { grid-template-columns: 1fr; }
  .client-gallery img { height: 180px; }
}
