#formModalOverlay .modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  min-height: 100vh;
  min-width: 100vw;
}

#formModalOverlay .modal-content {
  background: white;
  padding: 2rem;
  border-radius: 8px;
  width: 90%;
  max-width: 500px;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
  margin: auto;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.08);
  transform: translateY(0);
  animation: modalFadeIn 0.3s ease-out;
}

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

@media (max-width: 768px) {
  #formModalOverlay .modal-content {
    width: 95%;
    margin: 10px;
    max-height: 95vh;
  }
}

#formModalOverlay .close-button {
  position: absolute;
  top: 1rem;
  right: 1rem;
  border: none;
  background: none;
  font-size: 1.5rem;
  cursor: pointer;
}

#formModalOverlay .progress-bar {
  width: 100%;
  height: 4px;
  background-color: #eee;
  border-radius: 2px;
  margin-bottom: 1rem;
}

#formModalOverlay .progress-fill {
  height: 100%;
  background-color: #007bff;
  border-radius: 2px;
  transition: width 0.3s ease;
}

#formModalOverlay .step-indicator {
  text-align: center;
  margin-bottom: 1.5rem;
  color: #666;
}

#formModalOverlay .main-title {
  font-size: 1.8rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 1rem;
  color: #007bff;
  line-height: 1.4;
}

#formModalOverlay .step-title {
  font-size: 1.2rem;
  font-weight: 500;
  text-align: center;
  margin-bottom: 2rem;
  color: #333;
}

#formModalOverlay .step-info {
  text-align: center;
  color: #666;
  font-size: 0.9rem;
  margin-bottom: 2rem;
}

#formModalOverlay .options-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}

#formModalOverlay .option-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.5rem;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
}

#formModalOverlay .option-card:hover {
  border-color: #007bff;
  background-color: #f8f9ff;
}

#formModalOverlay .option-icon {
  margin-bottom: 1rem;
  color: #007bff;
}

#formModalOverlay .option-icon svg {
  fill: currentColor;
}

#formModalOverlay .radio-group {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.6rem;
  margin: 1.5rem 0;
  max-height: 350px;
  overflow-y: auto;
  padding-right: 8px;
}

#formModalOverlay .modern-radio {
  display: flex;
  align-items: center;
  padding: 0.7rem;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
  background: white;
  min-height: 45px;
}

#formModalOverlay .modern-radio:hover {
  border-color: #007bff;
  background-color: #f8f9ff;
  transform: translateY(-1px);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

#formModalOverlay .modern-radio input[type="radio"] {
  width: 14px;
  height: 14px;
  margin-right: 6px;
  flex-shrink: 0;
}

#formModalOverlay .modern-radio input[type="radio"]:checked {
  background-color: #007bff;
  border-color: #007bff;
}

#formModalOverlay .modern-radio input[type="radio"]:checked::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  background-color: white;
  border-radius: 50%;
}

#formModalOverlay .modern-radio .radio-label {
  font-size: 0.85rem;
  line-height: 1.2;
  word-wrap: break-word;
}

#formModalOverlay .checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

#formModalOverlay .checkbox-label {
  display: flex;
  align-items: center;
  gap: 12px;
  text-align: left;
  padding: 1rem;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
}

#formModalOverlay .checkbox-label input {
  margin: 0;
  width: 18px;
  height: 18px;
  accent-color: #007bff;
}

#formModalOverlay .checkbox-label span {
  flex: 1;
  font-size: 0.95rem;
  color: #333;
}

#formModalOverlay .checkbox-label:hover {
  border-color: #007bff;
  background-color: #f8f9ff;
  transform: translateY(-1px);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

#formModalOverlay .button-group {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

#formModalOverlay .back-button,
#formModalOverlay .continue-button,
#formModalOverlay .submit-button {
  padding: 0.8rem 1.5rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1rem;
  transition: background-color 0.2s ease;
}

#formModalOverlay .back-button {
  background-color: #f0f0f0;
}

#formModalOverlay .continue-button,
#formModalOverlay .submit-button {
  background-color: #007bff;
  color: white;
  flex: 1;
}

#formModalOverlay .continue-button:hover,
#formModalOverlay .submit-button:hover {
  background-color: #0056b3;
}

#formModalOverlay .submit-button:disabled {
  background-color: #cccccc;
  cursor: not-allowed;
}

#formModalOverlay .form-group {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

#formModalOverlay .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

#formModalOverlay .input-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

#formModalOverlay .input-group label {
  font-size: 0.9rem;
  color: #666;
}

#formModalOverlay .input-group input,
#formModalOverlay .input-group textarea {
  padding: 0.8rem;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  font-size: 1rem;
}

#formModalOverlay .input-group textarea {
  resize: vertical;
  min-height: 100px;
}

#formModalOverlay .input-group input:focus,
#formModalOverlay .input-group textarea:focus {
  outline: none;
  border-color: #007bff;
  box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.1);
}

/* Responsive tasarım için */
@media (max-width: 768px) {
  #formModalOverlay .main-title {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
  }
  
  #formModalOverlay .step-info {
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
  }

  #formModalOverlay .radio-group {
    gap: 0.5rem;
    max-height: 300px;
  }
  
  #formModalOverlay .modern-radio {
    padding: 0.6rem;
    min-height: 40px;
  }

  #formModalOverlay .modern-radio .radio-label {
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  #formModalOverlay .main-title {
    font-size: 1.6rem;
  }

  #formModalOverlay .step-title {
    font-size: 1.3rem;
  }

  #formModalOverlay .radio-group {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.4rem;
  }
  
  #formModalOverlay .modern-radio {
    padding: 0.5rem;
    min-height: 35px;
  }

  #formModalOverlay .modern-radio input[type="radio"] {
    width: 12px;
    height: 12px;
    margin-right: 4px;
  }

  #formModalOverlay .modern-radio .radio-label {
    font-size: 0.75rem;
  }
}

/* Diğer stiller... */

/* Mevcut #formModalOverlay stilleri kalacak */
#formModalOverlay {
  display: none; /* Başlangıçta gizli olacak */
}

/* modal-overlay class'ı için stil ekleyelim */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  min-height: 100vh;
  min-width: 100vw;
}

/* Step 3 için özel stiller */
#formModalOverlay #step3 .options-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin: 1.5rem 0;
}

#formModalOverlay #step3 .option-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.2rem;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  background: white;
  text-align: center;
  min-height: 140px;
  justify-content: center;
}

#formModalOverlay #step3 .option-card:hover {
  border-color: #007bff;
  background-color: #f8f9ff;
  transform: translateY(-2px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

#formModalOverlay #step3 .option-card.selected {
  border-color: #007bff;
  background-color: #f0f7ff;
  box-shadow: 0 2px 4px rgba(0, 123, 255, 0.2);
}

#formModalOverlay #step3 .option-icon {
  margin-bottom: 1rem;
  color: #007bff;
}

#formModalOverlay #step3 .option-icon svg {
  fill: currentColor;
}

#formModalOverlay #step3 .option-card span {
  font-size: 0.9rem;
  color: #333;
  font-weight: 500;
  line-height: 1.3;
}

/* Responsive tasarım için */
@media (max-width: 768px) {
  #formModalOverlay #step3 .options-grid {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }

  #formModalOverlay #step3 .option-card {
    padding: 1rem;
    min-height: 120px;
  }

  #formModalOverlay #step3 .option-card span {
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  #formModalOverlay #step3 .option-card {
    padding: 0.8rem;
    min-height: 100px;
  }

  #formModalOverlay #step3 .option-icon svg {
    width: 36px;
    height: 36px;
  }

  #formModalOverlay #step3 .option-card span {
    font-size: 0.8rem;
  }
}

/* Step 3 için basit stiller */
#formModalOverlay #step3 .simple-radio-group {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 2rem 0;
}

#formModalOverlay #step3 .simple-radio {
  display: flex;
  align-items: center;
  padding: 1rem 1.2rem;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  background: white;
}

#formModalOverlay #step3 .simple-radio:hover {
  border-color: #007bff;
  background-color: #f8f9ff;
}

#formModalOverlay #step3 .simple-radio input[type="radio"] {
  width: 18px;
  height: 18px;
  margin-right: 12px;
  accent-color: #007bff;
}

#formModalOverlay #step3 .simple-radio span {
  font-size: 0.95rem;
  color: #333;
  font-weight: 500;
}

/* Responsive tasarım için */
@media (max-width: 768px) {
  #formModalOverlay #step3 .simple-radio {
    padding: 0.8rem 1rem;
  }

  #formModalOverlay #step3 .simple-radio span {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  #formModalOverlay #step3 .simple-radio {
    padding: 0.7rem 0.9rem;
  }

  #formModalOverlay #step3 .simple-radio span {
    font-size: 0.85rem;
  }

  #formModalOverlay #step3 .simple-radio input[type="radio"] {
    width: 16px;
    height: 16px;
    margin-right: 10px;
  }
}

/* Step 4 için özel stiller */
#formModalOverlay #step4 .location-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin: 2rem 0;
  width: 100%;
  padding: 0 1rem;
}

#formModalOverlay #step4 .input-group {
  width: 100%;
}

#formModalOverlay #step4 .input-group label {
  font-size: 0.9rem;
  color: #666;
  font-weight: 500;
}

#formModalOverlay #step4 .icon-input {
  position: relative;
  display: flex;
  align-items: center;
}

#formModalOverlay #step4 .icon-input i {
  position: absolute;
  left: 1rem;
  font-size: 1.2rem;
  color: #666;
}

#formModalOverlay #step4 .icon-input input {
  width: 100%;
  padding: 1rem 1rem 1rem 2.8rem;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  font-size: 1rem;
  background: #f8f9fa;
}

#formModalOverlay #step4 .icon-input input:focus {
  outline: none;
  border-color: #007bff;
  box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.1);
  background: white;
}

#formModalOverlay #step4 .icon-input input::placeholder {
  color: #adb5bd;
}

#formModalOverlay #step4 .button-group {
  margin-top: 2rem;
  display: flex;
  gap: 1rem;
  justify-content: space-between;
}

/* Responsive tasarım için */
@media (max-width: 768px) {
  #formModalOverlay #step4 .location-form {
    gap: 1.2rem;
    margin: 1.5rem 0;
  }

  #formModalOverlay #step4 .icon-input input {
    padding: 0.9rem 1rem 0.9rem 2.5rem;
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  #formModalOverlay #step4 .location-form {
    gap: 1rem;
    margin: 1.2rem 0;
  }

  #formModalOverlay #step4 .icon-input input {
    padding: 0.8rem 1rem 0.8rem 2.3rem;
    font-size: 0.9rem;
  }

  #formModalOverlay #step4 .input-group label {
    font-size: 0.85rem;
  }
}

/* İletişim Formu Stilleri */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin: 2rem 0;
  padding: 0 1rem;
}

.contact-form .input-group {
  position: relative;
}

.contact-form input {
  width: 100%;
  padding: 1rem 1.2rem;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background-color: #f8f9fa;
}

.contact-form input:focus {
  border-color: #007bff;
  outline: none;
  box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.1);
  background-color: #fff;
}

.contact-form input::placeholder {
  color: #6c757d;
  font-size: 0.95rem;
}

#step5 .button-group {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  padding: 0 1rem;
}

#step5 .back-button {
  padding: 0.8rem 1.5rem;
  border: none;
  border-radius: 8px;
  background-color: #f0f0f0;
  color: #333;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

#step5 .submit-button {
  flex: 1;
  padding: 0.8rem 1.5rem;
  border: none;
  border-radius: 8px;
  background-color: #007bff;
  color: white;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

#step5 .back-button:hover {
  background-color: #e4e4e4;
}

#step5 .submit-button:hover {
  background-color: #0056b3;
}

#step5 .submit-button:disabled {
  background-color: #ccc;
  cursor: not-allowed;
}

#step5 .step-title {
  font-size: 1.5rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 1.5rem;
  color: #333;
}

/* Responsive Tasarım */
@media (max-width: 768px) {
  .contact-form {
    gap: 1rem;
    margin: 1.5rem 0;
  }

  .contact-form input {
    padding: 0.9rem 1rem;
    font-size: 0.95rem;
  }

  #step5 .step-title {
    font-size: 1.3rem;
    margin-bottom: 1.2rem;
  }

  #step5 .button-group {
    margin-top: 1.5rem;
  }
}

@media (max-width: 480px) {
  .contact-form {
    gap: 0.8rem;
    margin: 1.2rem 0;
    padding: 0 0.8rem;
  }

  .contact-form input {
    padding: 0.8rem 0.9rem;
    font-size: 0.9rem;
  }

  #step5 .step-title {
    font-size: 1.2rem;
    margin-bottom: 1rem;
  }

  #step5 .button-group {
    margin-top: 1.2rem;
    padding: 0 0.8rem;
  }

  #step5 .back-button,
  #step5 .submit-button {
    padding: 0.7rem 1.2rem;
    font-size: 0.95rem;
  }
}

/* Step 5 için mobil düzenlemeler */
#formModalOverlay #step5 .contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin: 2rem 0;
  width: 100%;
  padding: 0 1rem;
}

#formModalOverlay #step5 .input-group {
  width: 100%;
}

#formModalOverlay #step5 input {
  width: 100%;
  padding: 1rem 1.2rem;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  font-size: 1rem;
  background: #f8f9fa;
}

/* Mobil için responsive düzenlemeler */
@media (max-width: 768px) {
  #formModalOverlay .modal-content {
    width: 95%;
    padding: 1.5rem;
    margin: 1rem;
  }

  #formModalOverlay #step4 .location-form,
  #formModalOverlay #step5 .contact-form {
    padding: 0;
    margin: 1.5rem 0;
  }

  #formModalOverlay #step4 .icon-input input,
  #formModalOverlay #step5 input {
    padding: 0.9rem;
    font-size: 0.95rem;
  }

  #formModalOverlay .button-group {
    padding: 0;
    margin-top: 1.5rem;
  }
}

@media (max-width: 480px) {
  #formModalOverlay .modal-content {
    width: 92%;
    padding: 1.2rem;
    margin: 0.8rem;
  }

  #formModalOverlay #step4 .location-form,
  #formModalOverlay #step5 .contact-form {
    gap: 1rem;
    margin: 1.2rem 0;
  }

  #formModalOverlay #step4 .icon-input input,
  #formModalOverlay #step5 input {
    padding: 0.8rem;
    font-size: 0.9rem;
  }

  #formModalOverlay .button-group {
    margin-top: 1.2rem;
  }

  #formModalOverlay .back-button,
  #formModalOverlay .continue-button,
  #formModalOverlay .submit-button {
    padding: 0.8rem 1.2rem;
    font-size: 0.9rem;
  }
}

/* Input alanları için genel düzenlemeler */
#formModalOverlay input {
  box-sizing: border-box;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

#formModalOverlay input:focus {
  outline: none;
  border-color: #007bff;
  box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.1);
  background: white;
}
