#program {
  background-color: #2D1218; /* Samakan dengan warna theme dark maroon */
  color: #f5f0e8;
}

.programs {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 20px;
}

/* Eyebrow label */
.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #F3C649; /* Gold mustard terang */
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.eyebrow .line {
  width: 24px;
  height: 2px;
  background-color: #F3C649;
  border-radius: 2px;
}

/* Heading */
.programs h1 {
  font-size: 48px;
  line-height: 1.2;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 50px 0;
  position: relative;
  display: inline-block;
}

.programs h1 .highlight {
  color: #C82333; /* Merah aksen PyLadies */
}

/* Garis aksen merah-gold di bawah h1 */
.programs h1::after {
  content: "";
  display: block;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #C82333 0%, #F3C649 100%);
  border-radius: 2px;
  margin-top: 12px;
}

/* Cards grid */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.card {
  border-radius: 18px;
  padding: 36px 28px;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  overflow: hidden;
}

/* Card 1: Primary Highlighted (Gold) */
.card.gold {
  background: linear-gradient(145deg, #c99a3c 0%, #a67c2e 100%);
  color: #ffffff;
  box-shadow: 0 10px 30px rgba(201, 154, 60, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Card 2 & 3: Dark Glassmorphism */
.card.light {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #f5f0e8;
  backdrop-filter: blur(10px);
}

/* Hover Effect pada Cards */
.card:hover {
  transform: translateY(-6px);
}

.card.light:hover {
  background-color: rgba(255, 255, 255, 0.08);
  border-color: rgba(200, 35, 51, 0.5);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

/* Icon Box */
.icon-box {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  margin-bottom: 24px; /* Dikurangi dari 60px agar rapi */
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.card.gold .icon-box {
  background-color: rgba(255, 255, 255, 0.2);
}

.card.light .icon-box {
  background-color: rgba(200, 35, 51, 0.2);
  border: 1px solid rgba(200, 35, 51, 0.3);
}

.card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
}

.card.light h3 {
  color: #ffffff;
}

.card p {
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
  opacity: 0.9;
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .programs {
    padding: 60px 24px;
  }

  .programs h1 {
    font-size: 38px;
  }

  .cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .programs {
    padding: 40px 16px;
  }

  .programs h1 {
    font-size: 28px;
    margin-bottom: 36px;
  }

  .cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}