/* Programs Hero */
.programs-hero {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  color: var(--secondary-color);
  padding: 8rem 0 5rem;
  margin-top: 76px;
  text-align: center;
  position: relative;
}

.programs-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 10px,
    rgba(255, 255, 255, 0.05) 10px,
    rgba(255, 255, 255, 0.05) 20px
  );
}

.programs-hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
}

.programs-hero-subtitle {
  font-size: 1.2rem;
  opacity: 0.9;
  position: relative;
  z-index: 2;
}

/* Program Categories */
.program-categories {
  padding: 5rem 0;
}

.program-category {
  background: var(--secondary-color);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  height: 100%;
  transition: all 0.3s ease;
}

.program-category:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
}

.program-header {
  background: var(--bg-light);
  padding: 2.5rem 2rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.program-icon {
  width: 80px;
  height: 80px;
  background: var(--primary-color);
  color: var(--secondary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  flex-shrink: 0;
}

.program-title h2 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
  font-weight: 600;
  font-size: 1.5rem;
}

.program-title p {
  color: var(--text-light);
  margin: 0;
}

.program-content {
  padding: 2rem;
}

.program-focus h4 {
  color: var(--text-dark);
  margin-bottom: 1rem;
  font-weight: 600;
}

.program-focus ul {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
}

.program-focus li {
  padding: 0.5rem 0;
  color: var(--text-light);
  position: relative;
  padding-left: 1.5rem;
}

.program-focus li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.program-impact {
  display: flex;
  gap: 2rem;
  justify-content: space-around;
  border-top: 1px solid var(--border-color);
  padding-top: 1.5rem;
}

.impact-stat {
  text-align: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  display: block;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-light);
  font-weight: 500;
}

/* Health Program Specific */
.health-program .program-icon {
  background: #ef4444;
}

.health-program .program-title h2 {
  color: #ef4444;
}

.health-program .program-focus li::before {
  color: #ef4444;
}

.health-program .stat-number {
  color: #ef4444;
}

/* Climate Program Specific */
.climate-program .program-icon {
  background: #22c55e;
}

/* Peace Program Specific */
.peace-program .program-icon {
  background: #3b82f6;
}

.peace-program .program-title h2 {
  color: #3b82f6;
}

.peace-program .program-focus li::before {
  color: #3b82f6;
}

.peace-program .stat-number {
  color: #3b82f6;
}

/* Economic Program Specific */
.economic-program .program-icon {
  background: #f59e0b;
}

.economic-program .program-title h2 {
  color: #f59e0b;
}

.economic-program .program-focus li::before {
  color: #f59e0b;
}

.economic-program .stat-number {
  color: #f59e0b;
}

/* Special Campaigns */
.special-campaigns {
  padding: 5rem 0;
}

.campaign-card {
  background: var(--secondary-color);
  padding: 3rem;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: flex-start;
  gap: 2rem;
}

.campaign-icon {
  width: 100px;
  height: 100px;
  background: var(--primary-color);
  color: var(--secondary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  flex-shrink: 0;
}

.campaign-content h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-weight: 600;
}

.campaign-description {
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.campaign-goals h5 {
  color: var(--text-dark);
  margin-bottom: 1rem;
  font-weight: 600;
}

.campaign-goals ul {
  list-style: none;
  padding: 0;
}

.campaign-goals li {
  padding: 0.5rem 0;
  color: var(--text-light);
  position: relative;
  padding-left: 1.5rem;
}

.campaign-goals li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

/* Teen4Teen Program */
.teen4teen-program {
  padding: 5rem 0;
  background: var(--bg-light);
}

.teen4teen-content {
  padding-right: 2rem;
}

.program-title {
  color: var(--primary-color);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.program-description {
  color: var(--text-light);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

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

.feature-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border-color);
}

.feature-item:last-child {
  border-bottom: none;
}

.feature-item i {
  color: var(--primary-color);
  font-size: 1.5rem;
  width: 30px;
}

.feature-item span {
  color: var(--text-dark);
  font-weight: 500;
}

.teen4teen-stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.stat-card {
  background: var(--secondary-color);
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.stat-card .stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.stat-card .stat-label {
  color: var(--text-light);
  font-weight: 500;
}

/* Responsive Design */
@media (max-width: 768px) {
  .programs-hero-title {
    font-size: 2.5rem;
  }

  .program-header {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .program-icon {
    width: 70px;
    height: 70px;
    font-size: 1.8rem;
  }

  .program-impact {
    flex-direction: column;
    gap: 1rem;
  }

  .campaign-card {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }

  .campaign-icon {
    width: 80px;
    height: 80px;
    font-size: 2rem;
    margin: 0 auto;
  }

  .teen4teen-content {
    padding-right: 0;
    margin-bottom: 3rem;
  }

  .program-title {
    font-size: 2rem;
  }
}

