.contact-section {
  background: var(--color-bg-medium);
  padding: 80px 0;
}

.contact-wrapper {
  max-width: 700px;
  margin: 0 auto;
}

.contact-form-container {
  background: var(--color-bg-dark);
  padding: 48px;
  border-radius: var(--border-radius-lg);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-label {
  font-size: 16px;
  font-weight: 600;
  color: var(--color-text-white);
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 14px 16px;
  font-size: 16px;
  font-family: var(--font-main);
  color: var(--color-text-white);
  background: var(--color-bg-medium);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  transition: border-color 0.2s ease;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.3);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--color-text-gray);
}

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

.form-submit {
  margin-top: 8px;
  width: 100%;
}

.thank-you-message {
  background: var(--color-bg-dark);
  padding: 64px 48px;
  border-radius: var(--border-radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
}

.thank-you-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #5c32c7 0%, #8b5cf6 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  color: var(--color-text-white);
  font-weight: 900;
}

.thank-you-title {
  font-size: 36px;
  font-weight: 900;
  color: var(--color-text-white);
}

.thank-you-text {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--color-text-light-gray);
  max-width: 500px;
}

@media (max-width: 768px) {
  .contact-section {
    padding: 60px 0;
  }

  .contact-form-container,
  .thank-you-message {
    padding: 32px 24px;
  }

  .thank-you-icon {
    width: 64px;
    height: 64px;
    font-size: 36px;
  }

  .thank-you-title {
    font-size: 28px;
  }

  .thank-you-text {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .contact-section {
    padding: 40px 0;
  }

  .form-label {
    font-size: 14px;
  }

  .form-input,
  .form-textarea {
    font-size: 14px;
    padding: 12px 14px;
  }
}
