/* THANK YOU PAGE SPECIFIC STYLES */

/* Thank You Hero Section */
.thank-you-hero {
  padding: 8rem 0 6rem 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  margin-top: 80px;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.thank-you-content {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem;
}

.success-icon {
  color: #4caf50;
  margin-bottom: 2rem;
  opacity: 0;
  transform: scale(0.5);
  animation: popIn 0.6s ease-out 0.3s forwards;
}

@keyframes popIn {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.thank-you-content h1 {
  font-family: 'Lato', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: #000;
  margin-bottom: 1rem;
  opacity: 0;
  transform: translateY(30px);
  animation: slideInUp 0.8s ease-out 0.6s forwards;
}

.thank-you-message {
  font-size: clamp(1.1rem, 2.5vw, 1.3rem);
  color: #666;
  margin-bottom: 3rem;
  line-height: 1.6;
  opacity: 0;
  transform: translateY(30px);
  animation: slideInUp 0.8s ease-out 0.9s forwards;
}

@keyframes slideInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Next Steps Section */
.next-steps {
  margin-bottom: 3rem;
  opacity: 0;
  transform: translateY(30px);
  animation: slideInUp 0.8s ease-out 1.2s forwards;
}

.next-steps h2 {
  font-family: 'Lato', sans-serif;
  font-size: 2rem;
  font-weight: 600;
  color: #000;
  margin-bottom: 2rem;
}

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

.step-item {
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
}

.step-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.step-icon {
  width: 50px;
  height: 50px;
  background: #ffe600;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: #000;
}

.step-content h3 {
  font-family: 'Lato', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: #000;
  margin-bottom: 0.5rem;
}

.step-content p {
  color: #666;
  line-height: 1.5;
  font-size: 0.95rem;
}

/* Contact Info Summary */
.contact-info-summary {
  margin-bottom: 3rem;
  opacity: 0;
  transform: translateY(30px);
  animation: slideInUp 0.8s ease-out 1.5s forwards;
}

.contact-info-summary h2 {
  font-family: 'Lato', sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #000;
  margin-bottom: 1.5rem;
}

.contact-options {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.contact-option {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: #000;
  color: #fff;
  padding: 1rem 1.5rem;
  border-radius: 25px;
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 500;
}

.contact-option:hover {
  background: #ffe600;
  color: #000;
  transform: translateY(-2px);
}

.contact-icon {
  flex-shrink: 0;
}

/* Action Buttons */
.action-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(30px);
  animation: slideInUp 0.8s ease-out 1.8s forwards;
}

.btn {
  display: inline-flex;
  align-items: center;
  padding: 1rem 2rem;
  text-decoration: none;
  border-radius: 25px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
}

.btn-primary {
  background: #000;
  color: #fff;
}

.btn-primary:hover {
  background: #ffe600;
  color: #000;
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: #000;
  border: 2px solid #000;
}

.btn-secondary:hover {
  background: #000;
  color: #fff;
  transform: translateY(-2px);
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
  .thank-you-hero {
    padding: 6rem 0 4rem 0;
    margin-top: 70px;
  }
  
  .thank-you-content {
    padding: 1rem;
  }
  
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .contact-options {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  
  .action-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .thank-you-content {
    padding: 0.5rem;
  }
  
  .step-item {
    padding: 1.5rem;
  }
  
  .success-icon svg {
    width: 60px;
    height: 60px;
  }
  
  .next-steps h2 {
    font-size: 1.5rem;
  }
  
  .contact-info-summary h2 {
    font-size: 1.3rem;
  }
}