/* Form page layout */
.form-page-hero {
  padding: 80px 0 40px;
  text-align: center;
}

.form-page-hero .section-tag {
  display: inline-block;
  background: rgba(0, 255, 136, 0.1);
  color: #00ff88;
  padding: 6px 16px;
  border-radius: 40px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 16px;
}

.form-page-hero h1 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 12px;
}

.form-page-hero p {
  color: #94a3b8;
  max-width: 560px;
  margin: 0 auto;
}

.form-page-section {
  padding: 40px 0 80px;
}

.form-page-wrapper {
  max-width: 720px;
  margin: 0 auto;
}

.form-card {
  background: rgba(15, 15, 25, 0.6);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 255, 136, 0.15);
  border-radius: 28px;
  padding: 32px;
}

.form-card .form-header {
  margin-bottom: 28px;
}

.form-card .form-header h3 {
  font-size: 1.6rem;
  margin-bottom: 8px;
}

.form-card .form-header p {
  color: #94a3b8;
  font-size: 0.9rem;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.9rem;
  color: #cbd5e1;
  font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  background: rgba(10, 10, 15, 0.8);
  border: 1px solid rgba(0, 255, 136, 0.2);
  border-radius: 16px;
  color: white;
  font-family: inherit;
  font-size: 0.95rem;
  transition: 0.3s;
}

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%2300ff88' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  padding-right: 44px;
}

.form-group select option {
  background: #0a0a0f;
  color: white;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: #00ff88;
  box-shadow: 0 0 10px rgba(0, 255, 136, 0.2);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.btn-submit {
  width: 100%;
  background: linear-gradient(135deg, #00ff88, #00cc6a);
  color: #0a0a0f;
  padding: 14px 28px;
  border-radius: 40px;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: 0.3s;
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 255, 136, 0.3);
}

.success-message {
  background: rgba(0, 255, 136, 0.1);
  border: 1px solid #00ff88;
  border-radius: 16px;
  padding: 16px;
  margin-top: 20px;
  text-align: center;
  color: #00ff88;
  display: none;
}

.success-message.show {
  display: block;
  animation: formFadeIn 0.5s ease;
}

@keyframes formFadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
  .form-row {
    grid-template-columns: 1fr;
  }

  .form-card {
    padding: 24px;
  }
}
