
/* Work Process Section */
.workflow-section {
  background: #f9fafb;
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

/* Header Section */
.workflow-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 3rem;
  gap: 2rem;
}

/* Tag line */
.workflow-header .tag-line {
  display: flex;
  align-items: center;
  flex: 1;
}

.workflow-header .tag-line .line {
  width: 50px;
  height: 3px;
  background-color: var(--color-green);
  border-radius: 2px;
  margin-right: 0.6rem;
}

.workflow-header .tag-line .text {
  color: var(--color-green);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.9rem;
}

/* Intro text */
.workflow-intro {
  flex: 3;
}

.workflow-intro h2 {
  font-size: 2.3rem;
  font-weight: 700;
  color: var(--color-slate);
  margin-bottom: 1rem;
}

.workflow-intro p {
  color: #555;
  font-size: 1rem;
  line-height: 1.7;
  max-width: 600px;
}

/* Steps Section */
.workflow-steps {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  text-align: center;
  position: relative;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.step {
  flex: 1;
  min-width: 200px;
  transition: all 0.4s ease;
}

.step .circle {
  width: 60px;
  height: 60px;
  background-color: #e5e7eb;
  border-radius: 50%;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  color: #333;
  transition: all 0.4s ease;
}

.step.active .circle {
  background-color: var(--color-green);
  color: #fff;
  box-shadow: 0 8px 15px rgba(34, 197, 94, 0.2);
}

.step h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--color-slate);
}

.step p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
}

/* Progress Bar */
.progress-bar {
  position: relative;
  width: 100%;
  height: 6px;
  background-color: #e5e7eb;
  border-radius: 10px;
  overflow: hidden;
}

.progress {
  position: absolute;
  height: 6px;
  background-color: var(--color-green);
  width: 0;
  transition: width 1.5s ease-in-out;
  border-radius: 10px;
}

/* Responsive */
@media (max-width: 992px) {
  .workflow-header {
    flex-direction: column;
    text-align: left;
  }

  .workflow-steps {
    flex-direction: column;
    align-items: center;
  }

  .progress-bar {
    display: none;
  }
}
