/* luxury-small-group-travel-4.css — вынесено из inline <style> компонента view/luxury-small-group-travel.php */
.service-booking-process {
  padding: 100px 0;
  background: linear-gradient(135deg, #ffffff 0%, #f8f8f8 100%);
  position: relative;
  overflow: hidden;
}

.service-booking-process::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('/images/dots-pattern.png');
  opacity: 0.05;
  pointer-events: none;
}

.service-booking-container {
  margin: 60px auto 0;
  position: relative;
  z-index: 1;
}

.service-booking-step {
  display: flex;
  margin-bottom: 50px;
}

.service-booking-step:last-child {
  margin-bottom: 0;
}

.service-step-indicator {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-right: 30px;
}

.service-step-number {
  width: 70px;
  height: 70px;
  background-color: #9A8866;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(154, 136, 102, 0.3);
  position: relative;
  z-index: 2;
}

.service-step-connector {
  width: 3px;
  flex-grow: 1;
  background-color: rgba(154, 136, 102, 0.3);
  margin: 10px 0;
  position: relative;
  z-index: 1;
}

.service-step-content {
  background-color: white;
  padding: 30px 35px;
  border-radius: 10px;
  flex-grow: 1;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  position: relative;
  transition: transform 0.3s ease;
}

.service-step-content:hover {
  transform: translateY(-5px);
}

.service-step-content::before {
  content: '';
  position: absolute;
  left: -10px;
  top: 30px;
  width: 20px;
  height: 20px;
  background-color: white;
  transform: rotate(45deg);
  box-shadow: -5px 5px 10px rgba(0, 0, 0, 0.05);
  z-index: -1;
}

.service-step-content h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #333;
}

.service-step-content p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #666;
  margin: 0;
}

@media (max-width: 991px) {
  .service-booking-process {
    padding: 70px 0;
  }
  
  .service-step-number {
    width: 60px;
    height: 60px;
    font-size: 24px;
  }
  
  .service-step-content {
    padding: 25px 30px;
  }
  
  .service-step-content h3 {
    font-size: 20px;
  }
}

@media (max-width: 767px) {
  .service-booking-process {
    padding: 30px 0;
  }
  
  .service-booking-step {
    flex-direction: column;
    margin-bottom: 40px;
  }
  
  .service-step-indicator {
    flex-direction: row;
    margin-right: 0;
    margin-bottom: 20px;
    justify-content: flex-start;
  }
  
  .service-step-number {
    width: 50px;
    height: 50px;
    font-size: 20px;
    margin-right: 20px;
  }
  
  .service-step-connector {
    width: auto;
    height: 3px;
    flex-grow: 1;
    margin: 0;
  }
  
  .service-step-content::before {
    display: none;
  }
}
