/* ========== PUBLIC TRACKING — SEARCH PAGE (matches site public-pages) ========== */

.trk-search-section {
  padding-top: 3.5rem;
}

.trk-search-layout {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 2rem;
  align-items: start;
}

.trk-search-panel__header {
  margin-bottom: 1.25rem;
}

.trk-search-panel__header h2 {
  font-size: clamp(1.25rem, 3vw, 1.5rem);
}

.trk-form__label {
  display: block;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--accent-dark, #0b1f3f);
  margin-bottom: 0.65rem;
}

.trk-form__row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: stretch;
}

.trk-form__input-wrap {
  position: relative;
  flex: 1 1 220px;
  min-width: 0;
}

.trk-form__icon {
  position: absolute;
  top: 50%;
  inset-inline-end: 0.9rem;
  transform: translateY(-50%);
  color: var(--accent-color, #1f4c8c);
  opacity: 0.45;
  pointer-events: none;
}

.trk-form__input {
  padding-inline: 1rem 2.5rem;
  min-height: 3rem;
  font-size: 1rem;
  letter-spacing: 0.02em;
}

html[dir="ltr"] .trk-form__input {
  text-align: left;
}

html[dir="rtl"] .trk-form__input {
  text-align: right;
}

.trk-form__submit {
  flex: 0 0 auto;
  min-width: 8rem;
  min-height: 3rem;
  border: none;
  cursor: pointer;
}

.trk-form__submit:disabled {
  opacity: 0.85;
  cursor: wait;
}

.trk-form__error {
  color: #b42318;
  font-size: 0.9rem;
  margin: 0.75rem 0 0;
}

.trk-hints {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid #edf1f7;
}

.trk-hint {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.85rem;
  color: #3d4f6f;
  background: rgba(31, 76, 140, 0.07);
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
}

.trk-hint i {
  color: #1f7a4c;
  font-size: 0.8rem;
}

.trk-guide .section-header {
  margin-bottom: 1.25rem;
}

.trk-guide .section-header h2 {
  font-size: clamp(1.15rem, 3vw, 1.4rem);
}

.trk-steps {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.trk-step {
  text-align: start;
}

.trk-step .site-icon {
  margin-inline: 0;
  width: 56px;
  height: 56px;
  font-size: 1.25rem;
  margin-bottom: 0.85rem;
}

.trk-step h3 {
  font-size: 1rem;
  text-align: start;
}

.trk-step p {
  text-align: start;
}

@media (max-width: 992px) {
  .trk-search-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .trk-form__row {
    flex-direction: column;
  }

  .trk-form__submit {
    width: 100%;
    justify-content: center;
  }
}
