/* Non-critical CSS - loaded asynchronously after above-the-fold content */

/* Extended glassmorphic card styles */
.glass-card {
  backdrop-filter: blur(20px);
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 1rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease-out;
}

/* Enhanced hover effects */
.glass-card:hover {
  box-shadow: 0 32px 64px -12px rgba(0, 0, 0, 0.4);
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-4px);
}

.btn-cta:hover {
  box-shadow: 0 12px 40px rgba(37, 150, 190, 0.4);
  background: linear-gradient(135deg, #3bb5e0 0%, #2596be 100%);
  transform: scale(1.05);
}

.btn-cta:active {
  transform: scale(0.95);
}

.btn-cta:focus {
  box-shadow: 0 0 0 4px rgba(37, 150, 190, 0.3);
}

/* Card hover effects */
.card-hover {
  transition: all 0.5s ease-out;
}

.card-hover:hover {
  transform: scale(1.05) translateY(-8px);
  box-shadow: 0 32px 64px -12px rgba(0, 0, 0, 0.4);
}

/* Service icon animations */
.service-icon {
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  padding: 1rem;
  transition: all 0.3s ease-out;
}

.service-icon:hover {
  background: rgba(255, 255, 255, 0.8);
  transform: scale(1.1);
  backdrop-filter: blur(15px);
}

/* Animations */
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

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

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.animate-float {
  animation: float 3s ease-in-out infinite;
}

.animate-fadeInUp {
  animation: fadeInUp 0.6s ease-out;
}

.animate-slideInRight {
  animation: slideInRight 0.6s ease-out;
}