/* ============================================
   TIMELINE JOURNEY STYLES
   ============================================ */

/* Container */
.timeline-container {
  min-height: 100vh;
  background: linear-gradient(to bottom, #f0f4f8 0%, #d9e2ec 100%);
  padding: 120px 20px 60px;
}

/* Header */
.timeline-header {
  text-align: center;
  margin-bottom: 50px;
}

.timeline-header h1 {
  font-family: 'Gotham', sans-serif;
  font-size: 56px;
  font-weight: 900;
  color: #003678;
  margin: 0 0 15px 0;
  letter-spacing: -1px;
}

.timeline-header p {
  font-family: 'Inter', sans-serif;
  font-size: 22px;
  color: #6c757d;
  margin: 0;
}

/* Timeline */
.timeline {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  padding: 20px 0;
}

/* Vertical Line */
.timeline-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 4px;
  background: #F9AD28;
  transform: translateX(-50%);
  box-shadow: 0 0 10px rgba(249, 173, 40, 0.3);
}

/* Timeline Start Marker */
.timeline-line::before {
  content: '✈';
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 50px;
  background: #003678;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: white;
  box-shadow: 0 4px 16px rgba(0, 54, 120, 0.3);
  border: 4px solid white;
}

/* Timeline End Marker */
.timeline-line::after {
  content: '✈';
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%) scaleX(-1);
  width: 50px;
  height: 50px;
  background: #003678;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: white;
  box-shadow: 0 4px 16px rgba(0, 54, 120, 0.3);
  border: 4px solid white;
}

/* Timeline Item */
.timeline-item {
  position: relative;
  margin-bottom: 60px;
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.timeline-item.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Dot on timeline */
.timeline-dot {
  position: absolute;
  top: 30px;
  left: 50%;
  width: 24px;
  height: 24px;
  background: #F9AD28;
  border: 4px solid white;
  border-radius: 50%;
  transform: translateX(-50%);
  z-index: 10;
  box-shadow: 0 0 0 4px rgba(249, 173, 40, 0.2);
  transition: all 0.3s ease;
}

.timeline-item.visible .timeline-dot {
  animation: pulse-dot 2s ease-out infinite;
}

@keyframes pulse-dot {
  0%, 100% {
    box-shadow: 0 0 0 4px rgba(249, 173, 40, 0.2);
  }
  50% {
    box-shadow: 0 0 0 12px rgba(249, 173, 40, 0);
  }
}

/* Content Card */
.timeline-content {
  width: 47%;
  background: white;
  border-radius: 16px;
  padding: 25px;
  box-shadow: 0 10px 40px rgba(0, 54, 120, 0.15);
  position: relative;
  transition: all 0.3s ease;
}

.timeline-item:hover .timeline-content {
  box-shadow: 0 15px 50px rgba(0, 54, 120, 0.25);
}

/* Right side items */
.timeline-item.right .timeline-content {
  margin-left: 53%;
}

/* Left side items */
.timeline-item.left .timeline-content {
  margin-left: 0;
}

/* Arrow pointing to timeline */
.timeline-content::before {
  content: '';
  position: absolute;
  top: 30px;
  width: 0;
  height: 0;
  border-style: solid;
}

.timeline-item.right .timeline-content::before {
  left: -15px;
  border-width: 15px 15px 15px 0;
  border-color: transparent white transparent transparent;
}

.timeline-item.left .timeline-content::before {
  right: -15px;
  border-width: 15px 0 15px 15px;
  border-color: transparent transparent transparent white;
}

/* Badge */
.timeline-badge {
  display: inline-block;
  background: linear-gradient(135deg, #F9AD28 0%, #f39c12 100%);
  color: white;
  padding: 8px 20px;
  border-radius: 20px;
  font-family: 'Gotham', sans-serif;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 15px;
  box-shadow: 0 4px 12px rgba(249, 173, 40, 0.3);
}

.timeline-content h3 {
  font-family: 'Gotham', sans-serif;
  font-size: 36px;
  font-weight: 900;
  color: #003678;
  margin: 0 0 8px 0;
}

.timeline-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #6c757d;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin: 0 0 20px 0;
}

/* Image */
.timeline-image {
  width: 100%;
  height: 280px;
  background-size: cover;
  background-position: center;
  border-radius: 12px;
  margin-bottom: 18px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.timeline-item:hover .timeline-image {
  transform: scale(1.02);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* List */
.timeline-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.timeline-content li {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 1.7;
  color: #495057;
  padding-left: 22px;
  position: relative;
  margin-bottom: 8px;
}

.timeline-content li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: #F9AD28;
  font-weight: 700;
  font-size: 16px;
}

/* Responsive */
@media (max-width: 1024px) {
  .timeline-header h1 {
    font-size: 48px;
  }

  .timeline-content {
    width: 47%;
  }

  .timeline-item.right .timeline-content {
    margin-left: 53%;
  }
}

@media (max-width: 768px) {
  .timeline-container {
    padding: 120px 15px 100px;
  }

  .timeline-header h1 {
    font-size: 36px;
  }

  .timeline-header p {
    font-size: 18px;
  }

  .timeline-line {
    left: 33px;
  }

  .timeline-dot {
    left: 33px;
    top: 35px;
  }

  .timeline-item.right .timeline-content,
  .timeline-item.left .timeline-content {
    width: calc(100% - 55px);
    margin-left: 55px;
  }

  .timeline-content::before {
    left: -15px !important;
    right: auto !important;
    border-width: 15px 15px 15px 0 !important;
    border-color: transparent white transparent transparent !important;
  }

  .timeline-content h3 {
    font-size: 28px;
  }

  .timeline-image {
    height: 200px;
  }
}

@media (max-width: 480px) {
  .timeline-container {
    padding: 100px 10px 80px;
  }

  .timeline-header h1 {
    font-size: 28px;
  }

  .timeline-header p {
    font-size: 16px;
  }

  .timeline-header {
    margin-bottom: 50px;
  }

  .timeline-item {
    margin-bottom: 60px;
  }

  .timeline-content {
    padding: 20px;
    width: calc(100% - 40px);
    margin-left: 40px;
  }

  .timeline-line {
    left: 23px;
  }

  .timeline-dot {
    left: 23px;
    width: 18px;
    height: 18px;
    top: 35px;
  }

  .timeline-content h3 {
    font-size: 24px;
  }

  .timeline-image {
    height: 160px;
  }

  .timeline-content li {
    font-size: 14px;
  }
}

