/* ============================================
   Professional Icons Library
   ============================================ */

/* Icon Base Styles */
.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Hero Badge Icon - Sparkle/Star */
.icon-sparkle {
  width: 24px;
  height: 24px;
}

.icon-sparkle svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
  filter: drop-shadow(0 0 8px rgba(99, 102, 241, 0.5));
}

/* Feature Icons */
.feature-icon {
  width: 64px;
  height: 64px;
  padding: 12px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
  border: 1px solid rgba(99, 102, 241, 0.2);
  transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.2) 0%, rgba(139, 92, 246, 0.2) 100%);
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 8px 24px rgba(99, 102, 241, 0.3);
}

.feature-icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

/* Service Icons */
.service-icon {
  width: 120px;
  height: 120px;
  padding: 20px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(236, 72, 153, 0.1) 100%);
  border: 2px solid rgba(99, 102, 241, 0.2);
}

.service-icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.5;
}

/* Solution Icons */
.solution-icon {
  width: 64px;
  height: 64px;
  padding: 12px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
  border: 1px solid rgba(99, 102, 241, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  transition: all 0.3s ease;
}

.solution-card:hover .solution-icon {
  transform: translateY(-4px) rotate(5deg);
  box-shadow: 0 8px 24px rgba(99, 102, 241, 0.3);
}

/* Contact Icons */
.contact-icon {
  width: 56px;
  height: 56px;
  padding: 12px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
  border: 1px solid rgba(99, 102, 241, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

/* Animated Icons */
@keyframes iconPulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.8;
  }
}

.icon-animated {
  animation: iconPulse 2s ease-in-out infinite;
}

/* Icon Gradients */
.icon-gradient {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
