/* Base Layout Helpers */
.fw-black {
  font-weight: 900 !important;
}
.tracking-tight {
  letter-spacing: -0.025em;
}
.tracking-tighter {
  letter-spacing: -0.05em;
}
.border-dashed {
  border: 2px dashed #dee2e6 !important;
}

/* Dynamic UI Micro-interactions */
.transition-all {
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.hover-translate:hover {
  transform: translateY(-5px);
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.075) !important;
  border-color: #4fc3f7 !important;
}

/* Entrance Animations */
.animate-fade-in-up {
  animation: fadeInUp 0.6s ease-out both;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Footer Navigation Micro-Interactions */
.hover-text-warning {
  transition: color 0.25s ease-in-out;
}
.hover-text-warning:hover {
  color: #ffc107 !important;
}

.hover-text-light {
  transition: color 0.25s ease-in-out;
}
.hover-text-light:hover {
  color: #ffffff !important;
}

/* Base structural transitions for the service cards */
.hover-animate-card {
  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);
  will-change: transform, box-shadow;
}

/* Hover active state transformation matrix */
.hover-animate-card:hover {
  transform: translateY(-8px); /* Lifts the card upwards gently */
  box-shadow: 0 1rem 3rem rgba(12, 35, 64, 0.15) !important; /* Deepens your corporate blue brand shadow */
}

/* Minor icon animation pop */
.hover-animate-card:hover .fas {
  transform: scale(1.1);
  transition: transform 0.2s ease;
}
