/* FORM — white section */
#contacto {
  background: #ffffff;
  color: #0B0D0F;
}

#contacto h2,
#contacto .section-label,
#contacto .form-step-title {
  color: #0B0D0F;
}

#contacto .section-label::before {
  background: #0B0D0F;
}

#contacto .form-headline em {
  color: #8B744A;
}

#contacto textarea,
#contacto input[type=text],
#contacto input[type=email],
#contacto input[type=tel],
#contacto select {
  background: rgba(0, 0, 0, 0.04);
  border-color: rgba(0, 0, 0, 0.15);
  color: #0B0D0F;
}

#contacto textarea:focus,
#contacto input:focus,
#contacto select:focus {
  border-color: #8B744A;
}

#contacto textarea::placeholder,
#contacto input::placeholder {
  color: #9E9E9E;
}

#contacto select option {
  background: #ffffff;
  color: #0B0D0F;
}

#contacto .option-card {
  border-color: rgba(0, 0, 0, 0.12);
  color: #0B0D0F;
}

#contacto .option-card:hover,
#contacto .option-card.selected {
  border-color: #8B744A;
  background: rgba(139, 116, 74, 0.06);
}

#contacto .option-pill {
  border-color: rgba(0, 0, 0, 0.12);
  color: #0B0D0F;
}

#contacto .option-pill:hover,
#contacto .option-pill.selected {
  border-color: #8B744A;
  background: rgba(139, 116, 74, 0.06);
  color: #8B744A;
}

#contacto .form-progress {
  border-color: rgba(0, 0, 0, 0.1);
}

#contacto .form-step-dot {
  background: rgba(0, 0, 0, 0.08);
}

#contacto .btn-back {
  border-color: rgba(0, 0, 0, 0.15);
  color: #6E6E6E;
}

#contacto .btn-back:hover {
  border-color: #0B0D0F;
  color: #0B0D0F;
}

#contacto .success-icon {
  border-color: #8B744A;
  color: #8B744A;
}

.form-wrapper {
  max-width: 860px;
  margin: 0 auto;
}

.form-header {
  text-align: center;
  margin-bottom: 64px;
}

.form-headline {
  font-family: 'Sora', sans-serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 400;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.form-headline em {
  font-style: normal;
  color: var(--sand);
}

.form-sub {
  color: var(--stone);
  font-size: 15px;
}

.form-progress {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 56px;
  border: 1px solid var(--sand-border);
  overflow: hidden;
}

.form-step-dot {
  flex: 1;
  height: 4px;
  background: rgba(200, 184, 149, 0.15);
  transition: background 0.4s;
  position: relative;
}

.form-step-dot.active {
  background: var(--sand);
}

.form-step-dot.done {
  background: var(--olive);
}

.form-step-label {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--mist);
  margin-bottom: 8px;
}

.form-step-title {
  font-family: 'Sora', sans-serif;
  font-size: 26px;
  font-weight: 400;
  letter-spacing: -0.01em;
  margin-bottom: 36px;
}

.options-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.options-grid-2 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.options-grid-obj {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.option-card {
  border: 1px solid var(--sand-border);
  background: transparent;
  padding: 20px 18px;
  cursor: pointer;
  transition: all 0.2s;
  text-align: left;
  color: inherit;
  font-family: 'Inter', sans-serif;
}

.option-card:hover {
  border-color: var(--sand);
  background: var(--sand-dim);
}

.option-card.selected {
  border-color: var(--sand);
  background: var(--sand-dim);
}

.option-card-icon {
  width: 24px;
  height: 24px;
  margin-bottom: 10px;
  display: block;
}

.option-card-title {
  font-family: 'Sora', sans-serif;
  font-size: 13px;
  font-weight: 400;
  margin-bottom: 4px;
}

.option-card-desc {
  font-size: 11px;
  color: var(--stone);
  line-height: 1.5;
}

.option-pill {
  border: 1px solid var(--sand-border);
  background: transparent;
  padding: 12px 16px;
  cursor: pointer;
  transition: all 0.2s;
  color: inherit;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  text-align: center;
}

.option-pill:hover {
  border-color: var(--sand);
  background: var(--sand-dim);
}

.option-pill.selected {
  border-color: var(--sand);
  background: var(--sand-dim);
  color: var(--sand);
}

textarea,
input[type=text],
input[type=email],
input[type=tel],
select {
  width: 100%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--sand-border);
  color: #e8e3da;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  padding: 14px 18px;
  outline: none;
  transition: border-color 0.2s;
  resize: vertical;
  appearance: none;
}

textarea:focus,
input:focus,
select:focus {
  border-color: var(--sand);
}

textarea::placeholder,
input::placeholder {
  color: var(--stone);
}

select option {
  background: #1a1c1f;
  color: #e8e3da;
}

.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-label {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--stone);
}

/* SLIDER */
.slider-wrap {
  margin: 8px 0 24px;
}

.budget-slider {
  width: 100%;
  -webkit-appearance: none;
  height: 2px;
  background: var(--sand-border);
  outline: none;
  border: none;
  padding: 0;
}

.budget-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  background: var(--sand);
  border-radius: 0;
  cursor: pointer;
  border: 2px solid var(--carbon);
}

.budget-display {
  font-family: 'Sora', sans-serif;
  font-size: 36px;
  font-weight: 400;
  color: var(--sand);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.budget-hint {
  font-size: 12px;
  color: var(--stone);
}

.timeline-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

/* FORM BUTTONS */
.form-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 48px;
  gap: 20px;
}

.form-nav-right {
  display: flex;
  align-items: center;
  gap: 24px;
}

@media (max-width: 640px) {
  .form-nav {
    flex-direction: column-reverse;
    align-items: stretch;
    gap: 16px;
  }
  
  .form-nav-right {
    justify-content: space-between;
    width: 100%;
    gap: 16px;
  }
  
  .btn-next, .btn-back {
    flex: 1;
    text-align: center;
    padding-left: 0;
    padding-right: 0;
  }
  
  .step-counter {
    white-space: nowrap;
  }
}

.btn-back {
  background: transparent;
  border: 1px solid var(--sand-border);
  color: var(--stone);
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 28px;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-back:hover {
  border-color: var(--stone);
  color: #e8e3da;
}

.btn-next {
  background: var(--sand);
  color: var(--carbon);
  border: none;
  font-family: 'Sora', sans-serif;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 40px;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-next:hover {
  background: #d6c8a8;
}

.btn-next:disabled {
  background: var(--stone);
  cursor: not-allowed;
}

.step-counter {
  font-size: 12px;
  color: var(--stone);
  letter-spacing: 0.1em;
}

/* SUCCESS */
.success-state {
  text-align: center;
  padding: 80px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.success-icon {
  width: 72px;
  height: 72px;
  border: 2px solid var(--sand);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sand);
  font-size: 28px;
}

.success-title {
  font-family: 'Sora', sans-serif;
  font-size: 36px;
  font-weight: 400;
  letter-spacing: -0.02em;
}

.success-sub {
  color: var(--stone);
  font-size: 15px;
  max-width: 400px;
}
