/* === Form Konteyneri === */
.helix-anket-form {
  max-width: 100%;
  margin: 40px auto;
  background: #f9fcff;
  padding: 40px;
  border-radius: 12px;
  border: 1px solid #cce6ff;
  box-shadow: 0 4px 25px rgba(0, 85, 170, 0.05);
  font-family: inherit;
}
.anket-step-indicator:last-child {
    max-width: fit-content;
}

/* === Başlıklar === */
.helix-anket-form h4 {
  font-size: 22px;
  font-weight: 600;
  color: #003d66;
  border-bottom: 1px solid #e1effa;
  padding-bottom: 10px;
}
.helix-anket-form label input {
    margin: 0;
}
/* === Sorular === */
.helix-anket-form p {
  margin-bottom: 24px;
}

.helix-anket-form strong {
    display: block;
    margin-bottom: 10px;
    font-size: 16px;
    color: #1b1b1b;
}

/* === Seçenekler (Radio, Checkbox) === */


.helix-anket-form input[type="radio"],
.helix-anket-form input[type="checkbox"] {
  margin-right: 8px;
  vertical-align: middle;
  transform: scale(1.2);
}

.helix-anket-form textarea {
  width: 100%;
  min-height: 100px;
  padding: 12px 16px;
  font-size: 14px;
  border-radius: 8px;
  border: 1px solid #ccc;
  background: #fafafa;
  transition: border 0.3s ease;
}

.helix-anket-form input[type="text"], .helix-anket-form input[type="email"], .helix-anket-form input[type="number"] {
    height: auto;
    padding: 12px 16px;
    font-size: 14px;
    border-radius: 8px;
    border: 1px solid #ccc;
    background: #fafafa;
    transition: border 0.3s ease;
    max-width: 48%;
    width: 100%;
    float: left;
}

.helix-anket-form input:focus,
.helix-anket-form textarea:focus {
  border-color: #0073aa;
  background: #fff;
  outline: none;
}

/* === Butonlar === */
.form-navigation {
    display: flex;
    justify-content: flex-end;
    margin-top: 30px;
    gap: 16px;
    width: 100%;
}

.form-navigation button {
  padding: 12px 28px;
  background: #0073aa;
  color: white;
  font-size: 15px;
  border: none;
  border-radius: 8px;
  transition: background 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}

.form-navigation button:hover {
  background: #005c8a;
}
.helix-anket-form label {
    float: left;
    max-width: fit-content;
    cursor: pointer;
    height: 20px;
    margin-bottom: 0px;
    display: flex;
    align-content: center;
    justify-content: center;
    align-items: center;
    margin-right: 35px;
    font-weight: 400;
}
/* === Ek Alanlar (İletişim) === */
.extra-fields {
    margin-top: 20px;
	margin-bottom:20px;
    float: left;
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
}


/* === reCAPTCHA === */
.helix-anket-form .g-recaptcha {
  margin-top: 25px;
}

/* === Etap Gösterge Çubuğu === */
.anket-progress {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  padding: 0 10px;
}

.anket-step-indicator {
  display: flex;
  align-items: center;
  flex: 1;
}

.anket-step-indicator .circle {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #f0f0f0;
  color: #333;
  font-weight: 600;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 2px solid #ccc;
  transition: all 0.3s ease;
}

.anket-step-indicator .line {
  flex: 1;
  height: 2px;
  background: #ccc;
  margin: 0 10px;
}

.anket-step-indicator .circle.active {
  background: #0073aa;
  border-color: #0073aa;
  color: #fff;
}

.anket-step-indicator .circle.done {
  background: #0c89c5;
  border-color: #0c89c5;
  color: #fff;
}

/* === Animasyon === */
.anket-step.fadeIn {
  animation: fade-in 0.3s ease-in-out;
}

@keyframes fade-in {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* === Responsive === */
@media (max-width: 600px) {
  .helix-anket-form {
    padding: 24px;
  }
	.helix-anket-form input[type="text"], .helix-anket-form input[type="email"], .helix-anket-form input[type="number"] {
    max-width: 100%;
}
	label.kvkk {
    display: block;
    width: 100%;
    font-size: 14px;
    margin-top: 10px !important;
    margin-right: 0px;
    margin-bottom: 10px !important;
}
.soru-alani {
    border-bottom: 1px solid #e1effa;
    padding-top: 30px;
    padding-bottom: 30px;
}
.form-navigation {padding-top: 30px;-: 0px;align-items: center;}
  .form-navigation {
    flex-direction: column;
    gap: 14px;
  }

  .form-navigation button {
    width: 100%;
  }
.anket-progress {
    margin-bottom: 0px;
}


  .anket-step-indicator {
    flex-direction: row;
    margin-bottom: 10px;
  }

  .anket-step-indicator .line {
    display: none;
  }
}
.helix-question {
  margin-bottom: 30px;
}

.helix-question label {
  display: inline-flex;
  align-items: center;
  margin-right: 20px;
  font-size: 16px;
  font-weight: 500;
  gap: 6px;
}

.helix-question input[type="radio"] {
  margin: 0;
}

@media (max-width: 768px) {
  .helix-question label {
    display: inline-block;
    width: 48%;
    margin-bottom: 8px;
  }
}

/* ANKET.CSS – TAM DOSYA */

.helix-anket-wrapper {
  background: linear-gradient(to bottom, #f9fcff, #ffffff);
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 0 20px rgba(0, 123, 255, 0.08);
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #333;
  max-width: 1000px;
  margin: 40px auto;
  border: 1px solid #d9eafd;
}

.helix-progress {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  padding: 10px 20px;
  position: relative;
}

.helix-progress::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 5%;
  right: 5%;
  height: 2px;
  background: #d0e5ff;
  z-index: 1;
}

.helix-progress-step {
  position: relative;
  z-index: 2;
  background: #fff;
  border: 2px solid #d0e5ff;
  color: #4a90e2;
  font-weight: bold;
  width: 36px;
  height: 36px;
  line-height: 32px;
  text-align: center;
  border-radius: 50%;
  font-size: 16px;
}

.helix-progress-step.active {
  background: #0073e6;
  color: white;
  border-color: #0073e6;
}

.helix-question {
  margin-bottom: 40px;
}

.helix-question p {
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 12px;
  color: #222;
}

.helix-question label {
  display: inline-flex;
  align-items: center;
  margin-right: 24px;
  font-size: 16px;
  color: #333;
  gap: 6px;
  cursor: pointer;
}

.helix-question input[type="radio"] {
  margin: 0;
  accent-color: #0073e6;
}

.helix-buttons {
  margin-top: 20px;
  display: flex;
  justify-content: flex-end;
}

.helix-buttons button {
  background: #0073e6;
  color: #fff;
  border: none;
  padding: 12px 28px;
  font-size: 16px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.helix-buttons button:hover {
  background: #005bb5;
}

/* Form görünürse */
.helix-contact-form {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid #d9eafd;
}

/* Responsive */
@media (max-width: 768px) {
  .helix-question label {
    display: inline-block;
    width: 48%;
    margin-bottom: 10px;
  }

  .helix-buttons {
    justify-content: center;
  }

  .helix-buttons button {
    width: 100%;
  }

  .helix-progress {
    flex-wrap: wrap;
    gap: 10px;
  }
}

.soru-alani {
    float: left;
    width: 100%;
    padding-bottom: 20px;
}
.sorular {
    width: 100%;
    float: left;
    height: auto;
	margin-top:15px;
}
.helix-anket-form .g-recaptcha {
    margin-top: 25px;
    float: left;
    width: 100%;
    display: flex;
    justify-content: flex-end;
}
.helix-anket-form label input {
    margin: 0;
    max-width: fit-content;
}