/* Jalur Detail Area Styling */
.jalur-detail-area {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  position: relative;
  min-height: 100vh;
}

.jalur-detail-area::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23000" opacity="0.02"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  pointer-events: none;
}

/* Jalur Header */
.jalur-header {
  position: relative;
  z-index: 2;
  padding: 40px 0;
}

.jalur-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, #ff9800, #f57c00);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 2rem;
  box-shadow: 0 10px 30px rgba(255, 152, 0, 0.3);
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

.jalur-badge {
  margin-bottom: 15px;
}

.jalur-badge span {
  display: inline-block;
  background: linear-gradient(135deg, #1e3c72, #2a5298);
  color: #fff;
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(30, 60, 114, 0.3);
}

.jalur-title {
  font-size: 3rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #2c3e50, #1e3c72);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.jalur-subtitle {
  font-size: 1.2rem;
  color: #666;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
}

/* Content Cards */
.jalur-content-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
}

.jalur-content-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.15);
}

.jalur-content-card .card-header {
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
  padding: 25px 30px;
  border-bottom: 3px solid #ff9800;
  position: relative;
  overflow: hidden;
}

.jalur-content-card .card-header::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transform: rotate(45deg);
  transition: all 0.6s ease;
}

.jalur-content-card:hover .card-header::before {
  transform: rotate(45deg) translate(50%, 50%);
}

.jalur-content-card .card-header h3 {
  color: #fff;
  font-size: 1.4rem;
  font-weight: 600;
  margin: 0;
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
}

.jalur-content-card .card-header h3 i {
  color: #ff9800;
  font-size: 1.5rem;
}

.jalur-content-card .card-body {
  padding: 30px;
}

/* Jalur Description */
.jalur-description p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 20px;
}

.jalur-description h5 {
  color: #2c3e50;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
}

.jalur-description h5 i {
  color: #ff9800;
}

/* Prestasi Categories */
.prestasi-categories {
  margin-top: 20px;
}

.category-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 30px;
  padding: 20px;
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
  border-radius: 15px;
  border-left: 5px solid #ff9800;
  transition: all 0.3s ease;
}

.category-item:hover {
  transform: translateX(5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.category-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.category-icon.academic {
  background: linear-gradient(135deg, #667eea, #764ba2);
}

.category-icon.non-academic {
  background: linear-gradient(135deg, #f093fb, #f5576c);
}

.category-content h6 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 10px;
}

.category-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.category-content ul li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 5px;
  color: #666;
}

.category-content ul li::before {
  content: '\f00c';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  color: #ff9800;
  font-size: 0.8rem;
}

/* Procedure Steps */
.procedure-steps {
  position: relative;
}

.procedure-steps::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(135deg, #ff9800, #f57c00);
}

.step-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 30px;
  position: relative;
}

.step-number {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #ff9800, #f57c00);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 1.1rem;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(255, 152, 0, 0.3);
  z-index: 2;
  position: relative;
}

.step-content h6 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 8px;
}

.step-content p {
  color: #666;
  line-height: 1.6;
  margin: 0;
}

/* Requirements List */
.requirements-list {
  display: grid;
  gap: 15px;
}

.requirement-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px 20px;
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
  border-radius: 10px;
  border-left: 4px solid #ff9800;
  transition: all 0.3s ease;
}

.requirement-item:hover {
  transform: translateX(5px);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.requirement-item i {
  color: #28a745;
  font-size: 1.2rem;
}

.requirement-item span {
  color: #555;
  font-weight: 500;
}

/* Info Cards Sidebar */
.jalur-info-card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
}

.jalur-info-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.info-header {
  background: linear-gradient(135deg, #1e3c72, #2a5298);
  padding: 20px 25px;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 12px;
}

.info-header i {
  color: #ff9800;
  font-size: 1.3rem;
}

.info-header h4 {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 600;
}

.info-body {
  padding: 25px;
}

/* Schedule Items */
.schedule-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px solid #f0f0f0;
}

.schedule-item:last-child {
  border-bottom: none;
}

.schedule-label {
  font-weight: 500;
  color: #555;
}

.schedule-date {
  font-weight: 600;
  color: #ff9800;
  font-size: 0.95rem;
}

/* Fee Items */
.fee-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
  border-radius: 10px;
  margin-bottom: 15px;
}

.fee-label {
  font-weight: 500;
  color: #555;
}

.fee-amount {
  font-weight: 700;
  font-size: 1.2rem;
  color: #28a745;
}

.fee-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 15px;
  background: linear-gradient(135deg, #fff3cd, #ffeaa7);
  border-radius: 8px;
  border-left: 4px solid #ff9800;
}

.fee-note i {
  color: #ff9800;
  margin-top: 2px;
}

.fee-note small {
  color: #856404;
  line-height: 1.4;
}

/* Contact Items */
.contact-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 12px 0;
  border-bottom: 1px solid #f0f0f0;
}

.contact-item:last-child {
  border-bottom: none;
}

.contact-item i {
  width: 35px;
  height: 35px;
  background: linear-gradient(135deg, #ff9800, #f57c00);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}

.contact-item div span {
  display: block;
  font-size: 0.85rem;
  color: #888;
  margin-bottom: 2px;
}

.contact-item div a {
  color: #2c3e50;
  font-weight: 500;
  text-decoration: none;
}

.contact-item div a:hover {
  color: #ff9800;
}

/* CTA Buttons */
.jalur-cta .theme-btn,
.jalur-cta .theme-btn2 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 25px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.jalur-cta .theme-btn:hover,
.jalur-cta .theme-btn2:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .jalur-title {
    font-size: 2.5rem;
  }
  
  .jalur-subtitle {
    font-size: 1.1rem;
  }
}

@media (max-width: 768px) {
  .jalur-detail-area {
    padding: 60px 0;
  }
  
  .jalur-title {
    font-size: 2rem;
  }
  
  .jalur-subtitle {
    font-size: 1rem;
  }
  
  .jalur-content-card .card-header,
  .jalur-content-card .card-body {
    padding: 20px;
  }
  
  .category-item {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  
  .step-item {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  
  .procedure-steps::before {
    display: none;
  }
  
  .info-body {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .jalur-header {
    padding: 20px 0;
  }
  
  .jalur-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
  
  .jalur-title {
    font-size: 1.8rem;
  }
  
  .fee-item {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
  
  .schedule-item {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }
}

/* Animation Effects */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.jalur-content-card,
.jalur-info-card {
  animation: fadeInUp 0.8s ease-out;
}

.jalur-content-card:nth-child(even),
.jalur-info-card:nth-child(even) {
  animation-delay: 0.2s;
}

.step-item {
  animation: fadeInUp 0.6s ease-out;
}

.step-item:nth-child(2) { animation-delay: 0.1s; }
.step-item:nth-child(3) { animation-delay: 0.2s; }
.step-item:nth-child(4) { animation-delay: 0.3s; }
.step-item:nth-child(5) { animation-delay: 0.4s; }