/* Enhanced Progressive Training Programs Section */
.programs-section {
  background: linear-gradient(135deg, #1a1b26 0%, #24283b 100%);
  position: relative;
  overflow: hidden;
}

.programs-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 107, 107, 0.1) 0%, transparent 70%);
  animation: float 20s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  50% { transform: translate(-50px, -50px) rotate(180deg); }
}

.programs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-top: 50px;
  position: relative;
  z-index: 1;
}

.program-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 24px;
  padding: 40px 30px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}
.program-card::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  border-radius: 24px;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}

.program-card:hover::before {
  opacity: 1;
}

.program-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3),
              0 0 60px rgba(89, 227, 194, 0.1);
  border-color: rgba(89, 227, 194, 0.3);
}

/* Program difficulty indicators */
.program-card:nth-child(1) { --accent-color: #59E3C2; }
.program-card:nth-child(2) { --accent-color: #FFB800; }
.program-card:nth-child(3) { --accent-color: #FF6B6B; }

.program-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 25px;
  color: var(--accent-color);
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  display: inline-block;
}
.program-title::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 50%;
  height: 3px;
  background: var(--accent-color);
  border-radius: 2px;
  transition: width 0.3s ease;
}

.program-card:hover .program-title::after {
  width: 100%;
}

.program-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.program-features li {
  padding: 12px 0;
  padding-left: 35px;
  color: rgba(250, 250, 250, 0.8);
  position: relative;
  font-size: 16px;
  transition: all 0.3s ease;
}

.program-features li:hover {
  color: #FAFAFA;
  transform: translateX(5px);
}

.program-features li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent-color);
  font-weight: bold;
  font-size: 20px;
  transition: transform 0.3s ease;
}
.program-features li:hover::before {
  transform: translateX(5px);
}

/* Difficulty badges */
.program-card::after {
  content: attr(data-difficulty);
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 6px 16px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid var(--accent-color);
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--accent-color);
}

/* Section header improvements */
.programs-section .section-title {
  font-size: 3rem;
  background: linear-gradient(135deg, #FF6B6B 0%, #F06595 50%, #59E3C2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
  margin-bottom: 20px;
}

.programs-section .section-subtitle {
  text-align: center;
  font-size: 1.2rem;
  color: rgba(250, 250, 250, 0.7);
  max-width: 600px;
  margin: 0 auto;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .programs-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .program-card {
    padding: 30px 20px;
  }
  
  .program-title {
    font-size: 24px;
  }
  
  .programs-section .section-title {
    font-size: 2rem;
  }
}