/* Optimization CSS - Reduces inline styling and improves maintainability */

/* Common animation/visibility states */
.fade-in {
  opacity: 1;
  transform: none;
}

/* Button patterns */
.btn-base {
  transition: all 0.3s ease;
}

.btn-primary {
  background: linear-gradient(to right, #f97316, #ea580c);
  color: white;
  padding: 1rem 2rem;
  border-radius: 9999px;
  font-weight: 600;
  box-shadow: 0 10px 15px -3px rgba(249, 115, 22, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(to right, #ea580c, #dc2626);
  box-shadow: 0 20px 25px -5px rgba(249, 115, 22, 0.4);
}

.btn-secondary {
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: white;
  padding: 1rem 2rem;
  border-radius: 9999px;
  font-weight: 600;
  backdrop-filter: blur(4px);
}

.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

/* Card patterns */
.card-hover {
  transition: all 0.3s duration-300;
}

.card-hover:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.card-glass {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 1.5rem;
}

.card-glass:hover {
  background-color: rgba(255, 255, 255, 0.15);
}

/* Icon containers */
.icon-box {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.icon-box-small {
  width: 2rem;
  height: 2rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Grid utilities */
.grid-service {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

/* Text utilities */
.text-gradient-orange {
  background: linear-gradient(to right, #f97316, #ea580c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-gradient-blue {
  background: linear-gradient(to right, #3b82f6, #1e3a8a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Section spacing */
.section-padded {
  padding: 5rem 0;
}

/* Remove animation classes for lightweight styling */
.no-animation {
  animation: none !important;
  transition: none !important;
}

/* Utility for removing excessive inline styles */
.reset-inline {
  opacity: 1;
  transform: none;
}

svg.img-icon{stroke: red !important; fill: red; color: red;}