/* Scholarship Section Styling */
.scholarship-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  position: relative;
  min-height: 100vh;
}

.scholarship-section::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;
}

/* Scholarship Header */
.scholarship-header {
  position: relative;
  z-index: 2;
  padding: 40px 0;
}

.scholarship-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); }
}

.scholarship-badge {
  margin-bottom: 15px;
}

.scholarship-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);
}

.scholarship-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;
}

.scholarship-subtitle {
  font-size: 1.2rem;
  color: #666;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
}

/* Scholarship Cards */
.scholarship-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;
  margin-bottom: 40px;
  transition: all 0.3s ease;
}

.scholarship-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.15);
}

/* Card Header */
.scholarship-card-header {
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
  padding: 30px 40px;
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
  overflow: hidden;
}

.scholarship-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;
}

.scholarship-card:hover .scholarship-card-header::before {
  transform: rotate(45deg) translate(50%, 50%);
}

.scholarship-icon-wrapper {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #ff9800, #f57c00);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.8rem;
  box-shadow: 0 8px 25px rgba(255, 152, 0, 0.3);
  flex-shrink: 0;
}

.scholarship-icon-wrapper.yasau {
  background: linear-gradient(135deg, #667eea, #764ba2);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.scholarship-icon-wrapper.kip_kuliah {
  background: linear-gradient(135deg, #ff9800, #f57c00);
  box-shadow: 0 8px 25px rgba(255, 152, 0, 0.3);
}

.scholarship-type h2 {
  color: #fff;
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0 0 8px 0;
  position: relative;
  z-index: 2;
}

.scholarship-label {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.scholarship-label.government {
  background: linear-gradient(135deg, #28a745, #20c997);
  color: #fff;
}

.scholarship-label.institution {
  background: linear-gradient(135deg, #6f42c1, #e83e8c);
  color: #fff;
}

/* Content Sections */
.scholarship-info,
.scholarship-requirements {
  padding: 40px;
}

.section-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.section-title i {
  color: #ff9800;
  font-size: 1.3rem;
}

.scholarship-description,
.requirements-intro {
  color: #666;
  line-height: 1.7;
  margin-bottom: 25px;
  font-size: 1rem;
}

/* Benefits Section */
.scholarship-benefits {
  margin: 30px 0;
}

.scholarship-benefits h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.scholarship-benefits h4 i {
  color: #28a745;
  font-size: 1rem;
}

.benefits-list,
.requirements-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.benefits-list li,
.requirements-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
  padding: 12px 15px;
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
  border-radius: 10px;
  border-left: 4px solid #28a745;
  transition: all 0.3s ease;
}

.benefits-list li:hover,
.requirements-list li:hover {
  transform: translateX(5px);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.benefits-list li i,
.requirements-list li i {
  color: #28a745;
  font-size: 1rem;
  margin-top: 2px;
  flex-shrink: 0;
}

/* Action Buttons */
.scholarship-actions {
  display: flex;
  gap: 15px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.action-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 25px;
  border-radius: 25px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
}

.action-btn.primary {
  background: linear-gradient(135deg, #1e3c72, #2a5298);
  color: #fff;
}

.action-btn.primary:hover {
  background: linear-gradient(135deg, #2a5298, #1e3c72);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(30, 60, 114, 0.3);
  color: #fff;
}

.action-btn.secondary {
  background: linear-gradient(135deg, #ff9800, #f57c00);
  color: #fff;
}

.action-btn.secondary:hover {
  background: linear-gradient(135deg, #f57c00, #ff9800);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 152, 0, 0.3);
  color: #fff;
}

/* Requirements Note */
.requirements-note {
  margin-top: 25px;
  padding: 15px 20px;
  background: linear-gradient(135deg, #fff3cd, #ffeaa7);
  border-radius: 10px;
  border-left: 4px solid #ff9800;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.requirements-note i {
  color: #ff9800;
  margin-top: 2px;
  flex-shrink: 0;
}

.requirements-note small {
  color: #856404;
  line-height: 1.5;
  font-size: 0.9rem;
}

/* Additional Info Section */
.scholarship-additional-info {
  margin-top: 60px;
  position: relative;
  z-index: 2;
}

.info-card {
  background: #fff;
  padding: 30px 25px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: 100%;
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.info-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #ff9800, #f57c00);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.5rem;
  margin: 0 auto 20px;
  box-shadow: 0 8px 20px rgba(255, 152, 0, 0.3);
}

.info-card h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 15px;
}

.info-card p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 15px;
  font-size: 0.95rem;
}

.info-link {
  color: #ff9800;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.info-link:hover {
  color: #f57c00;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .scholarship-title {
    font-size: 2.5rem;
  }
  
  .scholarship-subtitle {
    font-size: 1.1rem;
  }
}

@media (max-width: 768px) {
  .scholarship-section {
    padding: 60px 0;
  }
  
  .scholarship-title {
    font-size: 2rem;
  }
  
  .scholarship-subtitle {
    font-size: 1rem;
  }
  
  .scholarship-card-header {
    padding: 25px 20px;
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  
  .scholarship-info,
  .scholarship-requirements {
    padding: 25px 20px;
  }
  
  .scholarship-actions {
    flex-direction: column;
  }
  
  .action-btn {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .scholarship-header {
    padding: 20px 0;
  }
  
  .scholarship-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
  
  .scholarship-title {
    font-size: 1.8rem;
  }
  
  .scholarship-type h2 {
    font-size: 1.4rem;
  }
  
  .info-card {
    padding: 20px 15px;
  }
}

/* Animation Effects */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.scholarship-card {
  animation: fadeInUp 0.8s ease-out;
}

.scholarship-card:nth-child(even) {
  animation-delay: 0.2s;
}

.info-card {
  animation: fadeInUp 0.6s ease-out;
}

.info-card:nth-child(2) { animation-delay: 0.1s; }
.info-card:nth-child(3) { animation-delay: 0.2s; }