/* Pasvaldibam */
.sales-hero {
  padding-top: 80px;
  background: var(--black);
  min-height: 60vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.sales-hero::before {
  content: 'AŠP';
  position: absolute;
  right: -2%;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(12rem, 20vw, 22rem);
  color: rgba(208,16,16,0.07);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}
.sales-hero-inner {
  position: relative; z-index: 1;
  padding: 5rem 5%;
  max-width: 780px;
}
.sales-hero-inner .hero-eyebrow { margin-bottom: 1rem; }
.sales-hero-inner .hero-title { margin-bottom: 1.2rem; }
.intro-text {
  font-size: 1.15rem;
  color: var(--gray);
  line-height: 1.7;
  max-width: 600px;
  margin-bottom: 2.5rem;
}

.contact-form-wrap {
  max-width: 420px;
  width: 100%;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form__field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.contact-form__field span {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gray);
}

.contact-form__field input,
.contact-form__field textarea {
  width: 100%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-left: 3px solid var(--red);
  border-radius: 0;
  color: var(--white);
  padding: 0.85rem 1rem;
  font: inherit;
  font-size: 1rem;
  line-height: 1.5;
  transition: border-color 0.2s;
}

.contact-form__field textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form__field input:focus,
.contact-form__field textarea:focus {
  outline: none;
  border-color: var(--border);
  border-left-color: var(--red);
  box-shadow: inset 0 0 0 1px rgba(208, 16, 16, 0.25);
}

.contact-form__hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-form__submit.btn-primary {
  align-self: flex-start;
  margin-top: 0.5rem;
  border: none;
  border-radius: 0;
  cursor: pointer;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.9rem 2.2rem;
}

.contact-form__submit.btn-primary:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
}

.contact-form-alert {
  padding: 0.85rem 1rem;
  border-radius: 0;
  border-left: 3px solid;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.contact-form-alert--success {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-left-color: #28a050;
  color: #b8f0c8;
}

.contact-form-alert--error {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-left-color: var(--red);
  color: #ffb4b4;
}

