/* ===== MODERN CARDS ===== */
.modern-card {
  background: #ffffff;
  border: 1px solid var(--primary-light);
  border-top: 4px solid var(--primary);
  border-radius: var(--radius);
  transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.modern-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(123, 193, 232, 0.2);
}

.text-primary-icon {
  color: var(--primary);
  transition: transform 0.3s ease;
}

.modern-card:hover .text-primary-icon {
  transform: scale(1.15);
  color: var(--primary-dark);
}

.card-title-modern {
  color: var(--primary-dark);
  font-weight: 700;
  margin-bottom: 12px;
}

.card-text-modern {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.6;
}

.card-link-modern {
  color: var(--primary-dark);
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.3s ease;
  display: inline-block;
  margin-top: 15px;
}

.modern-card:hover .card-link-modern {
  color: var(--primary);
}

/* ===== MODERN SOCIAL LINKS ===== */
.social-links a {
  width: 45px !important;
  height: 45px !important;
  font-size: 1.3rem !important;
  background: rgba(123, 193, 232, 0.1) !important;
  border: 1px solid rgba(123, 193, 232, 0.3) !important;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), background 0.3s ease, box-shadow 0.3s ease !important;
}

.social-links a i {
  color: var(--primary-dark) !important;
  transition: color 0.3s ease !important;
}

.social-links a:hover {
  transform: translateY(-5px) scale(1.1) !important;
  background: var(--primary) !important;
  border-color: var(--primary) !important;
  box-shadow: 0 10px 20px rgba(123, 193, 232, 0.4) !important;
}

.social-links a:hover i {
  color: #ffffff !important;
}
