/* ── Softanova Contact Form (dark + brand) ── */
.page.contact { padding-top: 6em; }

.sa-cf {
  position: relative;
  padding: clamp(4rem, 8vw, 7rem) 1.5rem;
  background: #0a0a0a;
  color: #ededed;
  font-family: "Onest", sans-serif;
  overflow: hidden;
}

.sa-cf-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.sa-cf-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 15% 20%, rgba(245, 154, 87, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 85% 80%, rgba(245, 154, 87, 0.08) 0%, transparent 55%);
}

.sa-cf-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at 50% 50%, rgba(0, 0, 0, 0.9) 0%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 50%, rgba(0, 0, 0, 0.9) 0%, transparent 80%);
}

.sa-cf-inner {
  position: relative;
  z-index: 1;
  width: min(1280px, 100%);
  margin: 0 auto;
}

.sa-cf-meta {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 1.5rem;
  padding-bottom: 1.25rem;
  margin-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-family: "Onest", sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.sa-cf-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--primary);
  letter-spacing: 0.18em;
}

.sa-cf-tag-line {
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--primary);
}

.sa-cf-meta-phone,
.sa-cf-meta-year {
  color: rgba(255, 255, 255, 0.5);
}

.sa-cf-grid-content {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 3rem;
  align-items: start;
}

.sa-cf-left {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.sa-cf-title {
  font-family: "Brinnan", "Onest", sans-serif;
  font-size: clamp(2rem, 4.2vw, 4rem);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.02em;
  text-transform: none;
  color: #fff;
  margin: 0;
}

.sa-cf-desc {
  font-family: "Onest", sans-serif;
  font-size: clamp(0.95rem, 1.2vw, 1.15rem);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.65);
  max-width: 480px;
}

.sa-cf-info {
  display: flex;
  flex-direction: column;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.sa-cf-info-item {
  display: grid;
  grid-template-columns: 110px 1fr;
  align-items: center;
  gap: 1rem;
  padding: 0.95rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.sa-cf-info-item:first-child {
  border-top: 0;
}

.sa-cf-info-l {
  font-family: "Onest", sans-serif;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.sa-cf-info-v {
  font-family: "Brinnan", "Onest", sans-serif;
  font-size: 1.05rem;
  font-weight: 400;
  color: #fff;
  letter-spacing: -0.005em;
  text-decoration: none;
  transition: color 0.25s ease;
}

.sa-cf-info-v:hover {
  color: var(--primary);
}

.sa-cf-info-sub {
  font-family: "Onest", sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.72);
  letter-spacing: 0;
}

.sa-cf-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 2rem;
  background: rgba(15, 15, 15, 0.7);
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1.25rem;
}

.sa-cf-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.sa-cf-field {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.sa-cf-field label {
  font-family: "Onest", sans-serif;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.sa-cf-field input,
.sa-cf-field textarea {
  width: 100%;
  padding: 0.9rem 1.1rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.7rem;
  color: #fff;
  font-family: "Onest", sans-serif;
  font-size: 0.95rem;
  transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  resize: vertical;
}

.sa-cf-field input::placeholder,
.sa-cf-field textarea::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.sa-cf-field input:focus,
.sa-cf-field textarea:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(245, 154, 87, 0.12);
}

.sa-cf-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  width: 100%;
  padding: 1rem 1.25rem;
  background: var(--primary);
  color: #0a0a0a;
  border: none;
  border-radius: 999px;
  font-family: "Onest", sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  margin-top: 0.5rem;
  transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.3s ease;
}

.sa-cf-submit:hover {
  background: #ffb072;
  transform: translateY(-1px);
  box-shadow: 0 14px 40px -12px rgba(245, 154, 87, 0.6);
}

.sa-cf-submit svg {
  transition: transform 0.25s ease;
}

.sa-cf-submit:hover svg {
  transform: translateX(3px);
}

@media (max-width: 1000px) {
  .sa-cf { padding: 3.5rem 1rem; }
  .sa-cf-meta {
    grid-template-columns: 1fr;
    gap: 0.4rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
  }
  .sa-cf-meta-phone,
  .sa-cf-meta-year { font-size: 0.6rem; }
  .sa-cf-grid-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .sa-cf-left { gap: 1.25rem; }
  .sa-cf-info-item {
    grid-template-columns: 80px 1fr;
    gap: 0.75rem;
    padding: 0.75rem 0;
  }
  .sa-cf-info-l { font-size: 0.58rem; letter-spacing: 0.14em; }
  .sa-cf-info-v { font-size: 0.95rem; }
  .sa-cf-info-sub { font-size: 0.82rem; }
  .sa-cf-form { padding: 1.5rem; }
  .sa-cf-row { grid-template-columns: 1fr; }
}

/* Eski class fallback (backwards compat, gizli) */
.contact-form { display: none; }
