/* ── Social Wall ── */
.social-wall {
  max-width: 1140px;
  width: 100%;
  margin: 0 auto;
  padding: 24px 32px 72px;
  flex-shrink: 0;
}

.social-wall-header {
  text-align: center;
  margin-bottom: 32px;
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.social-card {
  position: relative;
  display: block;
  aspect-ratio: 1;
  overflow: hidden;
  background: #1a1a18;
  text-decoration: none;
}

.social-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease, filter 0.5s ease;
  filter: grayscale(30%) brightness(0.85);
}

.social-card:hover img {
  transform: scale(1.06);
  filter: grayscale(0%) brightness(1);
}

.social-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(23, 23, 21, 0.65);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.social-card:hover .social-card-overlay {
  opacity: 1;
}

.social-card-overlay svg {
  width: 32px;
  height: 32px;
}

.social-card-overlay span {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #52D4CC;
}

/* Platform badge — top-right corner */
.social-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 28px;
  height: 28px;
  opacity: 0.85;
  transition: opacity 0.2s;
}

.social-card:hover .social-badge {
  opacity: 0;
}

/* Follow row below grid */
.social-wall-cta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 24px;
}

.btn-social {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: 6px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.15s;
  border: 1px solid rgba(255,255,255,0.12);
  color: #f0f0f0;
  background: rgba(255,255,255,0.05);
}

.btn-social:hover {
  opacity: 0.85;
  transform: translateY(-1px);
}

.btn-social svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* ── Stagger animation ── */
.social-card {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.social-card.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Video cards */
.social-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease, filter 0.5s ease;
  filter: grayscale(30%) brightness(0.85);
}

.social-card:hover video {
  transform: scale(1.06);
  filter: grayscale(0%) brightness(1);
}

@media (max-width: 700px) {
  .social-grid { grid-template-columns: repeat(2, 1fr); }
  .social-card:nth-child(8) { display: none; }
}

@media (max-width: 420px) {
  .social-grid { grid-template-columns: 1fr; }
}

/* ── WhatsApp float button ── */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 200;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.4);
  transition: transform 0.2s, box-shadow 0.2s;
}
.whatsapp-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.5);
}
.whatsapp-float svg { width: 30px; height: 30px; }
