/**
 * Flame Logistics - Services Page Specific Styles
 */

/* Service card shadow */
.services-card-shadow {
  box-shadow: 0 10px 40px -10px rgba(9, 0, 93, 0.05);
}

.services-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px -12px rgba(9, 0, 93, 0.12);
}

/* Glass header for services */
.services-glass-header {
  background: rgba(252, 248, 255, 0.9);
  backdrop-filter: blur(12px);
}

/* Process step connector */
.services-process-step::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -50%;
  width: 100%;
  height: 2px;
  background: repeating-linear-gradient(to right, #777682 0, #777682 5px, transparent 5px, transparent 10px);
  z-index: 0;
}

.services-process-step:last-child::after {
  display: none;
}

/* Keep the services hero stats block left-aligned */
.services-stats-grid {
  max-width: 360px;
  margin-right: auto;
  justify-items: start;
}
