.btn-teklif {
  padding: 12px 24px;
  background: #111;
  color: #fff;
  border: none;
  cursor: pointer;
  border-radius: 6px;
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.6);
  justify-content: center;
  align-items: center;
}

.modal-content {
  background: #fff;
  width: 800px;
  max-width: 95%;
  border-radius: 12px;
  position: relative;
  animation: fadeIn 0.3s ease;
  overflow: hidden;
}

.modal-body {
  display: flex;
}

.close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 35px;
  cursor: pointer;
  z-index: 2;
}

/* Form Alanı */
.form-area {
  width: 50%;
  padding: 40px;
}

.form-area h2 {
  margin-bottom: 20px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

form input, form select, form textarea {
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 6px;
  width:100%;
  margin:5px 0;
  box-sizing:border-box
}
.w-auto {
  width:auto !important;
}
.kvkk {
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.submit-btn {
  padding: 12px;
  background: #111;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

.submit-btn:hover {
  background: #333;
}

/* Görsel Alanı */
.image-area {
  width: 50%;
  height: auto;
  padding:50px 0;
}

.image-area img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius:15px;
}
button{padding:12px;border:none;background:#2563eb;color:#fff;border-radius:6px;cursor:pointer;width:100%;margin:10px 0}
button:disabled{background:#9ca3af;cursor:not-allowed}
.step{display:none}
.step.active{display:block}

.file-upload{
	position:relative;
}
.file-upload button{
	position: absolute;
    right: 10px;
    top: 4px;
    height: 30px;
    width: 30px !important;
	font-size:11px;
	display: flex;
    justify-content: center;
    align-items: center;
}
.buton-fixed {
	text-align:center;
}
/* Responsive */
@media(max-width: 768px){
  .modal-body {
    flex-direction: column;
  }
  .form-area, .image-area {
    width: 100%;
  }
  .form-area{
	padding: 10px;
	font-size:13px;
	}
  .image-area {
    height: 250px;
	display:none;
  }
  .buton-fixed {
	position: fixed!important;
    bottom: 10px;
    z-index: 9999;
    width: 100%;
  }
}

@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}