/* ===== PAGE BANNER (shared with about) ===== */
.page-banner {
  background-size: cover;
  background-position: center;
  position: relative;
  padding: 110px 0 75px;
}
.banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,10,30,0.88) 0%, rgba(200,16,46,0.5) 100%);
}
.banner-content {
  position: relative;
  z-index: 2;
  text-align: center;
}
.banner-content h1 {
  font-size: 52px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 18px;
  letter-spacing: 1px;
}
.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,0.75);
}
.breadcrumb a { color: rgba(255,255,255,0.75); }
.breadcrumb a:hover { color: #c8102e; }
.breadcrumb i { font-size: 11px; color: #c8102e; }
.breadcrumb .current { color: #fff; font-weight: 600; }

/* ===== JOURNEY INTRO ===== */
.journey-intro { background: #fff; }
.journey-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.journey-lead {
  font-size: 18px;
  color: #333;
  font-weight: 500;
  line-height: 1.8;
  margin-bottom: 18px;
  border-left: 4px solid #c8102e;
  padding-left: 20px;
}
.journey-intro-text p {
  color: #666;
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 15px;
}
.journey-intro-image {
  position: relative;
}
.journey-intro-image img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}
.intro-img-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: #c8102e;
  color: #fff;
  padding: 22px 28px;
  text-align: center;
  border-radius: 4px;
  box-shadow: 0 10px 30px rgba(200,16,46,0.4);
}
.badge-num {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: 44px;
  font-weight: 700;
  line-height: 1;
}
.badge-txt {
  display: block;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 5px;
  opacity: 0.9;
}

/* ===== TIMELINE SECTION ===== */
.timeline-section { background: #f4f4f4; }

.timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* ===== TIMELINE ROW ===== */
.tl-row {
  display: grid;
  grid-template-columns: 1fr 80px 1fr;
  gap: 0;
  align-items: center;
  margin-bottom: 50px;
}
.tl-row:last-child { margin-bottom: 0; }

/* Reverse row: info on left, card on right */
.tl-row-reverse .tl-info-side { order: 1; }
.tl-row-reverse .tl-center    { order: 2; }
.tl-row-reverse .tl-card-side { order: 3; }

/* ===== CENTER COLUMN ===== */
.tl-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  align-self: stretch;
}
/* Vertical line through center */
.tl-center::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
  background: linear-gradient(to bottom, #c8102e, #1a1a2e);
  transform: translateX(-50%);
  z-index: 0;
}
/* Extend line from first row top */
.tl-row:first-child .tl-center::before { top: 30px; }
.tl-row:last-child  .tl-center::before { bottom: 30px; }

.tl-dot {
  width: 18px;
  height: 18px;
  background: #fff;
  border: 3px solid #c8102e;
  border-radius: 50%;
  z-index: 2;
  margin-top: 30px;
  flex-shrink: 0;
  box-shadow: 0 0 0 4px rgba(200,16,46,0.15);
}
.tl-dot-active {
  background: #c8102e;
  box-shadow: 0 0 0 6px rgba(200,16,46,0.25);
  width: 22px;
  height: 22px;
}

.tl-year {
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  font-weight: 700;
  background: #1a1a2e;
  color: #fff;
  padding: 5px 10px;
  border-radius: 20px;
  letter-spacing: 1px;
  margin-top: 8px;
  z-index: 2;
  white-space: nowrap;
}
.tl-year-active {
  background: #c8102e;
}

/* ===== CARD SIDE ===== */
.tl-card-side {
  padding: 0 25px;
}
.tl-content {
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 5px 30px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}
.tl-content:hover {
  box-shadow: 0 15px 50px rgba(0,0,0,0.15);
  transform: translateY(-4px);
}
.tl-image {
  overflow: hidden;
  height: 210px;
}
.tl-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.tl-content:hover .tl-image img { transform: scale(1.06); }
.tl-body { padding: 25px; }
.tl-tag {
  display: inline-block;
  background: #fff0f3;
  color: #c8102e;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 2px;
  margin-bottom: 10px;
}
.tl-body h3 {
  font-size: 20px;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 12px;
}
.tl-body p {
  font-size: 14px;
  color: #666;
  line-height: 1.8;
  margin-bottom: 10px;
}
.tl-body p:last-of-type { margin-bottom: 0; }

/* ===== INFO PANEL SIDE ===== */
.tl-info-side {
  padding: 0 25px;
}
.tl-info-panel {
  background: #1a1a2e;
  border-radius: 4px;
  padding: 32px 28px;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.tl-info-panel::before {
  content: '';
  position: absolute;
  top: -30px;
  right: -30px;
  width: 120px;
  height: 120px;
  background: rgba(200,16,46,0.12);
  border-radius: 50%;
}
.tl-info-panel::after {
  content: '';
  position: absolute;
  bottom: -20px;
  left: -20px;
  width: 80px;
  height: 80px;
  background: rgba(200,16,46,0.08);
  border-radius: 50%;
}
.tl-info-icon {
  width: 54px;
  height: 54px;
  background: #c8102e;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #fff;
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}
.tl-info-panel h4 {
  font-family: 'Oswald', sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}
.tl-info-panel p {
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}
.tl-facts {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
  position: relative;
  z-index: 1;
}
.tl-facts li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
}
.tl-facts li i {
  color: #c8102e;
  font-size: 11px;
  flex-shrink: 0;
  background: rgba(200,16,46,0.2);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* CTA variant */
.tl-info-cta {
  background: linear-gradient(135deg, #c8102e 0%, #8b0000 100%);
}
.tl-info-cta p { color: rgba(255,255,255,0.9); }
.tl-cta-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 20px;
  position: relative;
  z-index: 1;
}
.tl-cta-btns .btn-ghost {
  color: #fff;
  border-color: rgba(255,255,255,0.6);
}
.tl-cta-btns .btn-ghost:hover {
  background: #fff;
  color: #c8102e;
  border-color: #fff;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .tl-row {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .tl-row-reverse .tl-info-side,
  .tl-row-reverse .tl-center,
  .tl-row-reverse .tl-card-side { order: unset; }

  .tl-center {
    flex-direction: row;
    justify-content: flex-start;
    gap: 12px;
    padding: 0 25px;
    align-self: auto;
  }
  .tl-center::before { display: none; }
  .tl-dot { margin-top: 0; }
  .tl-card-side, .tl-info-side { padding: 0; }
}

/* ===== ACHIEVEMENTS SECTION ===== */
.achievements-section { background: #fff; }
.achievements-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.achievement-card {
  background: #f8f8f8;
  padding: 35px 28px;
  border-radius: 4px;
  border-bottom: 3px solid transparent;
  transition: all 0.3s ease;
  position: relative;
}
.achievement-card:hover {
  background: #fff;
  border-bottom-color: #c8102e;
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
  transform: translateY(-6px);
}
.ach-icon {
  width: 65px;
  height: 65px;
  background: #fff0f3;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all 0.3s;
}
.ach-icon i {
  font-size: 26px;
  color: #c8102e;
}
.achievement-card:hover .ach-icon {
  background: #c8102e;
}
.achievement-card:hover .ach-icon i {
  color: #fff;
}
.achievement-card h3 {
  font-size: 20px;
  font-weight: 600;
  color: #1a1a2e;
  margin-bottom: 12px;
}
.achievement-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.7;
  margin-bottom: 16px;
}
.ach-year {
  display: inline-block;
  background: #c8102e;
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 3px 12px;
  border-radius: 2px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .journey-intro-grid { grid-template-columns: 1fr; gap: 50px; }
  .journey-intro-image img { height: 360px; }
  .intro-img-badge { left: 0; bottom: -15px; }
  .achievements-grid { grid-template-columns: 1fr 1fr; }
  .tl-body { padding: 20px; }
  .tl-image { height: 180px; }
}

@media (max-width: 900px) {
  /* Stack timeline rows vertically */
  .tl-row {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 30px;
  }
  /* Always show: center first, then card, then info */
  .tl-row .tl-center    { order: 1; }
  .tl-row .tl-card-side { order: 2; }
  .tl-row .tl-info-side { order: 3; }
  /* Reverse rows same order on mobile */
  .tl-row-reverse .tl-center    { order: 1; }
  .tl-row-reverse .tl-card-side { order: 2; }
  .tl-row-reverse .tl-info-side { order: 3; }

  .tl-center {
    flex-direction: row;
    align-items: center;
    gap: 12px;
    padding: 0 0 12px 0;
    align-self: auto;
  }
  .tl-center::before { display: none; }
  .tl-dot { margin-top: 0; }
  .tl-card-side { padding: 0 0 15px 0; }
  .tl-info-side { padding: 0; }
}

@media (max-width: 768px) {
  .banner-content h1 { font-size: 34px; }
  .page-banner { padding: 80px 0 55px; }
  .journey-lead { font-size: 16px; }
  .achievements-grid { grid-template-columns: 1fr; gap: 15px; }
  .achievement-card { padding: 25px 20px; }
}

@media (max-width: 480px) {
  .banner-content h1 { font-size: 26px; }
  .tl-body { padding: 16px; }
  .tl-image { height: 160px; }
  .tl-info-panel { padding: 22px 18px; }
  .badge-num { font-size: 34px; }
}
