/* static/css/contact-success.css */
body {
  font-family: system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  max-width: 900px;
  margin: 3rem auto;
  padding: 0 1.5rem;
  text-align: center;
  color: #1f2937;
  background: white;
}

.success-card {
  background: linear-gradient(145deg, #f8fbff, #f0f9ff);
  border: 1px solid #dbeafe;
  border-radius: 16px;
  padding: 2.5rem 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.check-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, #3b82f6, #f97316);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 28px;
  font-weight: bold;
}

h1 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #1e40af;
}

p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #374151;
  max-width: 600px;
  margin: 0 auto 1.5rem;
}

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

.btn {
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-home {
  background: linear-gradient(to right, #3b82f6, #2563eb);
  color: white;
}

.btn-home:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.btn-telegram {
  background: white;
  color: #3b82f6;
  border: 1px solid #dbeafe;
}

.btn-telegram:hover {
  background: #f0f9ff;
  transform: translateY(-2px);
}

@media (max-width: 600px) {
  .actions { gap: 0.75rem; }
  .btn { padding: 0.65rem 1.25rem; font-size: 0.95rem; }
}