/**
 * Steps Process Block Styles
 * Updated to "Dark Background Image" Style - No Parallax + Vertical Lines
 */

.steps-process-block {
  margin-bottom: 4rem;
  padding: 6rem 1.5rem;

  /* Dark Background & Overlay - Fallback */
  background-color: #222;
  background-image: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)),
    url("https://images.unsplash.com/photo-1516321318423-f06f85e504b3?auto=format&fit=crop&w=1920&q=80");
  background-size: cover;
  background-position: center;
  /* Note: background-image can be overridden via inline style from ACF field */

  /* Force full viewport width */
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);

  /* CSS Counter Setup */
  counter-reset: step-counter;
}

.steps-process-block .steps-section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 4rem;
  line-height: 1.2;
  text-align: left;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.steps-process-block .steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  max-width: 1380px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .steps-process-block .steps-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
  }
}

.steps-process-block .step-card {
  background-color: transparent !important;
  padding: 0 0 0 2rem; /* Add left padding for spacing from the line */
  border: none;
  box-shadow: none;
  display: flex;
  flex-direction: column;
  position: relative;

  /* Vertical Decoration Line */
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  transition: border-left-color 0.3s ease;
}

/* Highlight the line on hover for interactivity */
.steps-process-block .step-card:hover {
  border-left-color: #ff6a13;
}

/* "STEP X" label */


.steps-process-block .step-title {
  color: #ff6a13;
  font-weight: 700;
  font-size: 1.25rem;
  text-transform: uppercase;
  margin-bottom: 1rem;
  line-height: 1.4;
}

.steps-process-block .step-description {
  color: #e2e8f0;
  font-size: 1rem;
  line-height: 1.7;
  font-weight: 400;
}

/* Urgency & CTA */
.steps-process-block .steps-urgency-text {
  font-size: 1.125rem;
  font-weight: 600;
  color: #ff6a13;
  margin-top: 4rem;
  margin-bottom: 2rem;
  text-align: center;
}

.steps-process-block .steps-cta-wrapper {
  text-align: center;
}

.steps-process-block .steps-cta-button {
  display: inline-block;
  background-color: #ff6a13;
  color: white;
  font-weight: 700;
  font-size: 1.125rem;
  padding: 1rem 3rem;
  border-radius: 0.375rem;
  text-decoration: none;
  transition: background-color 0.2s, transform 0.2s;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.steps-process-block .steps-cta-button:hover {
  background-color: #e55a0a;
  transform: translateY(-2px);
}
