/* Process timeline */
.process-section {
  position: relative;
}
.process-head {
  text-align: center;
  margin-bottom: 4rem;
}
.timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding-left: 0;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 30px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(
    to bottom,
    rgba(212, 175, 55, 0.15) 0%,
    rgba(212, 175, 55, 0.4) 25%,
    rgba(255, 140, 0, 0.5) 50%,
    rgba(212, 175, 55, 0.4) 75%,
    rgba(212, 175, 55, 0.15) 100%
  );
  border-radius: 999px;
}
.timeline-item {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 2rem;
  align-items: start;
  margin-bottom: 3rem;
  position: relative;
}
.timeline-badge {
  position: relative;
  z-index: 2;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #fff;
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.35), 0 0 0 4px #fff,
    0 0 0 6px rgba(212, 175, 55, 0.1);
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 1.1rem;
  font-family: "Nunito", sans-serif;
  transition: all 0.3s ease;
}
.timeline-item:hover .timeline-badge {
  transform: scale(1.1);
  box-shadow: 0 12px 32px rgba(212, 175, 55, 0.45), 0 0 0 4px #fff,
    0 0 0 8px rgba(212, 175, 55, 0.2);
}
.timeline-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: 20px;
  padding: 2rem 2.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}
.timeline-card::before {
  content: "";
  position: absolute;
  left: -1px;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(to bottom, #d4af37, #ff8c00);
  border-radius: 0 4px 4px 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.timeline-card:hover {
  transform: translateX(8px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1), inset 0 1px 0 #fff;
  border-color: rgba(212, 175, 55, 0.3);
}
.timeline-card:hover::before {
  opacity: 1;
}
.timeline-num {
  font-family: "Inter", cursive;
  font-weight: 600;
  color: #1a1816;
  font-size: 2rem;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}
.timeline-sub {
  color: #4a4845;
  font-weight: 600;
  margin-bottom: 1rem;
  font-size: 1rem;
}
.timeline-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  color: #b8860b;
  font-weight: 700;
  font-size: 0.9rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(212, 175, 55, 0.15);
}
.timeline-meta svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .timeline::before {
    left: 25px;
  }
  .timeline-item {
    grid-template-columns: 50px 1fr;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
  }
}

/* Voyage slider */
.slider {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 24px;
  overflow: hidden;
}
.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
}
.slide.is-active {
  opacity: 1;
}
.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(212, 175, 55, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
}
.slider-nav:hover {
  background: #fff;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  border-color: #d4af37;
}
.slider-nav.prev {
  left: 20px;
}
.slider-nav.next {
  right: 20px;
}
.slider-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}
.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: 2px solid rgba(255, 255, 255, 0.8);
  cursor: pointer;
  transition: all 0.3s;
}
.slider-dot.is-active {
  background: #fff;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
  transform: scale(1.2);
}

/* Video gallery */
.gallery-slider-container {
  position: relative;
  margin-top: 3rem;
  padding: 0 60px;
}
.gallery-slider {
  display: flex;
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  gap: 2rem;
  -webkit-overflow-scrolling: touch;
}
.gallery-slide {
  flex: 0 0 calc(100% - 2rem);
  scroll-snap-align: center;
  min-width: 0;
}
@media (min-width: 768px) {
  .gallery-slide {
    flex: 0 0 calc(50% - 1rem);
  }
}
@media (min-width: 1024px) {
  .gallery-slide {
    flex: 0 0 calc(33.333% - 1.33rem);
  }
}
.gallery-video-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  backdrop-filter: blur(20px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(212, 175, 55, 0.15);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}
.gallery-video-card:hover {
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(212, 175, 55, 0.3);
}
.gallery-video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  background: transparent;
  overflow: hidden;
}
.gallery-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gallery-dots {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 2rem;
}
.gallery-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #e0e0e0;
  border: 2px solid #fff;
  transition: all 0.3s;
  cursor: pointer;
}
.gallery-dot.active {
  background: #d4af37;
  border-color: #d4af37;
  transform: scale(1.3);
  box-shadow: 0 0 12px rgba(212, 175, 55, 0.5);
}
@media (max-width: 1024px) {
  .gallery-slider-container {
    padding: 0 50px;
  }
  .gallery-nav {
    width: 48px;
    height: 48px;
  }
}
@media (max-width: 768px) {
  .gallery-slider-container {
    padding: 0 0;
  }
  .gallery-slider {
    gap: 1.5rem;
  }
  .gallery-nav {
    width: 44px;
    height: 44px;
  }
  .gallery-dots {
    margin-top: 1.5rem;
  }
}
