.wow {
  opacity: 0;
  visibility: hidden;
  transform: translate3d(0, -20px, 0);
}

.animated {
  opacity: 1;
  visibility: visible;
  animation-duration: 1s;
  animation-fill-mode: both;
}

.animated.bounceInDown {
  animation-name: bounceInDown;
}

@keyframes bounceInDown {
  0% {
    opacity: 0;
    transform: translate3d(0, -3000px, 0) scaleY(3);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, 25px, 0) scaleY(0.9);
  }
  75% {
    transform: translate3d(0, -10px, 0) scaleY(0.95);
  }
  90% {
    transform: translate3d(0, 5px, 0) scaleY(0.985);
  }
  100% {
    transform: translate3d(0, 0, 0) scaleY(1);
  }
}

/* ── Schedule ── */
.schedule h2 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--cyan-medium-dark);
  margin: 0 0 14px;
}

.timeline {
  position: relative;
  padding-left: 16px;
  border-left: 3px solid var(--cyan-medium-dark);
  display: flex;
  flex-direction: column;
  gap: 0;
}

.timeline-item {
  position: relative;
  background: white;
  border-radius: 10px;
  padding: 14px 16px;
  margin-bottom: 10px;
  box-shadow: 0 1px 6px rgba(0,0,0,0.06);
  border: 1px solid var(--light-slate);
  margin-left: 12px;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -22px;
  top: 18px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--cyan-medium-dark);
  border: 2px solid white;
  box-shadow: 0 0 0 2px var(--cyan-medium-dark);
}

.timeline-item .time {
  font-size: 11px;
  font-weight: 700;
  color: var(--cyan-medium-dark);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}

.timeline-item .activity {
  font-size: 14px;
  font-weight: 700;
  color: var(--dark-slate);
  margin-bottom: 3px;
}

.timeline-item .detail {
  font-size: 13px;
  color: var(--gray-medium);
  line-height: 1.5;
}

.timeline-item.highlight {
  border-left: 3px solid var(--yellow-gold);
}

.timeline-item.highlight::before {
  background: var(--yellow-gold);
  box-shadow: 0 0 0 2px var(--yellow-gold);
}

/* ── Highlights grid ── */
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 2.5rem;
}

.highlight-card {
  background: var(--ctc-white);
  border: 0.5px solid var(--ctc-border);
  border-radius: 13px;
  padding: 1.25rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: box-shadow 0.15s;
}

.highlight-card:hover { 
  box-shadow: 0 4px 16px rgba(26,34,53,0.09); 
}

.highlight-card.featured {
  background: var(--ctc-navy);
  border-color: transparent;
}

.highlight-icon {
  font-size: 26px;
  line-height: 1;
  font-weight: 600;
  color: var(--cyan-medium);
}

.highlight-icon.highlight { 
  color: var(--ctc-gold); 
}

.highlight-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--ctc-navy);
  line-height: 1.3;
}

.highlight-card.featured .highlight-title { 
  color: #fff; 
}

.highlight-desc {
  font-size: 13px;
  line-height: 1.5;
}

.highlight-card.featured .highlight-desc { 
  color: rgba(255,255,255,0.65); 
}

.bring-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px;
}

.bring-card {
  border-radius: 10px;
  padding: 18px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 600;
  justify-content: center;
  border: 2px solid var(--cyan-medium);
  color: var(--cyan-medium);
  background-color: white;
}

.section-label {
  text-transform: uppercase;
  color: var(--cyan-medium);
  margin-bottom: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1rem;
}

.section-inner {
  max-width: 960px;
  margin: 0 auto;
}

.section-alt {
    background: var(--off-white);
}