.contact-hero {
  position: relative;
  width: 100vw;
  left: 50%;
  margin-left: -50vw;
  background:
    radial-gradient(1200px 520px at 50% -180px, rgba(255,255,255,.06), transparent 60%),
    linear-gradient(180deg, rgba(4,6,14,.6), rgba(45,36,102,.55) 52%, #2d2472 96%);
  border-bottom: 1px solid rgba(255,255,255,.06);
  color: var(--text);
}

.contact-hero__inner {
  text-align: center;
  padding: 54px 20px 42px;
  max-width: 980px;
  margin: 0 auto;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.08);
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 700;
}

.title {
  font-size: clamp(28px, 4.8vw, 46px);
  margin: 14px 0 8px;
}

.subtitle {
  color: var(--muted);
  margin: 0 auto;
  max-width: 720px;
}

/* KPI strip */
.kpis {
  margin-top: 16px;
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.kpi {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.10);
  font-weight: 400;
}

/* Grid */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 20px;
  padding: 24px 20px 34px;
}
@media (max-width: 980px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

/* Info cards */
.info {
  display: grid;
  gap: 14px;
  align-content: start;
}

.card {
  background: rgba(255,255,255,.035);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px;
  padding: 14px;
  position: relative;
  overflow: hidden;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s;
}
.card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  background: linear-gradient(120deg, rgba(108,140,255,.35), rgba(139,92,246,.28));
  opacity: .18;
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  padding: 1px;
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(0,0,0,.28);
}
.card__icon-wrap {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, rgba(108,140,255,.25), rgba(139,92,246,.18));
  border: 1px solid rgba(255,255,255,.12);
  margin-bottom: 8px;
}
.card__title {
  font-weight: 800;
  margin: 4px 0 2px;
}
.card__text, .card__link {
  color: var(--muted);
}
.card__link:hover {
  color: #fff;
}
.chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.chip {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.10);
  padding: 6px 10px;
  border-radius: 999px;
  font-weight: 600;
}

/* Mini map */
.mini-map {
  position: relative;
  overflow: hidden;
  height: 160px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.08);
  background: #0d0f18;
}
.mini-map__grid {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 22px 22px, 22px 22px;
  animation: pan 16s linear infinite;
  opacity: .45;
}
@keyframes pan {
  from { transform: translateY(0) }
  to { transform: translateY(-22px) }
}
.mini-map__pin {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  font-size: 24px;
}
.mini-map__label {
  position: absolute;
  left: 10px;
  bottom: 10px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  padding: 4px 10px;
  font-weight: 700;
}

/* Form */
.form {
  background: rgba(255,255,255,.045);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 16px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(6px);
}

.form__row {
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 720px) {
  .form__row {
    grid-template-columns: 1fr;
  }
}

.form__error{ color:#ffb4b4; font-size:.95rem }

.field {
  position: relative;
}
.field input,
.field textarea {
  margin-top: 5px;
  width: 100%;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 12px;
  padding: 14px 12px;
  color: var(--text);
  outline: none;
  transition: all .2s ease;
}
.field textarea {
  resize: vertical;
}
.field label {
  position: absolute;
  left: 12px;
  top: 12px;
  color: var(--muted);
  pointer-events: none;
  transition: transform .18s ease, font-size .18s ease, top .18s ease, opacity .18s ease;
  background: rgba(15,17,21,.9);
  padding: 0 6px;
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 999px;
}
.field input:focus + label,
.field input:not(:placeholder-shown) + label,
.field textarea:focus + label,
.field textarea:not(:placeholder-shown) + label {
  top: -9px;
  font-size: .85rem;
  opacity: .9;
}
.field input:focus,
.field textarea:focus {
  border-color: rgba(108,140,255,.65);
  box-shadow: 0 0 0 3px rgba(108,140,255,.2);
}
.field .error {
  display: none;
  color: #ff9aa2;
  font-size: .9rem;
  margin-top: 6px;
}

.check {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  margin: 6px 0 4px;
  color: var(--muted);
}
.check input {
  transform: translateY(3px);
}

.actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(90deg, var(--brand), var(--brand-2));
  border: none;
  color: #fff;
  font-weight: 800;
  padding: 12px 18px;
  border-radius: 12px;
  cursor: pointer;
  box-shadow: 0 10px 22px rgba(108,140,255,.24);
  overflow: hidden;
  transition: transform .15s ease;
}
.btn:hover {
  transform: translateY(-1px);
}
.btn__loader {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.4);
  border-top-color: #fff;
  display: none;
  animation: spin .8s linear infinite;
}
@keyframes spin {
  to { transform: rotate(360deg) }
}
.btn.is-loading .btn__text { opacity: 0 }
.btn.is-loading .btn__loader { display: inline-block }
.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 120px;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.35), transparent);
  transform: translateX(-160%);
  transition: transform .6s ease;
}
.btn:hover::after {
  transform: translateX(160%);
}

/* Toast */
.toast {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  background: rgba(26,28,38,.9);
  color: #e8ecf1;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 14px;
  padding: 10px 12px;
  display: none;
  align-items: center;
  gap: 10px;
  box-shadow: 0 12px 28px rgba(0,0,0,.35);
}
.toast__close {
  background: none;
  border: none;
  color: #c9d4ea;
  font-size: 18px;
  cursor: pointer;
}
.toast.show {
  display: flex;
  animation: pop .18s ease-out;
}
@keyframes pop {
  from { transform: translateY(8px); opacity: 0 }
  to { transform: none; opacity: 1 }
}

/* Reveal scroll animation */
.reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .35s ease, transform .35s ease;
}
.reveal.is-in {
  opacity: 1;
  transform: none;
}

.check {
  display: grid;
  grid-template-columns: 18px 1fr;
  align-items: start;
  gap: 10px;
  margin-bottom: 6px;
}
.check input[type="checkbox"] {
  margin-top: 2px;
  accent-color: var(--brand, #6c8cff);
  cursor: pointer;
}
.check span { line-height: 1.4; user-select: text; }
.kvkk-link { text-decoration: underline; color: var(--text, #e8ecf1); }
.kvkk-link:hover { color: var(--brand, #6c8cff); }

.check__error {
  color: #ffb4b4;
  font-size: .95rem;
  margin: 4px 0 10px 28px; /* kutunun hizasına denk gelsin */
}