.fstravel-search-section {
  padding: 48px 0 32px;
  background: linear-gradient(180deg, #f4f8fc 0%, #ffffff 100%);
}

.fstravel-search-section__header {
  text-align: center;
  margin-bottom: 24px;
}

.fstravel-search-section__title {
  margin: 0 0 8px;
  font-size: 2rem;
  line-height: 1.25;
  color: #005b94;
}

.fstravel-search-section__subtitle {
  margin: 0;
  color: #5b6770;
  font-size: 1rem;
}

.fstravel-search-form {
  background: #eef4fb;
  border: 1px solid #d7e3ef;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 12px 32px rgba(0, 91, 148, 0.08);
}

.fstravel-search-form__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.fstravel-search-form__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.fstravel-search-form__label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: #2f4d66;
}

.fstravel-search-form__field select,
.fstravel-search-form__field input {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid #c5d5e4;
  border-radius: 8px;
  background: #fff;
  color: #1f2d3d;
  font: inherit;
}

.fstravel-search-form__field select:focus,
.fstravel-search-form__field input:focus {
  outline: 2px solid rgba(0, 91, 148, 0.25);
  border-color: #005b94;
}

.fstravel-search-form__children-ages {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 16px;
}

.fstravel-search-form__actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 20px;
}

.fstravel-search-form__submit {
  min-width: 180px;
  min-height: 48px;
  padding: 12px 24px;
  border: 0;
  border-radius: 8px;
  background: #005b94;
  color: #fff;
  font: inherit;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s ease;
}

.fstravel-search-form__submit:hover,
.fstravel-search-form__submit:focus {
  background: #004a78;
}

@media (max-width: 991px) {
  .fstravel-search-form__grid,
  .fstravel-search-form__children-ages {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .fstravel-search-section {
    padding: 32px 0 24px;
  }

  .fstravel-search-section__title {
    font-size: 1.5rem;
  }

  .fstravel-search-form {
    padding: 16px;
  }

  .fstravel-search-form__grid,
  .fstravel-search-form__children-ages {
    grid-template-columns: 1fr;
  }

  .fstravel-search-form__actions {
    justify-content: stretch;
  }

  .fstravel-search-form__submit {
    width: 100%;
  }
}
