/* Unique Process Section Styles */

.process-unique-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  position: relative;
  overflow: hidden;
}

.process-unique-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #f4d03f, #f39c12, #f4d03f);
}

.process-unique-container {
  display: flex;
  flex-direction: column;
  gap: 40px;
  position: relative;
  z-index: 2;
}

.process-unique-item {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 40px;
  background: white;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.process-unique-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: linear-gradient(45deg, #f4d03f, #f39c12);
}

.process-unique-item:hover {
  transform: translateX(10px);
  box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.process-unique-item:nth-child(even) {
  flex-direction: row-reverse;
}

.process-unique-item:nth-child(even)::before {
  left: auto;
  right: 0;
}

.process-unique-item:nth-child(even):hover {
  transform: translateX(-10px);
}

.process-unique-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: linear-gradient(45deg, #f4d03f, #f39c12);
  color: #1a1a1a;
  border-radius: 50%;
  font-size: 32px;
  font-weight: 700;
  flex-shrink: 0;
}

.process-unique-content {
  flex: 1;
}

.process-unique-title {
  font-size: 24px;
  font-weight: 600;
  color: #333;
  margin-bottom: 15px;
}

.process-unique-description {
  font-size: 16px;
  line-height: 1.7;
  color: #666;
  margin: 0;
}

@media (max-width: 992px) {
  .process-unique-item,
  .process-unique-item:nth-child(even) {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
  
  .process-unique-item:nth-child(even)::before {
    left: 0;
    right: auto;
  }
  
  .process-unique-item:nth-child(even):hover {
    transform: translateY(-10px);
  }
  
  .process-unique-item:hover {
    transform: translateY(-10px);
  }
}

@media (max-width: 768px) {
  .process-unique-item {
    padding: 30px 20px;
  }
  
  .process-unique-number {
    width: 60px;
    height: 60px;
    font-size: 24px;
  }
  
  .process-unique-title {
    font-size: 20px;
  }
  
  .process-unique-description {
    font-size: 14px;
  }
}
