body {
  font-family: 'Inter', sans-serif;
  background: #fff;
  color: #1a1715;
}

.form-page {
  max-width: 1000px;
  margin: 120px auto 80px;
  padding: 0 20px;
}

.breadcrumb {
  color: #7a7a7a;
  font-size: 14px;
  margin-bottom: 10px;
}

.page-title {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 30px;
}

form {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.form-section {
  margin-bottom: 40px;
}

.form-section h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
  border-bottom: 1px solid #eee;
  padding-bottom: 8px;
}

.form-control,
.form-select {
  border-radius: 25px;
  border: 1px solid #ddd;
  font-size: 14px;
  padding: 10px 16px;
  transition: border-color 0.3s ease;
}

.form-control:focus,
.form-select:focus {
  border-color: #c50000;
  box-shadow: 0 0 0 0.2rem rgba(197, 0, 0, 0.15);
}

textarea.form-control {
  border-radius: 20px;
}

.form-check-label a {
  color: #c50000;
  text-decoration: none;
}

.submit-btn {
  width: 100%;
  background: #c50000;
  color: #fff;
  border: none;
  border-radius: 30px;
  padding: 14px 0;
  font-weight: 600;
  transition: 0.3s;
}

.submit-btn:hover {
  background: #a30000;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .page-title {
    font-size: 26px;
  }
  form {
    padding: 25px;
  }
}
/* === KVKK Modal === */
.kvkk-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  justify-content: center;
  align-items: center;
}

.kvkk-modal-content {
  background: #fff;
  border-radius: 12px;
  padding: 30px 40px;
  width: 90%;
  max-width: 600px;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 5px 20px rgba(0,0,0,0.2);
  animation: fadeIn 0.3s ease;
}

.kvkk-modal-content h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #c50000;
}

.kvkk-text p {
  font-size: 15px;
  line-height: 1.6;
  color: #333;
  margin-bottom: 12px;
}

.kvkk-btn {
  display: inline-block;
  background: #c50000;
  color: #fff;
  border: none;
  border-radius: 25px;
  padding: 10px 20px;
  font-size: 15px;
  cursor: pointer;
  margin-top: 10px;
  transition: 0.3s;
}

.kvkk-btn:hover {
  background: #a30000;
}

@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}
