.programs-hero {
  background: linear-gradient(135deg, rgba(0, 85, 164, 0.9) 0%, rgba(0, 46, 93, 0.9) 100%);
  color: white;
  padding: 4rem 0;
}

.cycle-nav {
  background: var(--unilu-light);
  border-radius: 0;
  padding: 1.5rem;
}

.course-card {
  transition: all var(--transition-medium);
  border-left: 4px solid var(--unilu-blue);
  border-radius: 0;
}

.course-card:hover {
  transform: translateY(-5px);
  border-left-color: var(--unilu-gold);
  box-shadow: var(--shadow-md);
}

.course-meta {
  background: var(--unilu-light);
  border-radius: 0;
  padding: 1rem;
}

.badge-hours {
  background: var(--unilu-gold);
  color: #000;
  font-size: 0.8rem;
}

.teacher-avatar {
  width: 40px;
  height: 40px;
  background: var(--unilu-blue);
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
}

.inscription-steps {
  counter-reset: step;
}

.inscription-step {
  position: relative;
  padding-left: 3rem;
  margin-bottom: 2rem;
}

.inscription-step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0;
  width: 2rem;
  height: 2rem;
  background: var(--unilu-blue);
  color: white;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.requirement-list {
  list-style: none;
  padding-left: 0;
}

.requirement-list li {
  padding: 0.5rem 0;
  border-bottom: 1px solid #eee;
}

.requirement-list li:last-child {
  border-bottom: none;
}

/* nav-pills : override Bootstrap border-radius */
#inscriptionTabs .nav-link {
  border-radius: 0;
}

/* Bootstrap .card override */
.card {
  border-radius: 0 !important;
}

.card-header,
.card-footer {
  border-radius: 0 !important;
}

/* Bootstrap .alert override */
.alert {
  border-radius: 0;
}

/* Bootstrap .badge override */
.badge {
  border-radius: 0;
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: all var(--transition-slow);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
