@import url("https://fonts.cdnfonts.com/css/sf-pro-display");

body {
  font-family: "SF Pro Display", -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: #f2f2f7;
  color: #000000;
  -webkit-font-smoothing: antialiased;
}

.card {
  border: none;
  border-radius: 10px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.form-control,
.form-select {
  height: 44px;
  border-radius: 10px;
  border: 1px solid #c7c7cc;
  padding: 0 16px;
  font-size: 17px;
  transition: all 0.2s ease;
}

.form-control:focus,
.form-select:focus {
  border-color: #007aff;
  box-shadow: 0 0 0 3px rgba(0, 122, 255, 0.1);
}

.form-label {
  font-size: 15px;
  font-weight: 500;
  color: #3a3a3c;
  margin-bottom: 8px;
}

.btn {
  height: 44px;
  border-radius: 10px;
  font-size: 17px;
  font-weight: 500;
  padding: 0 20px;
  transition: all 0.2s ease;
}

.btn-primary {
  background-color: #007aff;
  border: none;
}

.btn-primary:hover {
  background-color: #0063cc;
}

.steps-container {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 32px 0;
  padding: 0 16px;
  position: relative;
  flex-wrap: wrap;
}

.step {
  position: relative;
  display: flex;
  align-items: center;
  min-width: 120px;
  padding: 8px 16px;
  background: transparent;
  z-index: 2;
}

.step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: #f2f2f7;
  color: #8e8e93;
  font-size: 14px;
  font-weight: 600;
  margin-right: 12px;
  transition: all 0.3s ease;
  border: 2px solid #e5e5ea;
}

.step-text {
  font-size: 14px;
  font-weight: 500;
  color: #8e8e93;
  transition: all 0.3s ease;
}

.step.active .step-number {
  background-color: #007aff;
  border-color: #007aff;
  color: white;
  box-shadow: 0 4px 12px rgba(0, 122, 255, 0.25);
  transform: scale(1.1);
}

.step.active .step-text {
  color: #007aff;
  font-weight: 600;
}

.step.completed .step-number {
  background-color: #34c759;
  border-color: #34c759;
  color: white;
}

.step.completed .step-text {
  color: #34c759;
}

.line {
  flex: 1;
  height: 3px;
  background: linear-gradient(
    90deg,
    rgba(0, 122, 255, 0.1) 0%,
    rgba(52, 199, 89, 0.1) 100%
  );
  margin: 0 -8px;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.line.completed {
  background: linear-gradient(90deg, #007aff 0%, #34c759 100%);
  box-shadow: 0 2px 6px rgba(0, 122, 255, 0.15);
}

.step.active ~ .line {
  background: linear-gradient(
    90deg,
    rgba(0, 122, 255, 0.1) 0%,
    rgba(0, 122, 255, 0.05) 100%
  );
}

.invalid-feedback {
  font-size: 13px;
  color: #ff3b30;
  margin-top: 4px;
}

#upload-area {
  width: 100%;
  height: 120px;
  border: 2px dashed #c7c7cc;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8e8e93;
  cursor: pointer;
  transition: all 0.3s ease;
  background-color: #f8f9fa;
  padding: 20px;
  text-align: center;
  overflow: hidden;
}

#upload-area:hover {
  border-color: #007aff;
  color: #007aff;
  background-color: #f0f7ff;
}

#upload-area.drag-over {
  border-color: #007aff;
  background-color: #f0f7ff;
  transform: scale(1.02);
}

#upload-area i {
  margin-bottom: 8px;
}

#upload-area .text-success {
  color: #28a745;
}

#upload-area .preview-container {
  display: flex;
  align-items: center;
  gap: 15px;
  width: 100%;
}

#upload-area .file-info {
  flex: 1;
  text-align: left;
  min-width: 0;
}

#upload-area .file-name {
  font-size: 13px;
  color: #3a3a3c;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
  background-color: rgba(0, 0, 0, 0.05);
  padding: 4px 8px;
  border-radius: 4px;
  margin-bottom: 4px;
}

#upload-area .file-size {
  font-size: 12px;
  color: #8e8e93;
}

#upload-area img {
  max-height: 80px;
  width: auto;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

#upload-area .text-center {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

@media (max-width: 767px) {
  .steps-container {
    margin: 20px 0;
    padding: 0 8px;
    overflow-x: auto;
    justify-content: flex-start;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
  }

  .steps-container::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
  }

  .step {
    min-width: auto;
    padding: 4px 12px;
    flex-shrink: 0;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .step-number {
    width: 28px;
    height: 28px;
    font-size: 12px;
    margin-right: 0;
    margin-bottom: 4px;
  }

  .step-text {
    font-size: 11px;
    display: block;
    max-width: 80px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .line {
    min-width: 20px;
    margin: 0 2px;
  }

  .step.active .step-number {
    transform: scale(1.15);
  }

  .mobil-gizle {
    display: none !important;
  }
  .mobil-goster {
    display: block !important;
  }
  .step {
    padding-top: 30px;
  }
  .mmt {
    margin-top: 1.5rem !important;
  }
}

.mobil-gizle {
  display: block !important;
}
.mobil-goster {
  display: none !important;
}

