/* Service Timeline Styles */
.timeline-section {
  background-color: #f2f2f2;
  padding: 60px 0;
  position: relative;
}

.timeline-title {
  color: #d9a256;
  font-size: 42px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 50px;
  position: relative;
  display: inline-block;
}

.timeline-title::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 0;
  width: 100px;
  height: 2px;
  background-color: #d9a256;
}

.timeline-process {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 50px 0;
}

.timeline-step {
  text-align: center;
}

.timeline-step-number {
  font-size: 16px;
  font-weight: 600;
  color: #d9a256;
  margin-bottom: 5px;
}

.timeline-step-title {
  font-size: 18px;
  font-weight: 700;
  color: #d9a256;
  text-transform: uppercase;
}

.timeline-arrow {
  color: #d9a256;
  font-size: 28px;
  margin: 0 -5px;
}

.timeline-images {
  display: flex;
  gap: 20px;
  margin-top: 40px;
}

.timeline-image-main {
  flex: 2;
  overflow: hidden;
  border-radius: 4px;
}

.timeline-image-secondary {
  flex: 1;
  overflow: hidden;
  border-radius: 4px;
}

.timeline-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Overlay effect for images */
.image-overlay {
  position: relative;
}

.image-overlay::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, rgba(217, 162, 86, 0.3), rgba(217, 162, 86, 0.1));
  pointer-events: none;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .timeline-process {
    flex-direction: column;
    gap: 15px;
  }
  
  .timeline-step {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
  }
  
  .timeline-arrow {
    transform: rotate(90deg);
    margin: 5px 0;
  }
  
  .timeline-images {
    flex-direction: column;
  }
  
  .timeline-title {
    font-size: 32px;
  }
}

@media (max-width: 576px) {
  .timeline-title {
    font-size: 28px;
  }
  
  .timeline-step-title {
    font-size: 16px;
  }
}
