/* Modern Journey Section Styles */
.process-section {
  padding: 120px 0;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

.process-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 20% 20%,
      rgba(19, 142, 158, 0.08) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(19, 142, 158, 0.05) 0%,
      transparent 50%
    );
  pointer-events: none;
}

.journey-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

/* Enhanced Hero Section */
.journey-hero {
  text-align: center;
  margin-bottom: 100px;
}

.journey-hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.journey-badge {
  display: inline-block;
  background: #138e9e;
  color: white;
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(19, 142, 158, 0.3);
}

.journey-main-title {
  font-size: 4rem;
  font-weight: 800;
  color: #000000;
  margin-bottom: 24px;
  line-height: 1.1;
}

.brand-highlight {
  color: #138e9e;
}

.journey-description {
  font-size: 1.3rem;
  color: #666666;
  line-height: 1.7;
  margin: 0;
  font-weight: 400;
}

/* Modern Journey Container */
.journey-container {
  display: flex;
  flex-direction: column;
  gap: 60px;
  margin-bottom: 100px;
}

.journey-step {
  position: relative;
}

.step-wrapper {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 40px;
  align-items: start;
}

/* Step Indicator */
.step-indicator {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.step-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #138e9e;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.8rem;
  box-shadow: 0 8px 30px rgba(19, 142, 158, 0.4),
    inset 0 2px 4px rgba(255, 255, 255, 0.2);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 2;
}

.step-connector {
  width: 4px;
  height: 120px;
  background: #138e9e;
  border-radius: 2px;
  margin-top: 20px;
  opacity: 0.6;
}

.journey-step:last-child .step-connector {
  display: none;
}

/* Step Content */
.step-content {
  background: #ffffff;
  border: 1px solid #f0f0f0;
  border-radius: 24px;
  padding: 40px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.step-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(19, 142, 158, 0.03) 0%,
    rgba(19, 142, 158, 0.01) 100%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.journey-step:hover .step-content {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(19, 142, 158, 0.15),
    0 8px 20px rgba(0, 0, 0, 0.1);
  border-color: #138e9e;
}

.journey-step:hover .step-content::before {
  opacity: 1;
}

.journey-step:hover .step-circle {
  transform: scale(1.1);
  box-shadow: 0 12px 40px rgba(19, 142, 158, 0.6),
    inset 0 2px 4px rgba(255, 255, 255, 0.3);
}

.step-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.step-number {
  font-size: 1.1rem;
  font-weight: 800;
  color: #138e9e;
  opacity: 0.8;
}

.step-phase {
  font-size: 0.9rem;
  color: #138e9e;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.step-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #000000;
  margin-bottom: 16px;
  line-height: 1.3;
}

.step-description {
  font-size: 1.1rem;
  color: #666666;
  line-height: 1.7;
  margin-bottom: 30px;
}

/* Step Features */
.step-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 16px;
  margin-bottom: 32px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: rgba(19, 142, 158, 0.08);
  border-radius: 12px;
  border: 1px solid rgba(19, 142, 158, 0.2);
  transition: all 0.3s ease;
}

.feature-item:hover {
  background: rgba(19, 142, 158, 0.12);
  transform: translateY(-2px);
}

.feature-item i {
  color: #138e9e;
  font-size: 0.9rem;
}

.feature-item span {
  color: #000000;
  font-size: 0.9rem;
  font-weight: 500;
}

/* Step CTA Button */
.step-cta {
  background: #138e9e;
  color: white;
  border: none;
  padding: 14px 28px;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 15px rgba(19, 142, 158, 0.3);
}

.step-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(19, 142, 158, 0.4);
  background: #0f7a87;
}

.step-cta i {
  transition: transform 0.3s ease;
}

.step-cta:hover i {
  transform: translateX(4px);
}

/* Journey Progress Indicator */
.journey-progress {
  margin-top: 80px;
  text-align: center;
}

.progress-track {
  position: relative;
  height: 4px;
  background: rgba(19, 142, 158, 0.2);
  border-radius: 2px;
  margin-bottom: 20px;
  overflow: hidden;
}

.progress-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 25%;
  background: #138e9e;
  border-radius: 2px;
  transition: width 0.8s ease;
}

.progress-milestones {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 600px;
  margin: 0 auto;
}

.milestone {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.milestone-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(19, 142, 158, 0.3);
  border: 2px solid rgba(19, 142, 158, 0.5);
  transition: all 0.3s ease;
}

.milestone.active .milestone-dot {
  background: #138e9e;
  border-color: #138e9e;
  box-shadow: 0 0 12px rgba(19, 142, 158, 0.6);
}

.milestone-label {
  color: #666666;
  font-size: 0.9rem;
  font-weight: 500;
}

.milestone.active .milestone-label {
  color: #138e9e;
  font-weight: 600;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .journey-main-title {
    font-size: 3.2rem;
  }

  .step-wrapper {
    grid-template-columns: 100px 1fr;
    gap: 30px;
  }

  .step-circle {
    width: 70px;
    height: 70px;
    font-size: 1.6rem;
  }
}

@media (max-width: 768px) {
  .process-section {
    padding: 80px 0;
  }

  .journey-hero {
    margin-bottom: 60px;
  }

  .journey-main-title {
    font-size: 2.8rem;
  }

  .journey-description {
    font-size: 1.1rem;
  }

  .journey-container {
    gap: 40px;
  }

  .step-wrapper {
    grid-template-columns: 1fr;
    gap: 20px;
    text-align: center;
  }

  .step-indicator {
    flex-direction: row;
    justify-content: center;
  }

  .step-connector {
    width: 60px;
    height: 4px;
    margin-top: 0;
    margin-left: 20px;
  }

  .journey-step:last-child .step-connector {
    display: block;
  }

  .step-content {
    padding: 30px 24px;
  }

  .step-title {
    font-size: 1.8rem;
  }

  .step-features {
    grid-template-columns: 1fr;
  }

  .progress-milestones {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

@media (max-width: 480px) {
  .journey-main-title {
    font-size: 2.2rem;
  }

  .step-circle {
    width: 60px;
    height: 60px;
    font-size: 1.4rem;
  }

  .step-content {
    padding: 24px 20px;
  }

  .step-title {
    font-size: 1.6rem;
  }
}
