/* ===================================
   SUCCESS PAGE STYLES
   =================================== */

/* More specific selectors without !important */
.success-hero .container .success-content {
  color: white;
}

.success-hero .container .success-content h1 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  color: white;
}

.success-hero .container .success-content .success-subtitle {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  opacity: 0.9;
  line-height: 1.6;
  color: white;
}

.success-hero {
  padding: 120px 0 80px;
  background: var(--gradient-primary);
  text-align: center;
  min-height: 60vh;
  display: flex;
  align-items: center;
}

.success-content {
  max-width: 600px;
  margin: 0 auto;
}

.success-icon {
  width: 100px;
  height: 100px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  animation: success-pulse 2s ease-in-out;
}

.success-icon i {
  font-size: 3rem;
  color: var(--success-color);
}

.success-content h1 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.success-subtitle {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  opacity: 0.9;
  line-height: 1.6;
  color: white;
}

.success-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.success-actions .btn-primary {
  background: white;
  color: var(--primary-color);
}

.success-actions .btn-outline {
  background: transparent;
  color: white;
  border-color: white;
}

.success-actions .btn-outline:hover {
  background: white;
  color: var(--primary-color);
}

/* Next Steps Section */
.success-next-steps {
  padding: 80px 0;
  background: var(--bg-secondary);
}

.next-steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.step-card {
  background: white;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
  text-align: center;
  transition: all 0.3s ease;
}

.step-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.step-number {
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 auto 1.5rem;
}

.step-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.step-card p {
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Success Animation */
@keyframes success-pulse {
  0% {
    transform: scale(0.8);
    opacity: 0;
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

/* ===================================
   RESPONSIVE DESIGN - SUCCESS PAGE
   =================================== */

@media (max-width: 768px) {
  .success-content h1 {
    font-size: 2.5rem;
  }
  
  .success-subtitle {
    font-size: 1.125rem;
  }
  
  .success-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .next-steps-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .success-content h1 {
    font-size: 2rem;
  }
  
  .success-icon {
    width: 80px;
    height: 80px;
  }
  
  .success-icon i {
    font-size: 2.5rem;
  }
  
  .step-card {
    padding: 1.5rem;
  }
}