.follow-section {
  background: linear-gradient(135deg, #004aad, #00bcd4);
  min-height: 100vh;
  color: #fff;
  text-align: center;
  padding: 100px 20px;
  position: relative;
}

.follow-section .container {
  max-width: 1100px;
  margin: auto;
}

.page-title {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.page-title span {
  color: #ffcc00;
}

.intro-text {
  font-size: 1.1rem;
  margin-bottom: 50px;
  color: rgba(255,255,255,0.9);
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}

.social-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 40px 20px;
  transition: all 0.3s ease;
  text-decoration: none;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.social-card i {
  font-size: 2.5rem;
  margin-bottom: 15px;
  display: block;
}

.social-card h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
}

.social-card p {
  font-size: 1rem;
  color: rgba(255,255,255,0.8);
}

.social-card::after {
  content: "";
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,0.2);
  transition: 0.5s;
}

.social-card:hover::after {
  top: 0;
}

.social-card:hover {
  transform: translateY(-10px);
  background: rgba(255,255,255,0.2);
}

/* Platform colors */
.facebook i { color: #1877f2; }
.twitter i { color: #1da1f2; }
.instagram i { color: #e4405f; }
.tiktok i { color: #000000; }
.youtube i { color: #ff0000; }

@media (max-width: 768px) {
  .page-title { font-size: 2rem; }
  .social-card { padding: 30px 15px; }
}
.social-card {
  opacity: 0;
  transform: translateY(40px);
}

.social-card.visible {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.6s ease-out;
}
