* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: #0a0a0f;
  color: #e4e4e7;
  line-height: 1.6;
}

.main-content {
  padding: 96px 0 64px;
  min-height: 100vh;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 16px;
}

/* Header */
.header {
  text-align: center;
  margin-bottom: 48px;
  animation: fadeInUp 0.6s ease-out;
}

.header h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 16px;
}

@media (min-width: 768px) {
  .header h1 {
    font-size: 3rem;
  }
}

.text-gradient {
  background: linear-gradient(135deg, #8b5cf6, #a78bfa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.header p {
  font-size: 1.125rem;
  color: #a1a1aa;
  max-width: 640px;
  margin: 0 auto;
}

/* Content Grid */
.content-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  max-width: 1152px;
  margin: 0 auto;
}

@media (min-width: 1024px) {
  .content-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* Form Card */
.form-card {
  background: #18181b;
  border: 1px solid #27272a;
  border-radius: 16px;
  padding: 24px;
  animation: fadeInLeft 0.6s ease-out;
}

.form-card h2 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  background: #0a0a0f;
  border: 1px solid #27272a;
  border-radius: 8px;
  color: #e4e4e7;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #8b5cf6;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #71717a;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.error-message {
  display: block;
  font-size: 0.875rem;
  color: #ef4444;
  margin-top: 4px;
}

.char-count {
  display: block;
  font-size: 0.75rem;
  color: #71717a;
  margin-top: 4px;
}

.submit-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  background: #8b5cf6;
  border: none;
  border-radius: 8px;
  color: white;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
}

.submit-btn:hover {
  background: #7c3aed;
}

.submit-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.submit-btn.loading span {
  display: none;
}

.submit-btn.loading::after {
  content: '';
  width: 20px;
  height: 20px;
  border: 2px solid white;
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

/* Info Cards */
.info-cards {
  display: flex;
  flex-direction: column;
  gap: 24px;
  animation: fadeInRight 0.6s ease-out;
}

.info-card {
  background: #18181b;
  border: 1px solid #27272a;
  border-radius: 16px;
  padding: 24px;
}

.info-card .icon-box {
  width: 48px;
  height: 48px;
  background: rgba(139, 92, 246, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: #8b5cf6;
}

.info-card h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.info-card p {
  font-size: 0.875rem;
  color: #a1a1aa;
  margin-bottom: 8px;
}

.info-card a {
  color: #8b5cf6;
  text-decoration: none;
  transition: text-decoration 0.3s;
}

.info-card a:hover {
  text-decoration: underline;
}

/* With icon layout */
.info-card:has(.icon-box) {
  display: flex;
  gap: 16px;
}

.info-card:has(.icon-box) .icon-box {
  flex-shrink: 0;
  margin-bottom: 0;
}

.info-content {
  flex: 1;
}

/* Social Links */
.social-links {
  display: flex;
  gap: 16px;
  margin-top: 16px;
}

.social-btn {
  width: 48px;
  height: 48px;
  background: #27272a;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #a1a1aa;
  transition: all 0.3s;
}

.social-btn:hover {
  background: #8b5cf6;
  color: white;
}

/* Toast Notification */
.toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: #18181b;
  border: 1px solid #27272a;
  border-radius: 8px;
  padding: 16px 24px;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.3s;
  z-index: 1000;
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

.toast.success {
  border-color: #22c55e;
}

.toast.error {
  border-color: #ef4444;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
