.unggulan-section {
  padding: 5rem 0;
  background: linear-gradient(180deg, #f8fafc 0%, #e2e8f0 100%);
  position: relative;
  overflow: hidden;
}

.unggulan-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.unggulan-container {
  position: relative;
  z-index: 2;
  
}

.unggulan-header {
  text-align: center;
  margin-bottom: 4rem;
}

.unggulan-title {
  font-size: 3rem;
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #1e293b 0%, #475569 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.unggulan-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(135deg, #4f46e5, #7c3aed);
  border-radius: 2px;
}

.unggulan-subtitle {
  font-size: 1.2rem;
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
}

.unggulan-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 3rem;
  margin-top: 2rem;
}

.unggulan-box {
  background: white;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  position: relative;
  border: 1px solid #e2e8f0;
}

.unggulan-image-wrapper {
  position: relative;
  height: 300px;
  overflow: hidden;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.unggulan-image-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.8), rgba(118, 75, 162, 0.8));
  z-index: 1;
}

.unggulan-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  position: relative;
  z-index: 2;
}

.unggulan-overlay {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 0.5rem 1rem;
  z-index: 3;
}

.unggulan-badge {
  font-size: 0.85rem;
  font-weight: 600;
  color: #4f46e5;
}

.unggulan-content {
  padding: 2rem;
  position: relative;
}

.unggulan-box-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1rem;
}

.unggulan-box-desc {
  color: #64748b;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.unggulan-feature-list {
  list-style: none;
  margin-bottom: 2rem;
}

.unggulan-feature-list li {
  display: flex;
  align-items: center;
  margin-bottom: 0.75rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid #f1f5f9;
  transition: all 0.3s ease;
}

.unggulan-feature-list li:hover {
  background: #f8fafc;
  padding-left: 0.5rem;
  border-radius: 8px;
  border-bottom: 1px solid transparent;
}

.unggulan-feature-list li:last-child {
  border-bottom: none;
}

.unggulan-feature-icon {
  width: 24px;
  height: 24px;
  background: linear-gradient(135deg, #10b981, #059669);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  flex-shrink: 0;
}

.unggulan-feature-icon::after {
  content: '✓';
  color: white;
  font-weight: bold;
  font-size: 0.8rem;
}

.unggulan-feature-text {
  color: #374151;
  font-weight: 500;
}

.card-actions {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.btn-primary {
  flex: 1;
  background: linear-gradient(135deg, #4f46e5, #7c3aed);
  color: white;
  padding: 0.875rem 1.5rem;
  border: none;
  border-radius: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(79, 70, 229, 0.3);
}

.btn-secondary {
  background: transparent;
  color: #4f46e5;
  padding: 0.875rem 1.5rem;
  border: 2px solid #4f46e5;
  border-radius: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.btn-secondary:hover {
  background: #4f46e5;
  color: white;
  transform: translateY(-2px);
}

/* Floating */
.unggulan-floating {
  position: absolute;
  pointer-events: none;
  opacity: 0.1;
}

.floating-1 {
  top: 10%;
  left: 5%;
  width: 60px;
  height: 60px;
  background: #4f46e5;
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}

.floating-2 {
  top: 70%;
  right: 10%;
  width: 40px;
  height: 40px;
  background: #7c3aed;
  border-radius: 50%;
  animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

/* Stats */
.unggulan-stats {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 2rem;
  margin: 3rem 0;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.unggulan-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  text-align: center;
}

.unggulan-stat-item {
  padding: 1rem;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: #4f46e5;
  display: block;
}

.stat-label {
  color: #64748b;
  font-weight: 500;
  margin-top: 0.5rem;
}

/* Responsive */
@media (max-width: 1024px) {
  .unggulan-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .unggulan-title {
    font-size: 2rem;
  }

  .unggulan-subtitle {
    font-size: 1rem;
  }

  .unggulan-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .unggulan-content {
    padding: 1.5rem;
  }

  .card-actions {
    flex-direction: column;
  }

  .unggulan-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .stat-number {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .unggulan-section {
    padding: 3rem 0;
  }

  .unggulan-stats-grid {
    grid-template-columns: 1fr;
  }
}
