
/* ==========================================================================
   Classes/Programs Page Styling
   ========================================================================== */

/* Section Titles */
.sec-subtitle {
  display: block;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--vs-theme-color1);
  margin-bottom: 10px;
}

.sec-title {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--vs-theme-color1);
  margin-bottom: 15px;
  font-family: var(--vs-title-font);
}

/* Program Cards */
.program-card {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.program-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.program-card__image {
  position: relative;
  overflow: hidden;
  height: 250px;
}

.program-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.program-card:hover .program-card__image img {
  transform: scale(1.1);
}

.program-card__badge {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 700;
  color: #ffffff;
}

.program-card__content {
  padding: 30px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.program-card__title {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--vs-theme-color1);
  margin-bottom: 20px;
  font-family: var(--vs-title-font);
}

.program-card__list {
  list-style: none;
  padding: 0;
  margin: 0 0 25px 0;
  flex: 1;
}

.program-card__list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 15px;
  line-height: 1.6;
  color: #64748b;
  font-weight: 500;
}

.program-card__list li:last-child {
  margin-bottom: 0;
}

.program-card__list li i {
  color: #ff8c42;
  font-size: 16px;
  margin-top: 3px;
  flex-shrink: 0;
}

.program-card__btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  color: #ffffff;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn-orange {
  background: linear-gradient(135deg, #ff8c42 0%, #ffb366 100%);
}

.btn-orange:hover {
  background: linear-gradient(135deg, #ff7a2e 0%, #ffa352 100%);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 140, 66, 0.3);
  color: #ffffff;
}

.btn-pink {
  background: linear-gradient(135deg, #ff6b9d 0%, #ff8bb5 100%);
}

.btn-pink:hover {
  background: linear-gradient(135deg, #ff5789 0%, #ff77a1 100%);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 107, 157, 0.3);
  color: #ffffff;
}

.btn-yellow {
  background: linear-gradient(135deg, #ffd700 0%, #ffe44d 100%);
  color: var(--vs-theme-color1);
}

.btn-yellow:hover {
  background: linear-gradient(135deg, #ffc700 0%, #ffd633 100%);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
  color: var(--vs-theme-color1);
}

/* Curriculum Cards */
.curriculum-card {
  background: #ffffff;
  padding: 35px 25px;
  border-radius: 15px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
  height: 100%;
}

.curriculum-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.curriculum-card__icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 32px;
  color: #ffffff;
  transition: all 0.3s ease;
}

.curriculum-card:hover .curriculum-card__icon {
  transform: scale(1.1) rotate(5deg);
}

.curriculum-card__title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--vs-theme-color1);
  margin-bottom: 12px;
  font-family: var(--vs-title-font);
}

.curriculum-card__text {
  font-size: 14px;
  line-height: 1.7;
  color: #64748b;
  margin: 0;
}

/* Timeline Schedule Styles */
.schedule-timeline {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  padding: 50px 0;
}

/* Central vertical line */
.schedule-timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 3px;
  background: #003d7a;
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  margin-bottom: 50px;
  display: flex;
  align-items: center;
  gap: 25px;
  width: 50%;
  padding-right: 40px;
  justify-content: flex-end;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

/* Right side items */
.timeline-item--right {
  margin-left: 50%;
  padding-right: 0;
  padding-left: 40px;
  justify-content: flex-start;
}

/* Timeline Icon */
.timeline-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  position: absolute;
  z-index: 2;
  flex-shrink: 0;
  transition: all 0.2s ease;
  border: 3px solid #ffffff;
}

/* Icon position for left items */
.timeline-item .timeline-icon {
  right: -70px;
}

/* Icon position for right items */
.timeline-item--right .timeline-icon {
  left: -70px;
}

.timeline-item:hover .timeline-icon {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Timeline Content Container */
.timeline-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Time Badge */
.timeline-time {
  flex: none;
}

.time-badge {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
  white-space: nowrap;
}

/* Timeline Card */
.timeline-card {
  background: #ffffff;
  padding: 24px 28px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.2s ease;
}

/* Border for left items */
.timeline-item .timeline-card {
  border-right: 3px solid #003d7a;
}

/* Border for right items */
.timeline-item--right .timeline-card {
  border-left: 3px solid #003d7a;
}

.timeline-item:hover .timeline-card {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.timeline-card h4 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #003d7a;
  margin-bottom: 8px;
  font-family: var(--vs-title-font);
  line-height: 1.3;
}

.timeline-card p {
  font-size: 15px;
  line-height: 1.6;
  color: #4a5568;
  margin: 0;
}

/* Responsive Timeline */
@media (max-width: 991px) {
  .schedule-timeline {
    padding: 40px 0 40px 80px;
  }
  
  .schedule-timeline::before {
    left: 30px;
    transform: none;
  }
  
  .timeline-item,
  .timeline-item--right {
    width: 100%;
    margin-left: 0;
    padding-right: 0;
    padding-left: 0;
    justify-content: flex-start;
  }
  
  .timeline-item .timeline-icon,
  .timeline-item--right .timeline-icon {
    left: -80px;
    right: auto;
    width: 56px;
    height: 56px;
    font-size: 22px;
  }
  
  .timeline-item .timeline-card,
  .timeline-item--right .timeline-card {
    border-right: none;
    border-left: 3px solid #003d7a;
  }
  
  .timeline-card {
    padding: 20px 24px;
  }
}

@media (max-width: 767px) {
  .schedule-timeline {
    padding: 30px 0 30px 70px;
  }
  
  .schedule-timeline::before {
    left: 28px;
    width: 3px;
  }
  
  .timeline-item {
    margin-bottom: 45px;
  }
  
  .timeline-icon {
    width: 56px;
    height: 56px;
    font-size: 22px;
    left: -70px;
    top: 3px;
    border-width: 4px;
  }
  
  .time-badge {
    font-size: 11px;
    padding: 8px 18px;
    letter-spacing: 1.5px;
  }
  
  .timeline-card {
    padding: 22px 25px;
    border-radius: 15px;
  }
  
  .timeline-card h4 {
    font-size: 1.35rem;
  }
  
  .timeline-card p {
    font-size: 15px;
  }
}

@media (max-width: 575px) {
  .schedule-timeline {
    padding: 20px 0 20px 60px;
  }
  
  .schedule-timeline::before {
    left: 23px;
  }
  
  .timeline-icon {
    width: 46px;
    height: 46px;
    font-size: 19px;
    left: -60px;
    border-width: 3px;
  }
  
  .timeline-card {
    padding: 20px 22px;
  }
  
  .timeline-card h4 {
    font-size: 1.2rem;
  }
  
  .timeline-card p {
    font-size: 14px;
    line-height: 1.7;
  }
  
  .time-badge {
    font-size: 10px;
    padding: 7px 16px;
  }
}




/* Enrichment Cards */
.enrichment-card {
  background: #ffffff;
  padding: 30px 20px;
  border-radius: 15px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
  height: 100%;
}

.enrichment-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.enrichment-card__icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-size: 28px;
  color: #ffffff;
  transition: all 0.3s ease;
}

.enrichment-card:hover .enrichment-card__icon {
  transform: scale(1.15) rotate(10deg);
}

.enrichment-card__title {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--vs-theme-color1);
  margin-bottom: 10px;
  font-family: var(--vs-title-font);
}

.enrichment-card__text {
  font-size: 13px;
  line-height: 1.6;
  color: #64748b;
  margin: 0;
}

/* Teaching Philosophy Cards */
.philosophy-card {
  background: #f8f9fa;
  padding: 25px;
  border-radius: 6px;
  border: 1px solid #e2e8f0;
  transition: all 0.2s ease;
  height: 100%;
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.philosophy-card:hover {
  border-color: var(--vs-theme-color1);
  background: #ffffff;
}

.philosophy-card__icon {
  width: 50px;
  height: 50px;
  border-radius: 6px;
  background: var(--vs-theme-color1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #ffffff;
  flex-shrink: 0;
}

.philosophy-card__content h4 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 8px;
  font-family: var(--vs-title-font);
}

.philosophy-card__content p {
  font-size: 14px;
  line-height: 1.6;
  color: #64748b;
  margin: 0;
}

/* Statistics Cards */
.stat-card {
  background: #ffffff;
  padding: 30px 20px;
  border-radius: 6px;
  text-align: center;
  border: 2px solid #e2e8f0;
  transition: all 0.2s ease;
  height: 100%;
}

.stat-card:hover {
  border-color: var(--vs-theme-color1);
}

.stat-card__icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-size: 26px;
  color: #ffffff;
}

.stat-card__number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--vs-theme-color1);
  margin-bottom: 6px;
  font-family: var(--vs-title-font);
  line-height: 1;
}

.stat-card__label {
  font-size: 14px;
  color: #64748b;
  margin: 0;
  font-weight: 600;
}

/* CTA Section */
.btn-group-center {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
  .sec-title {
    font-size: 2rem;
  }

  .program-card__title {
    font-size: 1.5rem;
  }

  .curriculum-card__icon {
    width: 70px;
    height: 70px;
    font-size: 28px;
  }

  .philosophy-list li {
    font-size: 15px;
  }

  .learning-secrets-box {
    margin-top: 30px;
  }
}

@media (max-width: 767px) {
  .sec-title {
    font-size: 1.75rem;
  }

  .program-card__image {
    height: 200px;
  }

  .program-card__content {
    padding: 25px;
  }

  .schedule-card {
    padding: 20px;
  }

  .btn-group-center {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-group-center .vs-btn {
    margin: 0 0 10px 0 !important;
  }
}
