/* === SGC ABOGADOS - HOVER ANIMATIONS === */

/* Enhancing Team Cards Hover */
.team-member {
  transition: transform 0.3s ease;
}

.team-member:hover {
  transform: translateY(-10px);
}

.team-member img {
  border: 7px solid #e9ecef;
  transition: border-color 0.3s ease;
}

.team-member:hover img {
  border-color: #4682B4;
}

/* Enhancing General Cards (Features & Contacts) Hover */
.card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 12px;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1) !important;
}

/* Hover effect on icons */
.fa-stack {
  transition: transform 0.3s ease;
}

.col-md-4:hover .fa-stack {
  transform: scale(1.1);
}

/* Floating Social Buttons smooth hover */
.social-btn {
  transition: transform 0.3s ease, background-color 0.3s ease;
}
.social-btn:hover {
  transform: scale(1.15) rotate(5deg);
}

/* Primary Button Hover (Hero section & Contact) */
.btn-primary {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.btn-primary:hover, .btn-primary:focus, .btn-primary:active {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(70, 130, 180, 0.4);
}

/* Subtle fade-in animation for sections */
.page-section {
  animation: fadeIn 1s ease-in-out;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
