/* Brand Production Timeline Styles */

.timeline-container {
  position: relative;
}

.timeline-line {
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, rgba(0, 224, 164, 0.3), rgba(50, 213, 255, 0.3));
}

.timeline-line.rtl {
  left: auto;
  right: 20px;
}

.timeline-stage {
  position: relative;
  padding-left: 60px;
  margin-bottom: 32px;
  opacity: 0;
  animation: stageSlideIn 0.5s ease forwards;
}

.timeline-stage.rtl {
  padding-left: 0;
  padding-right: 60px;
  text-align: right;
  animation: stageSlideInRTL 0.5s ease forwards;
}

.timeline-dot {
  position: absolute;
  left: 12px;
  top: 8px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, #00E0A4, #32D5FF);
  box-shadow: 0 0 12px rgba(0, 224, 164, 0.6);
}

.timeline-dot.rtl {
  left: auto;
  right: 12px;
}

@keyframes stageSlideIn {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes stageSlideInRTL {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Duration badge RTL fix */
.timeline-duration {
  direction: ltr;
  unicode-bidi: isolate;
}

/* Location text - visually secondary */
.timeline-location {
  opacity: 0.7;
  font-size: 0.875rem;
}
