/* ================== BUTTONS ================== */
.btn-custom-primary,
.btn-orange {
  background-color: #ff6b35;
  color: #fff;
  font-weight: 600;
  border-radius: 0.6rem;
  padding: 10px 20px;
  transition: all 0.3s ease;
}

.btn-custom-primary:hover,
.btn-orange:hover {
  background-color: #e0a200;
  transform: translateY(-2px);
}

.btn-custom-secondary {
  background-color: #023047;
  color: #fff;
  font-weight: 600;
  border-radius: 8px;
  padding: 10px 20px;
  border: none;
  transition: all 0.3s ease;
}
.btn-custom-secondary:hover {
  background-color: #03506f;
  transform: translateY(-2px);
}

.btn-outline-brand {
  border: 2px solid #ffae00;
  color: #080000;
  font-weight: 600;
  border-radius: 0.6rem;
  padding: 10px 20px;
  transition: all 0.3s ease;
}
.btn-outline-brand:hover {
  background: #ffae00;
  color: #fff;
}

/* ================== HERO ================== */
.hero {
  min-height: 100vh;
  color: #fff;
  overflow: hidden;
  position: relative;
}
.hero-bg {
  object-fit: cover;
  z-index: 0;
}
.overlay {
  background: rgba(0, 0, 0, 0);
  z-index: 1;
}
.hero .container {
  z-index: 2;
  position: relative;
}
.hero-eyebrow {
  color: #2196f3;
  font-weight: 600;
}
.hero-title {
  color: #ff6b35;
  font-weight: 800;
}
.hero-desc {
  font-size: 1.1rem;
  color: #333;
}

/* ================== SECTION TITLE ================== */
.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--dark-blue);
  margin-bottom: 3rem;
  position: relative;
}
.section-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: var(--primary-orange);
  border-radius: 2px;
}

/* ================== ABOUT ================== */
.about-image-wrapper {
  min-height: 100%;
}
.about-image-wrapper img {
  max-height: 350px;
  object-fit: contain;
}

/* ================== PROGRAM ================== */
.feature-list {
  padding-left: 1.2rem;
}
.feature-list li {
  margin-bottom: 0.5rem;
}

/* ================== MITRA ================== */
.partner-logo {
  width: 100%;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 8px;
  padding: 15px;
  border: 1px solid #eee;
  overflow: hidden;
  transition: all 0.3s ease;
}
.partner-logo:hover {
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  border-color: #ccc;
}
.partner-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: grayscale(0%);
  opacity: 0.7;
  transition: transform 0.3s ease, filter 0.3s ease, opacity 0.3s ease;
}
.partner-logo:hover img {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.05);
}

/* ================== BLOG ================== */
.blog-card {
  border: none;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}
.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 35px rgba(0,0,0,0.12);
}
.blog-card .card-img-top {
  height: 180px;
  object-fit: cover;
}

/* ================== FAQ ================== */
.faq-section {
  background: var(--light-bg);
  padding: 80px 0;
}
.accordion-button {
  background: #fff;
  border: none;
  border-radius: 10px !important;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  margin-bottom: 15px;
  font-weight: 600;
  padding: 1rem 1.25rem;
}
.accordion-button:not(.collapsed) {
  background: var(--primary-orange);
  color: #fff;
}
.accordion-button:focus {
  box-shadow: 0 0 0 0.25rem rgba(255, 107, 53, 0.25);
  border-color: var(--primary-orange);
}

/* ================== RESPONSIVE ================== */
@media (max-width: 992px) {
  .hero-section {
    padding: 80px 0 60px;
    text-align: center;
  }
  .hero-section::before {
    width: 100%;
    opacity: 0.2;
  }
  .section-title {
    font-size: 2rem;
  }
  .program-card {
    margin-bottom: 30px;
  }
  .hero-stats .stat-number {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .hero-section h1 {
    font-size: 2.5rem;
  }
  .section-title {
    font-size: 1.8rem;
  }
  .program-card,
  .about-card {
    padding: 25px;
  }
  .footer .col-lg-4 {
    margin-bottom: 30px;
  }
}

@media (max-width: 576px) {
  .hero-section {
    padding: 60px 0 40px;
  }
  .hero-section h1 {
    font-size: 2rem;
  }
  .btn-orange,
  .btn-outline-orange {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
  .stat-number {
    font-size: 1.8rem;
  }
}
