.basvuru-form {
  background: url('https://galata.artikaravan.com/wp-content/uploads/2025/10/WhatsApp-Image-2025-10-25-at-21.42.14.jpeg') 
              center center / cover no-repeat;
  padding: 50px;
  border-radius: 12px;
  color: #fff;
  max-width: 900px;
  margin: 50px auto;
  font-family: 'Poppins', sans-serif;
  box-shadow: 0 10px 40px rgba(0,0,0,0.3);
  background-attachment: fixed; /* sabit arka plan efekti */
  min-height: 600px;
}

/* === Başlık === */
.basvuru-form h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 40px;
  color: #fff;
}

/* === Satırlar ve kolonlar === */
.basvuru-form .row {
  display: flex;
  gap: 20px;
  margin-bottom: 25px;
  flex-wrap: wrap;
}
.basvuru-form .col {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.basvuru-form .col.full {
  flex: 100%;
}

/* === Etiket ve input alanları === */
.basvuru-form label {
  font-size: 13px;
  text-transform: uppercase;
  margin-bottom: 8px;
  color: #eee;
}
.basvuru-form input,
.basvuru-form textarea {
  background: rgba(255,255,255,0.95);
  border: none;
  border-radius: 6px;
  padding: 10px 15px;
  font-size: 15px;
  color: #333;
  outline: none;
}
.basvuru-form input:focus,
.basvuru-form textarea:focus {
  box-shadow: 0 0 0 2px #ff004e66;
}

/* === Gönder butonu === */
.submit-btn {
  background: linear-gradient(90deg, #ff004e, #5800ff);
  border: none;
  color: #fff;
  font-weight: 600;
  padding: 14px 40px;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.submit-btn:hover {
  transform: scale(1.03);
  box-shadow: 0 0 15px #ff004e66;
}

/* === Başarı mesajı === */
.basvuru-success {
  background: rgba(0,0,0,0.6);
  color: #fff;
  padding: 40px;
  border-radius: 10px;
  text-align: center;
  font-size: 18px;
}

/* === GENEL === */
.detayli-form {
  max-width: 700px;
  margin: 0 auto 100px;
  font-family: "Kumbh Sans", sans-serif;
  color: #000;
  text-align: center;
}

/* === BAŞLIK === */
.detayli-form h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 4px;
  color: #000;
  letter-spacing: 0.2px;
}
.detayli-form h2 em {
  font-style: italic;
  font-weight: 400;
}
.detayli-form .form-desc {
  color: #5a5a5a;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 50px;
}

/* === FORM GRID === */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 24px;
  margin-bottom: 20px;
}

/* === INPUTLAR === */
.form-grid input,
textarea {
  width: 100%;
  border: 1px solid #b9b9b9;
  border-radius: 50px;
  padding: 13px 22px;
  font-size: 15px;
  line-height: 1.5;
  outline: none;
  background-color: #fff;
  color: #000;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  box-sizing: border-box;
}

.form-grid input::placeholder,
textarea::placeholder {
  color: #777;
}

textarea {
  border-radius: 30px;
  padding: 15px 22px;
  height: 120px;
  resize: none;
  margin-top: 5px;
}

/* === FOCUS === */
.form-grid input:focus,
textarea:focus {
  border-color: #000;
}

/* === GÖNDER BUTONU === */
.btn-submit {
  display: inline-block;
  background: #000;
  color: #fff;
  border: 2px solid #000;
  border-radius: 4px;
  padding: 10px 28px;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.25s ease;
  font-weight: 500;
  margin-top: 10px;
  margin-left: 2px;
}
.btn-submit:hover {
  background: #fff;
  color: #000;
  border-color: #ba0809;
  box-shadow: 0 0 0 2px #ba0809;
}

/* === MESAJ === */
#detayli-success {
  margin-top: 25px;
  background: #f5f5f5;
  border-radius: 12px;
  padding: 20px;
  font-size: 16px;
  color: #333;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .form-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .detayli-form h2 {
    font-size: 30px;
  }
  .detayli-form .form-desc {
    font-size: 15px;
    margin-bottom: 35px;
  }
}
