/* Study Program Detail Styles */

.study-program-container {
  max-width: 1450px;
  margin: 0 auto;
}

.reading-section {
  max-width: 1100px;
  margin: 0 auto;
}

/* Hero Section */
.program-hero-area {
  position: relative;
  padding: 150px 0 100px;
  background-size: cover;
  background-position: center;
  color: #fff;
  z-index: 1;
}

.program-hero-area::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(2, 14, 40, 0.95) 0%, rgba(2, 14, 40, 0.75) 100%);
  z-index: -1;
}

.program-hero-area .badge-degree {
  background-color: var(--program-accent-color, #f35c27);
  color: #fff;
  padding: 6px 16px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 30px;
  display: inline-block;
  margin-bottom: 20px;
}

.program-hero-area .badge-accreditation {
  background-color: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  padding: 5px 15px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 30px;
  display: inline-block;
  margin-left: 10px;
  margin-bottom: 20px;
  vertical-align: middle;
}

.program-hero-area h1 {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 15px;
  color: #fff;
}

.program-hero-area .parent-faculty {
  font-size: 20px;
  font-weight: 600;
  color: #cbd5e0;
  margin-bottom: 25px;
  display: block;
}

.program-hero-ctas {
  display: flex;
  gap: 15px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.program-hero-ctas .cta-btn {
  padding: 14px 30px;
  font-size: 15px;
  font-weight: 700;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.program-hero-ctas .cta-btn.primary {
  background-color: var(--program-accent-color, #f35c27);
  color: #fff;
}

.program-hero-ctas .cta-btn.primary:hover {
  background-color: #fff;
  color: #020e28;
}

.program-hero-ctas .cta-btn.secondary {
  background-color: transparent;
  border: 2px solid #fff;
  color: #fff;
}

.program-hero-ctas .cta-btn.secondary:hover {
  background-color: #fff;
  color: #020e28;
  border-color: #fff;
}

/* Quick Facts Section */
.program-facts-area {
  padding: 50px 0;
  background-color: #f8fafc;
  border-bottom: 1px solid #e2e8f0;
}

.facts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 25px;
}

.fact-card {
  background-color: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 25px;
  display: flex;
  align-items: center;
  gap: 20px;
  transition: transform 0.3s;
}

.fact-card:hover {
  transform: translateY(-3px);
}

.fact-icon {
  font-size: 36px;
  color: var(--program-accent-color, #f35c27);
}

.fact-info h6 {
  font-size: 13px;
  color: #718096;
  text-transform: uppercase;
  margin-bottom: 5px;
  font-weight: 600;
}

.fact-info p {
  font-size: 18px;
  font-weight: 700;
  color: #020e28;
  margin-bottom: 0;
}

/* Profile / Visi Misi Section */
.program-profile-area {
  padding: 100px 0;
  background-color: #fff;
}

.program-profile-content h3 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 25px;
  color: #020e28;
  position: relative;
  padding-bottom: 15px;
}

.program-profile-content h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 4px;
  background-color: var(--program-accent-color, #f35c27);
}

.program-profile-content p {
  font-size: 16px;
  line-height: 1.8;
  color: #4a5568;
  margin-bottom: 30px;
}

.program-vision-mission {
  margin-top: 40px;
}

.program-vision-box, .program-mission-box {
  background-color: #f8fafc;
  padding: 30px;
  border-radius: 12px;
  margin-bottom: 25px;
  border-left: 5px solid var(--program-accent-color, #f35c27);
}

.program-vision-box h4, .program-mission-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #020e28;
}

.program-vision-box p, .program-mission-box p {
  margin-bottom: 0;
}

/* Head of Program Sidebar */
.program-sidebar-card {
  background-color: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 40px 30px;
  text-align: center;
}

.head-photo-wrapper {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 20px;
  border: 4px solid #fff;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.head-photo-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.head-info h5 {
  font-size: 18px;
  font-weight: 700;
  color: #020e28;
  margin-bottom: 5px;
}

.head-info span {
  font-size: 14px;
  color: #718096;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 20px;
}

.head-contact {
  border-top: 1px solid #e2e8f0;
  padding-top: 20px;
  margin-top: 20px;
  text-align: left;
}

.head-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 15px;
  color: #4a5568;
}

.head-contact-item i {
  color: var(--program-accent-color, #f35c27);
  font-size: 18px;
}

/* Career Prospects */
.program-career-area {
  padding: 100px 0;
  background-color: #f8fafc;
}

.program-career-area h3 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 25px;
  color: #020e28;
  position: relative;
  padding-bottom: 15px;
}

.program-career-area h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 4px;
  background-color: var(--program-accent-color, #f35c27);
}

.career-list {
  list-style: none;
  padding: 0;
  margin: 30px 0 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.career-list li {
  background-color: #fff;
  padding: 20px 25px;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
  font-size: 16px;
  font-weight: 600;
  color: #020e28;
  display: flex;
  align-items: center;
  gap: 15px;
  transition: all 0.3s;
}

.career-list li::before {
  content: '\f101'; /* line awesome double right arrow */
  font-family: "Line Awesome Free";
  font-weight: 900;
  color: var(--program-accent-color, #f35c27);
  font-size: 18px;
}

.career-list li:hover {
  border-color: var(--program-accent-color, #f35c27);
  transform: translateX(5px);
}

/* Faculty Box Section */
.program-faculty-area {
  padding: 80px 0;
  background-color: #fff;
  text-align: center;
}

.faculty-card-box {
  background: linear-gradient(135deg, #020e28 0%, #0b2e59 100%);
  color: #fff;
  border-radius: 16px;
  padding: 60px 40px;
  max-width: 900px;
  margin: 0 auto;
  box-shadow: 0 20px 40px rgba(2, 14, 40, 0.15);
}

.faculty-card-box h3 {
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 15px;
}

.faculty-card-box p {
  color: #cbd5e0;
  font-size: 18px;
  margin-bottom: 30px;
}

.faculty-box-btn {
  background-color: var(--program-accent-color, #f35c27);
  color: #fff;
  padding: 14px 35px;
  font-size: 15px;
  font-weight: 700;
  border-radius: 30px;
  text-decoration: none;
  display: inline-block;
  text-transform: uppercase;
  transition: all 0.3s;
}

.faculty-box-btn:hover {
  background-color: #fff;
  color: #020e28;
}

/* Contact Section */
.program-contact-area {
  padding: 80px 0;
  background-color: #020e28;
  color: #fff;
}

.program-contact-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

/* Skeleton Loaders */
.skeleton-box {
  background-color: #e2e8f0;
  animation: pulse-skeleton 1.5s infinite;
}

@keyframes pulse-skeleton {
  0% { opacity: 0.6; }
  50% { opacity: 0.8; }
  100% { opacity: 0.6; }
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .program-hero-area {
    padding: 120px 0 80px;
  }
  .program-hero-area h1 {
    font-size: 36px;
  }
  .program-sidebar-card {
    margin-top: 50px;
  }
}

@media (max-width: 767px) {
  .program-hero-area h1 {
    font-size: 28px;
  }
  .program-profile-area, .program-career-area {
    padding: 60px 0;
  }
}
