/* Conference Program Page Styles */

.program-hero {
  padding: 100px 0;
  background: linear-gradient(135deg, #f0fdf4 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid #e2e8f0;
}

.program-hero::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(71, 183, 73, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

.program-hero::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(71, 183, 73, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

.program-hero .row {
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-block;
  padding: 8px 16px;
  background: linear-gradient(135deg, rgba(71, 183, 73, 0.1) 0%, rgba(71, 183, 73, 0.15) 100%);
  color: var(--color-primary);
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 24px;
  border: 1px solid rgba(71, 183, 73, 0.2);
}

.hero-title {
  font-family: "Sora", sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--color-text-primary);
  margin-bottom: 24px;
  line-height: 1.2;
}

.program-hero p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--color-text-secondary);
  margin-bottom: 18px;
}

.hero-img-wrapper {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(71, 183, 73, 0.15), 0 10px 20px rgba(15, 23, 42, 0.08);
  border: none;
}

.hero-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.hero-img-wrapper:hover img {
  transform: scale(1.05);
}

/* Journey Section - Vertical Timeline */
.program-journey {
  padding: 100px 0;
  background: #ffffff;
}

.section-subtitle {
  text-align: center;
  color: var(--color-primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: block;
  margin-bottom: 8px;
  font-size: 0.85rem;
}

.section-title {
  font-family: "Sora", sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--color-text-primary);
  margin-bottom: 16px;
  text-align: center;
}

.journey-timeline {
  position: relative;
  max-width: 900px;
  margin: 60px auto 0;
}

.journey-timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #47b749 0%, #2d7a2f 100%);
  border-radius: 2px;
}

.journey-phase {
  position: relative;
  width: 45%;
  padding: 35px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
  margin-bottom: 40px;
  border-color: var(--color-primary);
}

.journey-phase:nth-child(odd) {
  left: 0;
}

.journey-phase:nth-child(even) {
  left: 55%;
}

.journey-phase:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(71, 183, 73, 0.15);
}

.phase-number {
  font-family: "Sora", sans-serif;
  font-size: 4rem;
  font-weight: 800;
  color: #f0fdf4;
  position: absolute;
  top: 10px;
  right: 20px;
  line-height: 1;
}

.phase-dot {
  position: absolute;
  width: 20px;
  height: 20px;
  background: #47b749;
  border: 4px solid #fff;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(71, 183, 73, 0.2);
  top: 120px;
}

.journey-phase:nth-child(odd) .phase-dot {
  right: -55px;
}

.journey-phase:nth-child(even) .phase-dot {
  left: -55px;
}

.phase-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #47b749 0%, #2d7a2f 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 18px;
  margin-bottom: 20px;
  color: #fff;
  font-size: 1.8rem;
}

.phase-title {
  font-family: "Sora", sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 12px;
}

.phase-description {
  font-size: 0.95rem;
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin: 0;
}

/* Components Section - Alternating Layout */
.program-components {
  padding: 100px 0;
  background: linear-gradient(180deg, #f8fafc 0%, #f0fdf4 100%);
}

.component-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  height: 100%;
  border: 1px solid #eef2f6;
  display: flex;
  flex-direction: column;
      border-color: var(--color-primary);

}

.component-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(71, 183, 73, 0.15);
}

.component-card .component-icon-wrapper {
  height: 140px;
  /* background: linear-gradient(
    135deg,
    rgba(71, 183, 73, 0.05) 0%,
    rgba(71, 183, 73, 0.1) 100%
  ); */
      background: #f0fdf9;

  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.component-card .component-icon-wrapper::before {
  content: "";
  position: absolute;
  width: 100px;
  height: 100px;
  background: radial-gradient(
    circle,
    rgba(71, 183, 73, 0.15) 0%,
    transparent 70%
  );
  border-radius: 50%;
}

.component-card .component-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #47b749 0%, #2d7a2f 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 24px;
  color: #fff;
  font-size: 2rem;
  position: relative;
  z-index: 1;
  box-shadow: 0 10px 30px rgba(71, 183, 73, 0.3);
}

.component-card .component-content {
  padding: 30px 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.component-card .component-title {
  font-family: "Sora", sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 12px;
}

.component-card .component-description {
  font-size: 0.92rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin: 0;
  flex-grow: 1;
}

/* Responsive Styles */
@media (max-width: 991px) {
  .journey-timeline {
    max-width: 100%;
    padding-left: 0;
  }

  .journey-timeline::before {
    left: 30px;
  }

  .journey-phase {
    width: calc(100% - 70px);
    left: 0 !important;
    margin-left: 70px;
    margin-bottom: 30px;
    padding: 25px 20px;
  }

  .journey-phase .phase-dot {
    left: -52px !important;
    right: auto;
    top: 110px;
    width: 18px;
    height: 18px;
  }

  .journey-phase .phase-number {
    font-size: 3.5rem;
    right: 15px;
    top: 8px;
  }

  .journey-phase .phase-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
    margin-bottom: 15px;
  }

  .journey-phase .phase-title {
    font-size: 1.2rem;
  }

  .journey-phase .phase-description {
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  .program-hero {
    padding: 60px 0;
  }

  .hero-title {
    font-size: 1.6rem;
  }

  .hero-badge {
    font-size: 0.7rem;
    padding: 6px 12px;
  }

  .program-journey,
  .program-components {
    padding: 50px 0;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .journey-timeline {
    max-width: 100%;
  }

  .journey-phase {
    width: calc(100% - 60px);
    margin-left: 60px;
    padding: 20px 18px;
  }

  .journey-timeline::before {
    left: 20px;
  }

  .journey-phase .phase-dot {
    left: -50px !important;
    width: 16px;
    height: 16px;
    top: 100px;
  }

  .journey-phase .phase-number {
    font-size: 2.5rem;
  }

  .journey-phase .phase-icon {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }

  .journey-phase .phase-title {
    font-size: 1.05rem;
  }

  .journey-phase .phase-description {
    font-size: 0.85rem;
  }
}

@media (max-width: 575px) {
  .hero-title {
    font-size: 1.4rem;
  }

  .section-title {
    font-size: 1.4rem;
  }

  .phase-title,
  .component-title {
    font-size: 1rem;
  }

  .hero-img-wrapper {
    border-radius: 20px;
  }

  .journey-timeline {
    max-width: 100%;
  }

  .journey-phase {
    width: calc(100% - 50px);
    margin-left: 50px;
    padding: 18px 15px;
  }

  .journey-timeline::before {
    left: 16px;
  }

  .journey-phase .phase-dot {
    left: -44px !important;
    width: 14px;
    height: 14px;
    top: 95px;
  }

  .journey-phase .phase-number {
    font-size: 2rem;
    right: 10px;
  }

  .journey-phase .phase-icon {
    width: 45px;
    height: 45px;
    font-size: 1.1rem;
    margin-bottom: 12px;
  }

  .component-card .component-icon-wrapper {
    height: 110px;
  }

  .component-card .component-icon {
    width: 65px;
    height: 65px;
    font-size: 1.4rem;
  }

  .component-card .component-content {
    padding: 20px 18px;
  }

  .component-card .component-title {
    font-size: 1rem;
  }

  .component-card .component-description {
    font-size: 0.85rem;
  }
}
